Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omchaithanyav/8d3b3a9b4494d7f04fbc968fcc32b66e to your computer and use it in GitHub Desktop.
Save omchaithanyav/8d3b3a9b4494d7f04fbc968fcc32b66e to your computer and use it in GitHub Desktop.
from flaml import AutoML
automl = AutoML()
automl_settings = {
"time_budget": 10,
"metric": 'accuracy',
"task": 'classification',
}
automl.fit(X_train=X_train, y_train=y_train, **automl_settings)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment