Created
June 24, 2021 08:56
-
-
Save ogyalcin/665db3262756d28c0ef5b4e09f0a28cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The RMSE of the RuleFit model | |
rulefit_preds = rulefit.predict(X.values) | |
rulefit_rmse = np.sqrt(((rulefit_preds - y) ** 2).mean()) | |
print(rulefit_rmse) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment