rasbt / mlxtend

A library of extension and helper modules for Python's data analysis and machine learning libraries.
https://rasbt.github.io/mlxtend/
Other
4.85k stars 857 forks source link

Ensemble Voting Regressor #866

Open jmrichardson opened 2 years ago

jmrichardson commented 2 years ago

Hi, are there any plans to add ensemble Voting Regressor with pretrained models, similar to EnsembleVoteClassifier?

Thanks

rasbt commented 2 years ago

Thanks for the note, if it's not already supported, that'd be a good addition! Personally, I am currently stretched very thin this semester, but I will happy to revisit some time. Also, I am happy about PRs!

NimaSarajpoor commented 2 years ago

@rasbt I think this is now available through sklearn.ensemble.VotingRegressor

If not, and you have some extra ideas in mind, please let me know as I would like to work on this.

trbedwards commented 1 year ago

@rasbt I think this is now available through sklearn.ensemble.VotingRegressor

If not, and you have some extra ideas in mind, please let me know as I would like to work on this.

VotingRegressor from scikit-learn doesn't have the fit_base_estimators kwarg, which needs to be set to False if we want to pass in pre-fitted models and not re-fit them.