I have a question regarding RMSE and RMSLE:
to create my model, I first scaled all my feature and target data between 0 and 1 and then converted their distribution to normal distribution using gauss rank scaler.
after I fitted a XGBoost model and made prediction on my test sets I used RMSE and RMSLE to evaluate my model.
my question is this:
do I have to convert my data (both predicted and original target values) back to its original form and then calculate RMSE and RMSLE?
or the data scaling and converting mentioned above do not affect the RMSE and RMSLE of the model?