├── .dockerignore ├── .env ├── .github └── workflows │ └── workflow.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── data ├── processed │ └── m5 │ │ └── .gitkeep └── raw │ ├── m5 │ └── .gitkeep │ └── visnights │ └── visnights.csv ├── notebooks ├── .gitkeep ├── M5.ipynb ├── geo.ipynb └── visnights.ipynb ├── reports └── .gitkeep ├── requirements-auto-arima.txt ├── requirements-distributed.txt ├── requirements-geo.txt ├── requirements-prophet.txt ├── requirements.txt ├── scripts └── make_m5.sh ├── setup.py ├── src ├── __init__.py ├── cli.py ├── data │ ├── __init__.py │ └── make_dataset.py ├── models │ ├── __init__.py │ ├── base.py │ ├── predict_model.py │ └── train_model.py ├── settings.py ├── transformers │ ├── __init__.py │ └── build_features.py └── visualize.py └── test_environment.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | HTS_VERSION=0.5.4 2 | -------------------------------------------------------------------------------- /.github/workflows/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/.github/workflows/workflow.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/README.md -------------------------------------------------------------------------------- /data/processed/m5/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/m5/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/raw/visnights/visnights.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/data/raw/visnights/visnights.csv -------------------------------------------------------------------------------- /notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/M5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/notebooks/M5.ipynb -------------------------------------------------------------------------------- /notebooks/geo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/notebooks/geo.ipynb -------------------------------------------------------------------------------- /notebooks/visnights.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/notebooks/visnights.ipynb -------------------------------------------------------------------------------- /reports/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements-auto-arima.txt: -------------------------------------------------------------------------------- 1 | pmdarima>=1.5.1 -------------------------------------------------------------------------------- /requirements-distributed.txt: -------------------------------------------------------------------------------- 1 | distributed==2.13.0 -------------------------------------------------------------------------------- /requirements-geo.txt: -------------------------------------------------------------------------------- 1 | folium==0.10.0 2 | h3==3.4.3 -------------------------------------------------------------------------------- /requirements-prophet.txt: -------------------------------------------------------------------------------- 1 | fbprophet==0.7.1 2 | pystan<3.0 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/make_m5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/scripts/make_m5.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/src/cli.py -------------------------------------------------------------------------------- /src/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/src/data/make_dataset.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/src/models/base.py -------------------------------------------------------------------------------- /src/models/predict_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/src/models/predict_model.py -------------------------------------------------------------------------------- /src/models/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/src/models/train_model.py -------------------------------------------------------------------------------- /src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/src/settings.py -------------------------------------------------------------------------------- /src/transformers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/transformers/build_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/src/transformers/build_features.py -------------------------------------------------------------------------------- /src/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/src/visualize.py -------------------------------------------------------------------------------- /test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlomazzaferro/scikit-hts-examples/HEAD/test_environment.py --------------------------------------------------------------------------------