Fedot.fit runs tuning even if with_tuing=False in composer_params
Created by: J3FALL
In Fedot constructor there is a parameter - composer_params and it is a dictionary with some external params, like learning_time, cv_folds, etc. However, if with_tuning is set explicitly, it is still running tuning after composing.
Example of code how it can be reproduced:
def forecast_by_fedot(forecast_length, train_input, predict_input):
task_parameters = TsForecastingParams(forecast_length=forecast_length)
model = Fedot(problem='ts_forecasting', task_params=task_parameters,
composer_params={'with_tuning': False})
pipeline = model.fit(features=train_input)
pipeline.show()
forecast = model.predict(features=predict_input)
return forecast
P.S. I've running the latest version from master branch