Mean Absolute Error (L1) Loss.
MAE(pred, target) = |pred - target|
MAE is less sensitive to outliers compared to MSE because it doesn't square the error term. This makes it more robust for data with outliers.