sqrtMSE
sqrtMSE stands for the square root of the mean squared error and is commonly used in regression analysis as a measure of predictive accuracy. It is defined as sqrtMSE = sqrt( (1/n) ∑_{i=1}^n (y_i − ŷ_i)^2 ), where y_i are observed values and ŷ_i are predicted values. The result shares the same units as the target variable, which aids interpretation in practical terms.
Because sqrtMSE equals the root mean squared error (RMSE), it inherits its properties: it is non-negative, with
sqrtMSE is widely used to compare regression models, tune hyperparameters, and report model performance on held-out
Compared with other error metrics, sqrtMSE provides direct interpretability in the response variable’s units. However, it