Skip to content

Files

Latest commit

 

History

History
13 lines (8 loc) · 563 Bytes

README.md

File metadata and controls

13 lines (8 loc) · 563 Bytes

Python implementation of Vector Auto Regressive model for time-series prediction.

This code is ported from MATLAB code by Igor.

The data is expected in multiple pickle files, each file representing one complete time-series. To run,

python buildVAR 1 traindata/ testdata/

First argument is p, the order of the VAR model. Second argument is the directory containing the training data files. Third argument is the directory containing the test data files.

Test set mean RMSE is printed out to the screen.