├── LICENSE ├── README.md ├── nbeats_forecast ├── __init__.py └── nbeats_forecast.py ├── setup.cfg └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitesh863/nbeats_forecast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitesh863/nbeats_forecast/HEAD/README.md -------------------------------------------------------------------------------- /nbeats_forecast/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitesh863/nbeats_forecast/HEAD/nbeats_forecast/__init__.py -------------------------------------------------------------------------------- /nbeats_forecast/nbeats_forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitesh863/nbeats_forecast/HEAD/nbeats_forecast/nbeats_forecast.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitesh863/nbeats_forecast/HEAD/setup.py --------------------------------------------------------------------------------