Write the Huber loss and explain when to use it.
medium- L_δ -ŷ| ≤ δ, else .
- Quadratic for small errors (smooth, MSE-like gradients), linear for large errors (robust to outliers). δ ~ 1-2*σ of the noise.
- Common in bounding-box regression (Smooth L1 with δ=1 in R-CNN family) and robust regression.
#lossesPermalink & quiz →