Created
July 10, 2019 21:36
-
-
Save risenW/55201fa6ed48c1b299de237ae07dbe23 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
from sklearn.ensemble import ExtraTreesRegressor | |
et_model = ExtraTreesRegressor(n_estimators=100, max_depth=5) | |
print("MAE Sccore: ", cross_validate(et_model, 10, X_train, y_train)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment