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
Datei anzeigen Open project: tech-quantum/SuperchargedArray

Public Methods

Method Description
L1 ( float l = 0.01f )

Initializes a new instance of the L1 class.

Method Details

L1() public method

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