Datasets:
sample_id stringlengths 26 37 | task stringclasses 1
value | freq stringclasses 10
values | nvars int32 1 7 | context_len int32 4 1.73k | pred_len int32 4 864 | periodicity int32 4 288 | input_image imagewidth (px) 896 896 | target_image imagewidth (px) 896 896 | metadata_json stringlengths 13.6k 648k |
|---|---|---|---|---|---|---|---|---|---|
sample_000_H_n1_c744_p432_per24 | forecasting | H | 1 | 744 | 432 | 24 | {"freq":"H","pad_left":0,"pad_right":0,"context_len":744,"pred_len":432,"periodicity":24,"scale_x":0.055357142857142855,"means":[[2434.0]],"stdev":[[2030.16748046875]],"norm_const":0.4,"image_size":896,"patch_size":16,"num_patch_input":35,"num_patch_output":21,"adjust_input_ratio":0.625,"nvars":1,"pad_down":0,"color_li... | ||
sample_001_D_n1_c112_p56_per7 | forecasting | D | 1 | 112 | 56 | 7 | {"freq":"D","pad_left":0,"pad_right":0,"context_len":112,"pred_len":56,"periodicity":7,"scale_x":0.02702702702702703,"means":[[13.772918701171875]],"stdev":[[19.31538963317871]],"norm_const":0.4,"image_size":896,"patch_size":16,"num_patch_input":37,"num_patch_output":19,"adjust_input_ratio":0.6607142857142857,"nvars":1... | ||
sample_002_5T_n1_c576_p576_per288 | forecasting | 5T | 1 | 576 | 576 | 288 | {"freq":"5T","pad_left":0,"pad_right":0,"context_len":576,"pred_len":576,"periodicity":288,"scale_x":0.004464285714285714,"means":[[411.0]],"stdev":[[163.43899536132812]],"norm_const":0.4,"image_size":896,"patch_size":16,"num_patch_input":28,"num_patch_output":28,"adjust_input_ratio":0.5,"nvars":1,"pad_down":0,"color_l... | ||
sample_003_H_n6_c792_p480_per24 | forecasting | H | 6 | 792 | 480 | 24 | "{\"freq\":\"H\",\"pad_left\":0,\"pad_right\":0,\"context_len\":792,\"pred_len\":480,\"periodicity\"(...TRUNCATED) | ||
sample_004_H_n1_c672_p504_per168 | forecasting | H | 1 | 672 | 504 | 168 | "{\"freq\":\"H\",\"pad_left\":0,\"pad_right\":0,\"context_len\":672,\"pred_len\":504,\"periodicity\"(...TRUNCATED) | ||
sample_005_5T_n2_c864_p576_per288 | forecasting | 5T | 2 | 864 | 576 | 288 | "{\"freq\":\"5T\",\"pad_left\":0,\"pad_right\":0,\"context_len\":864,\"pred_len\":576,\"periodicity\(...TRUNCATED) | ||
sample_006_6H_n6_c108_p76_per4 | forecasting | 6H | 6 | 108 | 76 | 4 | "{\"freq\":\"6H\",\"pad_left\":0,\"pad_right\":0,\"context_len\":108,\"pred_len\":76,\"periodicity\"(...TRUNCATED) | ||
sample_007_H_n1_c432_p336_per24 | forecasting | H | 1 | 432 | 336 | 24 | "{\"freq\":\"H\",\"pad_left\":0,\"pad_right\":0,\"context_len\":432,\"pred_len\":336,\"periodicity\"(...TRUNCATED) | ||
sample_008_10T_n1_c1440_p720_per144 | forecasting | 10T | 1 | 1,440 | 720 | 144 | "{\"freq\":\"10T\",\"pad_left\":0,\"pad_right\":0,\"context_len\":1440,\"pred_len\":720,\"periodicit(...TRUNCATED) | ||
sample_009_6H_n1_c948_p716_per4 | forecasting | 6H | 1 | 948 | 716 | 4 | "{\"freq\":\"6H\",\"pad_left\":0,\"pad_right\":0,\"context_len\":948,\"pred_len\":716,\"periodicity\(...TRUNCATED) |
π§± TSUMM-Suite Training Set
This repository provides the training set of TSUMM-Suite, a multimodal dataset for unified time series understanding and generation. It contains forecasting and imputation tasks for TS-image generation. By aligning understanding tasks with generation tasks, TSUMM-Suite enables temporal understanding to improve time series generation.
π¨ Task Illustration
TSUMM-Suite covers two task families:
Generation tasks
- Forecasting. Complete the masked future region of a TS-image and decode the generated image region back into future numerical values.
- Imputation. Complete masked internal regions of a TS-image and decode the generated image region back into missing numerical values.
Understanding tasks
- QA1: Variable Counting. Count the number of variables encoded in a TS-image.
- QA2: Variable Y-Range. Locate the vertical range of a specific variable.
- QA3: Cycle Bounding Box. Locate the spatial region of a target cycle.
- QA4: Mean Comparison. Compare average values across cycles.
- QA5: Anomaly Detection. Identify and locate anomalous regions.
- QA6: Trend Analysis. Analyze temporal patterns within a specified region.
π Dataset Information
1. Dataset Components
| Component | Task Family | Size | Description |
|---|---|---|---|
| Forecasting | Generation | 40,000 | TS-image completion samples for future sequence generation |
| Imputation | Generation | 40,000 | TS-image completion samples for missing-value reconstruction |
| TS-image QA | Understanding | 9,409 | CoT-guided QA pairs for layout-level and signal-level TS-image understanding |
| TSR-Suite | Reasoning | 2,339 | CoT-guided temporal reasoning samples used to strengthen temporal reasoning |
* Note: This release open-sources the forecasting and imputation generation data only. We do not open-source the TS-image QA (Understanding) and TSR-Suite (Reasoning) training data.
All generation samples are stored in a single train split (80,000 rows total). Each TS-image has resolution 896Γ896. In the paper, the main TimeOmni-VL experiments use 5k samples per generation task for training.
2. Data Fields
Generation samples contain fields such as:
sample_id: unique sample identifiertask:forecastingorimputationfreq: time series frequency (e.g.,H,D,5T)nvars: number of variablescontext_len: context lengthpred_len: prediction or imputation lengthperiodicity: periodicity of the seriesinput_image: masked TS-image input (896Γ896)target_image: ground-truth completed TS-image (896Γ896)metadata_json: JSON string with normalization, patch layout, mask ratio, and related metadata
π Usage
from datasets import load_dataset
dataset = load_dataset("TimeOmni-VL/TSUMM-Suite_Training")
train = dataset["train"]
forecasting = train.filter(lambda x: x["task"] == "forecasting")
imputation = train.filter(lambda x: x["task"] == "imputation")
print(f"Total: {len(train)}, Forecasting: {len(forecasting)}, Imputation: {len(imputation)}")
π Evaluation
For forecasting and imputation, we report normalized Mean Absolute Scaled Error (nMASE). Lower values indicate better numerical generation quality.
For TS-image understanding, we report normalized task-specific scores in the range of [0, 1]. Higher values indicate better understanding performance.
For TSR-Suite reasoning tasks, we report Accuracy (ACC) for text-output tasks and Mean Absolute Error (MAE) for sequence-output tasks.
License
TSUMM-Suite is released under the Apache 2.0 license.
βοΈ Citation
@article{guan2026timeomni,
title={TimeOmni-VL: Unified Models for Time Series Understanding and Generation},
author={Guan, Tong and Pan, Sheng and Barthelemy, Johan and Li, Zhao and Cai, Yujun and Alippi, Cesare and Jin, Ming and Pan, Shirui},
journal={arXiv preprint arXiv:2602.17149},
year={2026}
}
- Downloads last month
- 491