Closed zhaoxiongjun closed 1 year ago
run() tries to find the best configuration for the model, ie the best combination of hyperparameters and classifiers,but it does not applies the found configuration to the model, ie dont train the model with that configuration. If you need to train the model in addition to finding the best model, maybe to use in your production environment, you need to do it using fit()
Thanks @hamed8888 for providing the answer!
Question
Which diff between Study.fit() and Study.run() ?