ZackLarsen / mlflow-recipes

0 stars 0 forks source link

Use Flaml for AutoML #10

Open ZackLarsen opened 12 months ago

ZackLarsen commented 12 months ago

https://github.com/microsoft/FLAML

https://microsoft.github.io/FLAML/docs/Examples/AutoML-Classification

from flaml import AutoML
automl = AutoML()
automl.fit(X_train, y_train, task="classification")