Open roquelopez opened 1 year ago
The issues seems to be with Countvectorizer and TfidfVectorizer when used with StandardScalar and RobustScalar. (below is the screenshot of the errors)
with_centering=False
instead. See docstring for motivation and alternatives" with the below code in pipeline_builder.py
elif isinstance(primitive_object, RobustScaler): primitive_object.set_params(with_centering=False)
There are some default hyperparameters that cause errors every time they are used. For instance, the 'average' hyperparameter of Sklearn Imputer, will always fail for categorical features (we can't calculate the average for this type of feature). These values should be changed, like here.