Rating Metrics - API Reference¶
Auto-generated documentation for rating metric classes.
warprec.evaluation.metrics.rating.mae.MAE
¶
Bases: RatingMetric
Mean Absolute Error (MAE) metric.
This metric computes the average absolute difference between the predictions and targets.
Source code in warprec/evaluation/metrics/rating/mae.py
warprec.evaluation.metrics.rating.mse.MSE
¶
Bases: RatingMetric
Mean Squared Error (MSE) metric.
This metric computes the average squared difference between the predictions and targets.
Source code in warprec/evaluation/metrics/rating/mse.py
warprec.evaluation.metrics.rating.rmse.RMSE
¶
Bases: MSE
Root Mean Squared Error (RMSE) metric.
This metric computes the square root of the average squared difference between the predictions and targets.