├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── jupyter ├── air_passenger.csv └── tsboost_quick_start.ipynb ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_tsboost.py ├── tox.ini └── tsboost ├── __init__.py ├── ensembles.py └── regressors.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /jupyter/air_passenger.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/jupyter/air_passenger.csv -------------------------------------------------------------------------------- /jupyter/tsboost_quick_start.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/jupyter/tsboost_quick_start.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_tsboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/tests/test_tsboost.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/tox.ini -------------------------------------------------------------------------------- /tsboost/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/tsboost/__init__.py -------------------------------------------------------------------------------- /tsboost/ensembles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/tsboost/ensembles.py -------------------------------------------------------------------------------- /tsboost/regressors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/franck-durand/tsboost/HEAD/tsboost/regressors.py --------------------------------------------------------------------------------