In FeatureSelector.py, RMSE is implemented along the lines of mean_squared_error(y_true, y_pred, squared=False). However, the squared argument has deprecated in scikit-learn 1.6.0. Potentially, sklearn's root_mean_squared_error can be used for the same purpose.