Created
February 12, 2020 00:17
-
-
Save shashankprasanna/0d36153a268c323d15fa2c589a9929cf 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
hyperparams={ | |
'n_estimators' : 15, | |
'max_depth' : 5, | |
'n_bins' : 8, | |
'split_criterion' : 0, # GINI:0, ENTROPY:1 | |
'split_algo' : 0, # HIST:0 GLOBAL_QUANTILE:1 | |
'bootstrap' : 0, # true: sample with replacement, false: sample without replacement | |
'bootstrap_features' : 0, # true: sample with replacement, false: sample without replacement | |
'max_leaves' : -1, # unlimited leaves | |
'max_features' : 0.2, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment