Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/mhamilton723/tseries
Browse files Browse the repository at this point in the history
  • Loading branch information
mhamilton723 committed Jul 14, 2017
2 parents fa494e8 + 168135a commit 58b402f
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
# TimeSeriesRegressor
A wrapper estimator that transforms any sklearn regressor into a time series predictor or sequence to sequence mapper.
The TSR internally transforms a regular dataset where the rows correspond to terms of a sequence into a sequence prediction dataset and
learns a sequence to sequence predictor.
# tseries

Classes for working with time series in python using the sklearn ecosystem. Contains:

- TimeSeriesRegressor: Turn any sklearn estimator into a time series estimator. Eg Linear Regression -> Vector Auto Regression (VAR)
- Delta Transformer: Transform your time series to predict additive changes. When pipelining this one can create "Integrated" time series models like the VARI
- Double Pipeline: Add invertable transformations to your labels so that you can regress in different spaces and pull back to the original
- Functions for proper cross validation of time series.
- Other utilities ive found useful

Documentation is currently lagging behind development and pull requests are greatly appreciated!

# Install

The latest stable release can be installed with:

`pip install tseries`


## Requires
Numpy, Pandas, SciKit-Learn,pickle
Expand Down

0 comments on commit 58b402f

Please sign in to comment.