Caesar AI Atlas

L1 Loss (L1-потеря)

Caesar AI Atlas Definition

L1-потеря — функция потерь, основанная на абсолютной разнице между предсказанными и фактическими значениями. Она менее чувствительна к крупным выбросам, чем квадратичная ошибка, и широко используется в регрессии и устойчивой оптимизации.

Other Definitions

L1 Loss (L1-потеря) Source

A loss function that calculates the absolute value of the difference between actual label values and the values that a model predicts. For example, here's the calculation of L~1~ loss for a batch of five examples: Model's predicted value --- 6 4 11 6 8 L~1~ loss is less sensitive to outliers than L~2~ loss. The Mean Absolute Error is the average L~1~ loss per example. where: - $n$ is the number of examples. - $y$ is the actual value of the label. - $\\\\y\$ is the value that the model predicts for $y$. See Linear regression: Loss in Machine Learning Crash Course for more information.

Related Terms