Using pycaret setup() for only training , such that there is no test set data when searching for the best binary classification models.
Hi there,
Does anyone know if you can set the train_size=1.0 such that you want pycaret to perform only training to your input dataset and then use best to perform prediction on unseen data? At the moment I get errors when I set train_size =1.0
Thanks a lot for any input on this. Cheers
You can't set the train_size=1.0 if you want to train entire dataset you can do in 2 way
test_data
parameter, when you specifytest_data
thentrain_size
will be ignored.finalize_model
method to trains a given estimator on the entire dataset including the holdout set.You can find information about the method and parameters from documentation