*Monash University, Melbourne, Australia †Université Bretagne Sud, IRISA, Vannes, France
MONSTER is a large-scale benchmark suite for time series classification. While UCR and UEA benchmarks offer common ground, they are limited by small dataset sizes—favoring models that reduce variance over those that scale.
Our goal is to expand the landscape with datasets that challenge models to be scalable, robust, and practical for real-world time series applications.
@article{dempster_etal_2025,
author = {Dempster, Angus and Foumani, Navid Mohammadi and Tan, Chang Wei and Miller, Lynn and Mishra, Amish and Salehi, Mahsa and Pelletier, Charlotte and Schmidt, Daniel F and Webb, Geoffrey I},
title = {MONSTER: Monash Scalable Time Series Evaluation Repository},
year = {2025},
journal = {arXiv:2502.15122},
}
from huggingface_hub import hf_hub_download
path = hf_hub_download(repo_id = "monster-monash/Pedestrian", filename = "Pedestrian_X.npy", repo_type = "dataset")
X = np.load(path, mmap_mode = "r")
from datasets import load_dataset
dataset = load_dataset("monster-monash/Pedestrian", "fold_0", trust_remote_code = True)
To view all command-line options:
python experiments/demo.py --help
Edit training parameters in experiments.py
. For example:
self.parser.add_argument('--epochs', type=int, default=100, help='Number of training epochs')
To run on a specific dataset:
python experiments/demo.py --dataset UCIActivity