scikit-learn-contrib / hiclass

A python library for hierarchical classification compatible with scikit-learn
BSD 3-Clause "New" or "Revised" License
113 stars 20 forks source link

Support for fit_partial #96

Open chriss1245 opened 9 months ago

chriss1245 commented 9 months ago

Is your feature request related to a problem? Please describe. Many sklean models support partial_fit to allow tran models over big data. But this library does not support fit_partial for the sklearn models. Describe the solution you'd like It would be nice to have partial_fit as default and an Exception if the provided sklearn model does not support fit_partial.