machine-learning

Definition

L1 Regularisation

L1 Regularisation, also known as Lasso (Least Absolute Shrinkage and Selection Operator), is a regularisation technique that adds a penalty equal to the absolute value of the magnitude of coefficients to the loss function. This encourages the model to keep the coefficients of less important features exactly zero, effectively performing feature selection.

where:

  • is the regularisation parameter controlling the strength of penalty.
  • are the coefficients of the model.

Explanation

The term penalises large coefficients. The higher is, the more coefficients are pushed towards zero.

Feature Selection

Since this method allows coefficients to be zero, a simpler model can be found. Not all parameters were used smaller model.