Last active
August 1, 2020 13:30
-
-
Save pycaret/bc2f0dc6e8cc7ad87c1240265094c471 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Import module | |
from pycaret.classification import * | |
# Initialize setup (when using Notebook environment) | |
clf1 = setup(data, target = 'target-variable') | |
# Initialize setup (outside of Notebook environment) | |
clf1 = setup(data, target = 'target-variable', html = False) | |
# Initialize setup (When using remote execution such as Kaggle / GitHub actions / CI-CD pipelines) | |
clf1 = setup(data, target = 'target-variable', html = False, silent = True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment