Last active
July 17, 2019 09:10
-
-
Save risenW/a8162bc6874bd40d95fb4c6e9092bd02 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 catboost import CatBoostRegressor | |
cat_model = CatBoostRegressor(iterations=200,learning_rate=0.1,depth=4) | |
print("MAE Sccore: ", cross_validate(cat_model, 10, X_train, y_train)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment