Matt von Rohr

Results 3 comments of Matt von Rohr
trafficstars

Here's the snippet to reproduce it. ``` from pycaret.datasets import get_data from pycaret.classification import * juice = get_data('juice') setup(data = juice, target = 'Purchase', silent=True) clf = create_model('lr') save_model(clf, 'lr')...

Here's a reproducible example: ``` from pycaret.datasets import get_data from pycaret.classification import * data = get_data('cancer') setup(data, target = 'Class', silent=True) clf = create_model('dummy') tune_model(clf) # ValueError: parameter grid for...