Caesar AI Atlas

L2-регуляризация

Caesar AI Atlas Definition

L2-регуляризация добавляет штраф, пропорциональный квадрату величины весов модели. Она ограничивает чрезмерно большие веса, помогая снизить переобучение и улучшить обобщение, при этом обычно сохраняя все признаки в модели.

Other Definitions

L2-регуляризация Source

A type of regularization that penalizes weights in proportion to the sum of the squares of the weights. L~2~ regularization helps drive outlier weights (those with high positive or low negative values) closer to 0 but not quite to 0. Features with values very close to 0 remain in the model but don't influence the model's prediction very much. L~2~ regularization always improves generalization in linear models. Contrast with L~1~ regularization. See Overfitting: L2 regularization in Machine Learning Crash Course for more information.

Concept Comparisons

Related Terms