alsabsolute
alsabsolute is a variant of the Alternating Least Squares (ALS) algorithm used in matrix factorization for recommender systems. It replaces the traditional L2 loss with an L1 (absolute-value) loss on the reconstruction error, aiming to improve robustness to outliers and heavy-tailed noise in observed ratings.
Definition and objective: Given a partially observed user-item rating matrix R, with factorization R ≈ U V^T,
Advantages and challenges: The L1 loss reduces sensitivity to outliers and can yield sparser residuals, which
History and context: The approach is discussed in the literature on robust matrix factorization and recommender
See also: Alternating Least Squares, L1 loss, robust regression, recommender systems, IRLS, matrix factorization.