From bbaf1aa7ecacb3f9c80f81d431114dd4048abacd Mon Sep 17 00:00:00 2001 From: Andrey Stebenkov Date: Fri, 26 Jul 2024 18:22:05 +0300 Subject: [PATCH] fix after rebase --- fedot/core/operations/evaluation/boostings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedot/core/operations/evaluation/boostings.py b/fedot/core/operations/evaluation/boostings.py index bdffa1fd6f..1e359d787d 100644 --- a/fedot/core/operations/evaluation/boostings.py +++ b/fedot/core/operations/evaluation/boostings.py @@ -16,7 +16,7 @@ class BoostingStrategy(EvaluationStrategy): 'catboost': FedotCatBoostClassificationImplementation, 'catboostreg': FedotCatBoostRegressionImplementation, 'xgboost': FedotXGBoostClassificationImplementation, - 'xgboostreg': FedotXGBoostRegressionImplementation + 'xgboostreg': FedotXGBoostRegressionImplementation, 'lgbm': FedotLightGBMClassificationImplementation, 'lgbmreg': FedotLightGBMRegressionImplementation }