I want to calculate my model accuracy for rainfall forecasting. I already calculated MAE, RMSE, MAPE for rainfall forecasting. But want to know the total model accuracy, for instance, my model is predicting 96% accurate results. How can I do this in python? Here is my code how I calculated MAE, RMSE, MAPE in python with sklearn
from sklearn.metrics import mean_squared_error, explained_variance_score
mae = mean_squared_error(true, predicted)
print('Mean Squared Error : {}'.format(mae))
rmse = np.sqrt(mean_squared_error(true, predicted))
print('Root Mean Squared Error : {}'.format(rmse))
evs = explained_variance_score(true, predicted)
print('Explained Variance Score: {}'.format(evs))