Regularization

Weight Decay

Weight Decay, or $L_{2}$ Regularization, is a regularization technique applied to the weights of a neural network. We minimize a loss function compromising both the primary loss function and a penalty on the $L_{2}$ Norm of the weights:

$$L_{new}\left(w\right) = L_{original}\left(w\right) + \lambda{w^{T}w}$$

where $\lambda$ is a value determining the strength of the penalty (encouraging smaller weights).

Weight decay can be incorporated directly into the weight update rule, rather than just implicitly by defining it through to objective function. Often weight decay refers to the implementation where we specify it directly in the weight update rule (whereas L2 regularization is usually the implementation which is specified in the objective function).

Image Source: Deep Learning, Goodfellow et al

Papers


Paper Code Results Date Stars

Tasks


Task Papers Share
Retrieval 95 11.02%
Language Modelling 72 8.35%
Question Answering 53 6.15%
Large Language Model 48 5.57%
Text Generation 21 2.44%
Sentence 20 2.32%
In-Context Learning 19 2.20%
Information Retrieval 18 2.09%
Code Generation 17 1.97%

Components


Component Type
🤖 No Components Found You can add them if they exist; e.g. Mask R-CNN uses RoIAlign

Categories