10

I am looking for packages (either in python, R, or a standalone package) to perform online learning to predict stock data.

I have found and read about Vowpal Wabbit (https://github.com/JohnLangford/vowpal_wabbit/wiki), which seems to be quite promising but I am wondering if there are any other packages out there.

Thanks in advance.

mike1886
  • 933
  • 9
  • 17

3 Answers3

4

You could look at scikit-learn or Orange module in Python. Scikit-learn has a SGD classifier and regressor that could do a partial fit data in case of online learning. In R, take a look at caret package

K3---rnc
  • 3,582
  • 1
  • 14
  • 12
Rahul Agarwal
  • 201
  • 1
  • 3
1

There are a few other libraries for online or incremental machine learning.

0

River - Online Machine Learning in Python (website) previously creme and scikit-multiflow.

OliverHennhoefer
  • 378
  • 2
  • 3
  • 12