From 4976e9d8afdd4423d71905ea18a944b5f087aa25 Mon Sep 17 00:00:00 2001 From: Tanushree Tunstall Date: Sat, 3 Sep 2022 14:41:22 +0100 Subject: [PATCH] saving --- scripts/ml/ml_functions/MultClfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ml/ml_functions/MultClfs.py b/scripts/ml/ml_functions/MultClfs.py index 5366a6c..aa1522a 100755 --- a/scripts/ml/ml_functions/MultClfs.py +++ b/scripts/ml/ml_functions/MultClfs.py @@ -263,7 +263,7 @@ def MultModelsCl(input_df #====================================================== models = [('AdaBoost Classifier' , AdaBoostClassifier(**rs) ) , ('Bagging Classifier' , BaggingClassifier(**rs, **njobs, bootstrap = True, oob_score = True, verbose = 3, n_estimators = 100) ) - #, ('Bernoulli NB' , BernoulliNB() ) # pks Naive Bayes, CAUTION + ##, ('Bernoulli NB' , BernoulliNB() ) # pks Naive Bayes, CAUTION , ('Complement NB' , ComplementNB() ) , ('Decision Tree' , DecisionTreeClassifier(**rs) ) , ('Extra Tree' , ExtraTreeClassifier(**rs) )