Open
Description
Hi everybody,
I printed the ensemble models and got the following output:
automl = AutoSklearn2Classifier()
automl.fit(X_train_hold, y_train_hold, feat_type=feat_type)
print(automl.show_models())
>> {5: {
'model_id': 5,
'rank': 1,
'cost': 0.4498021750477469,
'ensemble_weight': 0.18,
'data_preprocessor': <autosklearn.pipeline.components.data_preprocessing.DataPreprocessorChoice object at 0x7f529fd0fe10>,
'balancing': Balancing(random_state=0, strategy='weighting'),
'feature_preprocessor': <autosklearn.pipeline.components.feature_preprocessing.FeaturePreprocessorChoice object at 0x7f529fd55$
10>,
'classifier': <autosklearn.pipeline.components.classification.ClassifierChoice object at 0x7f529fd55950>,
'sklearn_classifier': None}}
Now, I am wondering what classifier AutoSklearn2 chose. Can anybody help me here?
Best regards,
Felix