Metadata-Version: 2.1
Name: tft-forecasting
Version: 0.1.0
Summary: Temporal Fusion Transformers for Interpretable Multi-Horizon Forecasting
License: MIT
Author: Thomas Kientz
Author-email: thomas@kientz.net
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: numpy (>=1.26.4,<2.0.0)
Requires-Dist: torch (>=2.2.1,<3.0.0)
Description-Content-Type: text/markdown

# tft-forecasting

Temporal Fusion Transformers for Interpretable Multi-horizon Time Series Forecasting

```bash
git clone https://github.com/thomktz/tft-forecasting
cd tft-forecasting
```

Install poetry and pre-commit

```bash
pip install poetry pre-commit
```

Install dependencies

```bash
poetry install
```

Install the pre-commit hooks

```bash
pre-commit install
```

To run the pre-commit hooks

```bash
pre-commit run --all-files
```

To run pytests

```bash
poetry run pytest
```

