I conducted a Ridge regression with k-fold validation. All the predictors were scaled prior to the regression procedure.
To report on the accuracy of my model's prediction, I calculated the MSE in the testing sets. That is, for each of the k testing sets, I calculated the following:
mean( (y actual - y predicted) ^ 2 )
However, my problem is that because this measure is not standardized and because it depends on the y variable scale, I cannot interpret it as either low or high.
Therefore, my question is: Is there a legitimate way to standardize the MSE so it could be compared to other studies?
Thank you very much, Lior