Skip to content

Commit

Permalink
Merge d72fb0b into 4b7e0e7
Browse files Browse the repository at this point in the history
  • Loading branch information
elnurmmmdv committed Feb 10, 2021
2 parents 4b7e0e7 + d72fb0b commit f9331a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auto_ml/utils_models.py
Expand Up @@ -173,8 +173,8 @@ def get_model_from_name(model_name, training_params=None, is_hp_search=False):
model_map['LGBMClassifier'] = LGBMClassifier()

if catboost_installed:
model_map['CatBoostRegressor'] = CatBoostRegressor(calc_feature_importance=True)
model_map['CatBoostClassifier'] = CatBoostClassifier(calc_feature_importance=True)
model_map['CatBoostRegressor'] = CatBoostRegressor()
model_map['CatBoostClassifier'] = CatBoostClassifier()

if model_name[:12] == 'DeepLearning':
if keras_imported == False:
Expand Down

0 comments on commit f9331a3

Please sign in to comment.