Issue
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?
Solution
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
Answered By - Venkatachalam
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.