-
-
Save dthboyd/0cefefd0642877d7ef754ae4cf8d09e9 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
model = XGBClassifier(silent=False, | |
scale_pos_weight=1, | |
learning_rate=0.01, | |
colsample_bytree = 0.4, | |
subsample = 0.8, | |
objective='binary:logistic', | |
n_estimators=1000, | |
reg_alpha = 0.3, | |
max_depth=4, | |
gamma=10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment