Others
Other functions in PyCaret
pull
Example
# loading dataset
from pycaret.datasets import get_data
data = get_data('diabetes')
# init setup
from pycaret.classification import *
clf1 = setup(data, target = 'Class variable')
# compare models
best_model = compare_models()
# get the scoring grid
results = pull()
models
Example


get_config
Example

set_config
Example
get_metrics

add_metric


remove_metric

automl
Example

get_logs
Example

get_current_experiment
set_current_experiment
Last updated
Was this helpful?