remove __estimator

This commit is contained in:
Tanushree Tunstall 2022-05-22 23:39:35 +01:00
parent 1a1154b4f4
commit 9839b6f8d1
15 changed files with 79 additions and 79 deletions

View file

@ -7,11 +7,11 @@ Created on Wed May 18 06:03:24 2022
"""
parameters = [
{
'clf__estimator': [BernoulliNB()]
, 'clf__estimator__alpha': [1, 0]
, 'clf__estimator__binarize':[None, 0]
, 'clf__estimator__fit_prior': [True]
, 'clf__estimator__class_prior': [None]
'clf': [BernoulliNB()]
, 'clf__alpha': [1, 0]
, 'clf__binarize':[None, 0]
, 'clf__fit_prior': [True]
, 'clf__class_prior': [None]
}
]