Rating¶
Rating metrics are specifically designed for recommender systems that predict explicit user ratings (e.g., 1-5 stars). These metrics quantify the accuracy of these numerical predictions by comparing them to the actual user ratings.
API Reference
For class signatures and source code, see the Rating Metrics API Reference.
MAE¶
Mean Absolute Error (MAE). The average absolute difference between predicted and actual ratings.
For further details, please refer to this link.
MSE¶
Mean Squared Error (MSE). The average of the squared differences between predicted and actual ratings.
For further details, please refer to this link.
RMSE¶
Root Mean Squared Error (RMSE). The square root of the MSE, providing an error measure in the same units as the ratings.
For further details, please refer to this link.