I am working on a regression problem that holds almost 5000 datapoints (the number of datapoints have been mentioned here to understand the range of MSE , RMSE and MAE values).
My model converges and gives me the following results:
MSE = 2.6980
RMSE = 0.995
Scatter Index = 1.7
MAE = 1.310
I understand that the MSE and MAE values are based on the dataset, its distribution, and variance that further dictates the model outcome. I also understand that there are no universal MSE or MAE values as they are highly dependent on the data and the model. However, in every study, people report MSE/RMSE in conjunction with Model Accuracy (in percentage).
Is there a way/formula to convert MSE into percentage, that could directly report the model accuracy in terms of percentage?
Thank you