nok / sklearn-porter

Transpile trained scikit-learn estimators to C, Java, JavaScript and others.
BSD 3-Clause "New" or "Revised" License
1.29k stars 170 forks source link

Online learning algorithms? #20

Closed alonsopg closed 7 years ago

alonsopg commented 7 years ago

Which algorithms can be used for streams of data? (e.g. passive aggressive, perceptron )?

nok commented 7 years ago

Hello @alonsopg,

for a incremental learning you have to use the partial_fit method of scikit-learn (≠sklearn-porter). The goal of sklearn-porter (this project) is to transpile the final estimator.

Best regards, Darius