C# Class SuperNeuro.Regularizers.L1

L1 regularization technique also called Lasso Regression

Lasso Regression (Least Absolute Shrinkage and Selection Operator) adds “absolute value of magnitude” of coefficient as penalty term to the loss function.

Inheritance: SuperNeuro.Regularizers.L1L2
Afficher le fichier Open project: tech-quantum/SuperchargedArray

Méthodes publiques

Méthode Description
L1 ( float l = 0.01f )

Initializes a new instance of the L1 class.

Method Details

L1() public méthode

Initializes a new instance of the L1 class.
public L1 ( float l = 0.01f )
l float The value for the regularizer.