Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.49 KB

README.md

File metadata and controls

49 lines (35 loc) · 1.49 KB

Long Sequence Time-Series Forecasting via Transformers

File Structure

.
├── exp                 # Utils for serving data and running experiments
├── models              # Models and their building blocks
├── notebooks           # Jupyter notebooks for data generation and visualization
├── report              # LaTeX source for project final report
├── scripts             # Scripts that execute experiments
├── README.md
├── main.py             # Entry point of the program
└── requirements.yml    # Conda environment

Usage

Install dependencies

conda env create -f requirements.yml
conda activate lstf

Ablation studies on benchmarks

The scripts for Transformers run vanilla Transformer (enc-dec), Transformer without the encoder (dec) and, Transformer with autoregressive decoding (auto). The scripts for Autoformer perform more detailed ablation studies.

./scripts/run_transformer.sh
./scripts/run_autoformer.sh

Ablation studies on synthetic dataset

./scripts/run_synthetic.sh

References