import sklearn
from sklearn import set_config
from sklearn.pipeline import Pipeline
from sklearn.impute import SimpleImputer
from sklearn.preprocessing import StandardScaler
from flaml import AutoML
from flaml.model import LogisticRegression
lr=LogisticRegression ()
lr.fit(X_train ,y_train)