added random state to split in function
This commit is contained in:
parent
e5f882841e
commit
53c229f480
3 changed files with 24 additions and 21 deletions
|
@ -215,7 +215,7 @@ def MultModelsCl(input_df, target, skf_cv
|
|||
, ('Naive Bayes' , BernoulliNB() )
|
||||
, ('Passive Aggresive' , PassiveAggressiveClassifier(**rs, **njobs) )
|
||||
, ('QDA' , QuadraticDiscriminantAnalysis() )
|
||||
, ('Random Forest' , RandomForestClassifier(**rs, n_estimators = 1000 ) )
|
||||
, ('Random Forest' , RandomForestClassifier(**rs, n_estimators = 1000, **njobs ) )
|
||||
, ('Random Forest2' , RandomForestClassifier(min_samples_leaf = 5
|
||||
, n_estimators = 1000
|
||||
, bootstrap = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue