>
>
>
> I think the following could work if the estimators_ support partial_fit:
>
> voter = VotingClassifier(...)
> voter.fit(...)
>
> For further training:
>
> for i in len(estimators_):
>     voter.estimators_[i].partial_fit(...)
>
>
ok, maybe using Voting classifier to determine regression
_______________________________________________
scikit-learn mailing list
scikit-learn@python.org
https://mail.python.org/mailman/listinfo/scikit-learn

Reply via email to