From e03cb5c00bc40f223f3d748a74f30ffc8b2b42f3 Mon Sep 17 00:00:00 2001 From: nicl-nno Date: Thu, 10 Aug 2023 21:23:52 +0300 Subject: [PATCH] Minor ts test fix 3 --- docs/source/advanced/cli_call.rst | 1 - fedot/api/fedot_cli.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/advanced/cli_call.rst b/docs/source/advanced/cli_call.rst index 55afe2105b..281f91e8f8 100644 --- a/docs/source/advanced/cli_call.rst +++ b/docs/source/advanced/cli_call.rst @@ -56,7 +56,6 @@ The result of execution is presented below: Composer parameter: model names to use --tuning TUNING Composer parameter: 1 - with tuning, 0 - without tuning --cv_folds CV_FOLDS Composer parameter: Number of folds for cross-validation - --val_bl VAL_BL Composer parameter: Number of validation blocks for time series forecasting --hist_path HIST_PATH Composer parameter: Name of the folder for composing history --for_len FOR_LEN Time Series Forecasting parameter: forecast length diff --git a/fedot/api/fedot_cli.py b/fedot/api/fedot_cli.py index b5e026971c..00b9c32ab8 100644 --- a/fedot/api/fedot_cli.py +++ b/fedot/api/fedot_cli.py @@ -81,7 +81,7 @@ def run_fedot(parameters, main_params, fit_params, save_predictions=True): # parameters to init Fedot class main_params_names = ['problem', 'timeout', 'seed', 'depth', 'arity', 'popsize', 'gen_num', - 'opers', 'tuning', 'cv_folds', 'val_bl', 'hist_path', 'preset'] + 'opers', 'tuning', 'cv_folds', 'hist_path', 'preset'] # parameters to fit model fit_params_names = ['train', 'target']