-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inclusion of more regressors and classifiers in the Model Selection #1186
Comments
Hi @ankitrajixr, these may have previously been found to not play well with other parts of TPOT, and that may be why they are not included by default. However, you can add any scikit-learn classifier or regressor to TPOT by simply including it in a custom configuration dictionary. Please see: If you can use them and they perform well, we can look into adding them to the built-in configuration dictionaries. I'd recommend giving it a try and letting us know (on this thread) how they perform. |
Thank you for your response @JDRomano2 . I have tried the custom TPOT config dictionary. Below is the code snippet for it.
The above code works fine for smaller datasets. |
Hi team,
Thank you for such a helpful library. While using tpot library, we found certain regressors and classifiers not included in the model selection of the machine learning pipeline.
It would be great with the addition of some regressors like Gaussian Process Regressor, Voting Regressor and classifiers like Voting Classifier, AdaBoost Classifier.
How to recreate it?
fit()
function with training dataExpected result
The above-mentioned regressor and classifier are not included in the Machine learning for Model selection.
The text was updated successfully, but these errors were encountered: