├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── environment.yml ├── forecast.png ├── pred.png ├── requirements.txt ├── setup.py ├── skits ├── __init__.py ├── feature_extraction.py ├── pipeline.py └── preprocessing.py ├── test-requirements.txt └── tests ├── __init__.py ├── test_feature_extraction.py ├── test_pipeline.py └── test_preprocessing.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/environment.yml -------------------------------------------------------------------------------- /forecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/forecast.png -------------------------------------------------------------------------------- /pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/pred.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scikit-learn 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/setup.py -------------------------------------------------------------------------------- /skits/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.2" 2 | -------------------------------------------------------------------------------- /skits/feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/skits/feature_extraction.py -------------------------------------------------------------------------------- /skits/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/skits/pipeline.py -------------------------------------------------------------------------------- /skits/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/skits/preprocessing.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/tests/test_feature_extraction.py -------------------------------------------------------------------------------- /tests/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/tests/test_pipeline.py -------------------------------------------------------------------------------- /tests/test_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanRosenthal/skits/HEAD/tests/test_preprocessing.py --------------------------------------------------------------------------------