Only examples of estimators that implement the partial_fit
API that I can find are SGDRegressor
and SGDClassifier
. Are there others? Is there a list of estimators that implement the partial_fit
API?
Asked
Active
Viewed 869 times
4

davidrpugh
- 4,363
- 5
- 32
- 46
-
See https://stackoverflow.com/a/30064773/2315949 (works just as well with partial_fit) – Toby May 08 '23 at 14:15
1 Answers
3
Here is the list of models that allows partial_fit()
.
Classification
sklearn.naive_bayes.MultinomialNB
sklearn.naive_bayes.BernoulliNB sklearn.linear_model.Perceptron
sklearn.linear_model.SGDClassifier
sklearn.linear_model.PassiveAggressiveClassifierRegression
sklearn.linear_model.SGDRegressor
sklearn.linear_model.PassiveAggressiveRegressorClustering
sklearn.cluster.MiniBatchKMeans
Decomposition / feature Extraction
sklearn.decomposition.MiniBatchDictionaryLearning
sklearn.cluster.MiniBatchKMeans

Community
- 1
- 1

Venkatachalam
- 16,288
- 9
- 49
- 77