Skip to content

Instantly share code, notes, and snippets.

@pycaret
Last active August 1, 2020 13:51
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 pycaret/ef5ca3ef772749dd4466a0bc8b273264 to your computer and use it in GitHub Desktop.
Save pycaret/ef5ca3ef772749dd4466a0bc8b273264 to your computer and use it in GitHub Desktop.
# import classification module
from pycaret.classification import *
# init setup
clf1 = setup(data, target = 'name-of-target', log_experiment = True, experiment_name = 'exp-name-here')
# compare models
best = compare_models()
# start mlflow server on localhost:5000 (when using notebook)
!mlflow ui
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment