Let's say I have some data, and a model X that models the data. Let's say that model X has a RMSE value of 1500 and a MAE value of 200.
I build a new model Y, which is better than model X. Model Y has better error metrics: it has a RMSE of 1000, and a MAE of 150.
It is clear to me that model Y is a better fit than model X. But the question is: how much better?
I can calculate the percentage difference in RMSE like so: $ ({RMSE}_x - {RMSE}_y) /{RMSE}_y $. Can I say that model Y is 33% better than model X? Does this mean that my predictions are now 33% more accurate? If model Y is 33% better than model X, and we currently use model X to make decisions that results in \$100 profit, is it right to say that model Y will make \$133?
I suspect the answer is no to the above, given I could do the same to the MAE and get a different result. I understand that these questions are subjective, but if I have to quantify the improvement in model Y over model X, how would I do it?