C# Класс SuperNeuro.Regularizers.L2

L2 regularization technique also called Ridge Regression.

Ridge regression adds “squared magnitude” of coefficient as penalty term to the loss function. Here the highlighted part represents L2 regularization element.

Наследование: SuperNeuro.Regularizers.L1L2
Показать файл Открыть проект

Открытые методы

Метод Описание
L2 ( float l = 0.01f )

Initializes a new instance of the L2 class.

Описание методов

L2() публичный Метод

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