Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork48.5k
Description
Feature Description
I would like to add SMAPE and MAPE loss functions to the loss_functions.py file in Machine Learning folder.
SMAPE
SMAPE (Symmetric Mean Absolute Percentage Error) measures forecast accuracy by comparing the absolute difference between predicted (𝐹t) and actual (At) values to their average.
It is given by:
MAPE
MAPE (Mean Absolute Percentage Error) measures forecast accuracy by expressing the average absolute difference between predicted (𝐹t) and actual (At) values as a percentage of the actual values.
It is given by:
Benefits
Machine learning models which predict continuous values like price of a house heavily use these loss functions to learn weights and biases.