Spaces:
Sleeping
Sleeping
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Created on 2024-07-19 20:26:41 Friday | |
| @author: Nikhil Kapila | |
| """ | |
| import sklearn | |
| import sklearn.metrics | |
| def mape(y_true, y_pred): | |
| mape = sklearn.metrics.mean_absolute_percentage_error(y_true=y_true, y_pred=y_pred)*100 | |
| return mape |