Views
No views yet
| Parameter | Value |
|---|---|
| d_model | 512 |
| e_layers | 3 |
| patch_len | 16 |
| stride | 8 |
| dropout | 0.3 |
| learning rate | 1e-4 |
| patience | 3 |
| lookback | 512 |
| horizon | 48 |
{ds}.pt — trained model weights (PyTorch){ds}.json — per-dataset benchmark resultsstandard_benchmark.json — aggregated MASE/MAE/MSE/sMAPE under the protocol in benchmark_standard.py| Dataset | MASE | MAE | MSE | sMAPE |
|---|---|---|---|---|
| ETTh1 | 0.781 | 0.574 | 0.342 | 5.74 |
| ETTh2 | 1.467 | 0.907 | 0.684 | 4.39 |
| ETTm1 | 0.488 | 0.299 | 0.210 | 3.59 |
| exchange_rate | 3.861 | 0.020 | 0.001 | 1.19 |
| electricity | 1.347 | 48.718 | 42.173 | 1.41 |
| traffic | 1.379 | 0.011 | 0.000 | 43.23 |
1import torch
2model = torch.load("ETTh1.pt")1@inproceedings{nie2023time,
2 title={A Time Series is Worth 64 Words: Long-term Forecasting with Transformers},
3 author={Nie, Yuqi and Nguyen, Nam H and Sinthong, Phanwadee and Kalagnanam, Jayant},
4 booktitle={International Conference on Learning Representations},
5 year={2023}
6}