Well, I need a classifier in that can support partial_fit() and can give a
probability for prediction proba_predict() (in case of multi-class, not
only binary). PassiveAggressiveClassifier and Perceptron have no
proba_predict() method, and SGDClassifier have a proba_predict() method but
supported only for binary classification.

2013/2/28 Olivier Grisel <olivier.gri...@ensta.org>

> 2013/2/28 ShNaYkHs ShNaYkHs <shnay...@gmail.com>:
> > Is there any incremental classifier in sklearn, that can be trained
> > incrementally considering one data-point at a time ? An existing one or
> > under development one ..
>
> Yes have a look at models that have a `partial_fit` method, for
> instance SGDClassifier, PassiveAggressiveClassifier and Perceptron
> (which all use the same underlying python / cython code).
>
> However I would not pass one example at a time but rather mini-batches
> of 100 or 1000  or so to overcome the Python interpreter method call
> overhead.
>
>
> --
> Olivier
> http://twitter.com/ogrisel - http://github.com/ogrisel
>
>
> ------------------------------------------------------------------------------
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_d2d_feb
> _______________________________________________
> Scikit-learn-general mailing list
> Scikit-learn-general@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
>
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar
_______________________________________________
Scikit-learn-general mailing list
Scikit-learn-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/scikit-learn-general

Reply via email to