Re: [scikit-learn] VotingRegressor with pretrained estimators from CV as input

2022-11-18 Thread Adrin
Hi, It's easy to write a meta-estimator and store it. You can write one for yourself in a few lines of code. This might help: https://github.com/adrinjalali/talks/blob/master/2022/sklearn-estimator-ODSC/custom_estimators_solved.ipynb On Thu, Nov 10, 2022 at 8:30 PM Fernando Marcos Wittmann < fern

[scikit-learn] VotingRegressor with pretrained estimators from CV as input

2022-11-10 Thread Fernando Marcos Wittmann
Hello, I'm dealing with a problem without much data. As a solution, I'm training 10 estimators using a 10-Fold CV-Schema. Now, I wanted to persist those models. In order to avoid having to save 10 estimators, I was thinking about saving a single VotingRegressor with those pre-trained models or may