Currently, metrics_regression.rs provides Mean Absolute Percentage Error (MAPE), but lacks its symmetric counterpart, sMAPE.
sMAPE is a useful regression metric, particularly in time-series forecasting, because it addresses the asymmetry of standard MAPE (which penalizes over-forecasting more heavily than under-forecasting) and handles values near zero more gracefully by summing the absolute values of both the actual and predicted targets in the denominator.
It would be beneficial to add sMAPE to the Regression Metrics.
Currently, metrics_regression.rs provides Mean Absolute Percentage Error (MAPE), but lacks its symmetric counterpart, sMAPE.
sMAPE is a useful regression metric, particularly in time-series forecasting, because it addresses the asymmetry of standard MAPE (which penalizes over-forecasting more heavily than under-forecasting) and handles values near zero more gracefully by summing the absolute values of both the actual and predicted targets in the denominator.
It would be beneficial to add sMAPE to the Regression Metrics.