Redundant logging at launch in jupyter notebook
Created by: Dreamlone
A lot of messages appear during launch
Example:
from fedot.api.main import Fedot
model = Fedot(problem='regression', timeout=1)
# fit model with AutoML
train_columns = df.columns[:-1]
obtained_pipeline = model.fit(features=df[train_columns], target=df['target'])