Skip to content

Commit

Permalink
Minor ts test fix 3
Browse files Browse the repository at this point in the history
  • Loading branch information
nicl-nno committed Aug 10, 2023
1 parent faddf17 commit e03cb5c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion docs/source/advanced/cli_call.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fedot/api/fedot_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down

0 comments on commit e03cb5c

Please sign in to comment.