.
├── 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
conda env create -f requirements.yml
conda activate lstf
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
./scripts/run_synthetic.sh