shengp666 commited on
Commit
1d3bc55
·
verified ·
1 Parent(s): 391a57b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +189 -36
README.md CHANGED
@@ -1,42 +1,195 @@
1
  ---
2
- configs:
3
- - config_name: default
4
- data_files:
5
- - split: train
6
- path: data/train-*.parquet
7
- dataset_info:
8
- features:
9
- - name: sample_id
10
- dtype: string
11
- - name: task
12
- dtype: string
13
- - name: freq
14
- dtype: string
15
- - name: nvars
16
- dtype: int32
17
- - name: context_len
18
- dtype: int32
19
- - name: pred_len
20
- dtype: int32
21
- - name: periodicity
22
- dtype: int32
23
- - name: input_image
24
- dtype: image
25
- - name: target_image
26
- dtype: image
27
- - name: metadata_json
28
- dtype: string
29
  ---
30
 
31
- # TimeOmni-VL Generation Samples
32
 
33
- This is the Hugging Face Dataset Viewer friendly version of the TimeOmni-VL
34
- forecasting and imputation samples.
 
 
 
 
 
 
35
 
36
- Columns:
 
 
 
 
 
 
37
 
38
- - `sample_id`: original sample directory name.
39
- - `task`: `forecasting` or `imputation`.
40
- - `input_image`: masked/source image.
41
- - `target_image`: full/target image.
42
- - `metadata_json`: original per-sample metadata serialized as JSON.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - question-answering
5
+ - visual-question-answering
6
+ - image-to-image
7
+ tags:
8
+ - time series
9
+ - time series understanding
10
+ - time series generation
11
+ - time series forecasting
12
+ - time series imputation
13
+ - multimodal
14
+ - ts-image
15
+ - temporal reasoning
16
+ - understanding-guided generation
17
+ - timeomni-vl
18
+ language:
19
+ - en
20
+ size_categories:
21
+ - 10K<n<100K
 
 
 
 
 
 
 
22
  ---
23
 
24
+ # 🧱 TSUMM-SUITE Training Set
25
 
26
+ <p align="left">
27
+ <a href="https://arxiv.org/abs/2602.17149">
28
+ <img
29
+ src="https://img.shields.io/badge/TimeOmni--VL-Paper-red?logo=arxiv&logoColor=red"
30
+ style="display: inline-block; vertical-align: middle;"
31
+ alt="TimeOmni-VL Paper on arXiv"
32
+ />
33
+ </a>
34
 
35
+ <a href="https://huggingface.co/YOUR_ORG/TimeOmni-VL">
36
+ <img
37
+ src="https://img.shields.io/badge/TimeOmni--VL-Model-yellow?logo=huggingface&logoColor=white"
38
+ style="display: inline-block; vertical-align: middle;"
39
+ alt="TimeOmni-VL Model on Hugging Face"
40
+ />
41
+ </a>
42
 
43
+ <a href="https://huggingface.co/datasets/YOUR_ORG/TSUMM-SUITE">
44
+ <img
45
+ src="https://img.shields.io/badge/TSUMM--SUITE-Dataset-orange?logo=huggingface&logoColor=white"
46
+ style="display: inline-block; vertical-align: middle;"
47
+ alt="TSUMM-SUITE Dataset on Hugging Face"
48
+ />
49
+ </a>
50
+
51
+ <a href="https://huggingface.co/spaces/YOUR_ORG/TimeOmni-VL">
52
+ <img
53
+ src="https://img.shields.io/badge/TimeOmni--VL-Demo-blue?logo=huggingface&logoColor=white"
54
+ style="display: inline-block; vertical-align: middle;"
55
+ alt="TimeOmni-VL Demo on Hugging Face Spaces"
56
+ />
57
+ </a>
58
+
59
+ <a href="https://github.com/AntonGuan/TimeOmni-VL" target="_blank" style="margin: 2px;">
60
+ <img
61
+ src="https://img.shields.io/badge/TimeOmni--VL-Code-536af5?logo=github&logoColor=white"
62
+ style="display: inline-block; vertical-align: middle;"
63
+ alt="TimeOmni-VL Code on GitHub"
64
+ />
65
+ </a>
66
+ </p>
67
+
68
+ > **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, together with six TS-image understanding tasks derived from the same time series instances. By aligning understanding tasks with generation tasks, TSUMM-SUITE enables temporal understanding to improve time series generation.
69
+
70
+ ## 🎨 Task Illustration
71
+
72
+ <div align="center">
73
+ <img src="https://raw.githubusercontent.com/AntonGuan/TimeOmni-VL/main/figs/fig4.png" width="100%"/>
74
+ </div>
75
+
76
+ <p><strong>TSUMM-SUITE covers two task families:</strong></p>
77
+ <div style="margin-left:18px">
78
+
79
+ <p><strong>Generation tasks</strong></p>
80
+ <ul>
81
+ <li><strong>Forecasting.</strong> Complete the masked future region of a TS-image and decode the generated image region back into future numerical values.</li>
82
+ <li><strong>Imputation.</strong> Complete masked internal regions of a TS-image and decode the generated image region back into missing numerical values.</li>
83
+ </ul>
84
+
85
+ <p><strong>Understanding tasks</strong></p>
86
+ <ul>
87
+ <li><strong>QA1: Variable Counting.</strong> Count the number of variables encoded in a TS-image.</li>
88
+ <li><strong>QA2: Variable Y-Range.</strong> Locate the vertical range of a specific variable.</li>
89
+ <li><strong>QA3: Cycle Bounding Box.</strong> Locate the spatial region of a target cycle.</li>
90
+ <li><strong>QA4: Mean Comparison.</strong> Compare average values across cycles.</li>
91
+ <li><strong>QA5: Anomaly Detection.</strong> Identify and locate anomalous regions.</li>
92
+ <li><strong>QA6: Trend Analysis.</strong> Analyze temporal patterns within a specified region.</li>
93
+ </ul>
94
+
95
+ </div>
96
+
97
+ ## 📊 Dataset Information
98
+
99
+ ### 1. Dataset Components
100
+
101
+ <table style="width:100%;border-collapse:collapse;font-size:13px">
102
+ <thead>
103
+ <tr>
104
+ <th style="padding:10px 7px;text-align:center;vertical-align:middle;font-weight:700;border-bottom:2px solid #2563eb;color:#2563eb">Component</th>
105
+ <th style="padding:10px 7px;text-align:center;vertical-align:middle;font-weight:700;border-bottom:2px solid #2563eb;color:#2563eb">Task Family</th>
106
+ <th style="padding:10px 7px;text-align:center;vertical-align:middle;font-weight:700;border-bottom:2px solid #2563eb;color:#2563eb">Size</th>
107
+ <th style="padding:10px 7px;text-align:center;vertical-align:middle;font-weight:700;border-bottom:2px solid #2563eb;color:#2563eb">Description</th>
108
+ </tr>
109
+ </thead>
110
+ <tbody>
111
+ <tr>
112
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15);color:#2563eb">Forecasting</td>
113
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15)"><span style="display:inline-block;padding:3px 9px;border-radius:999px;background:rgba(37,99,235,0.10);color:#2563eb;font-weight:600">Generation</span></td>
114
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15);font-weight:700">40,000</td>
115
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15)">TS-image completion samples for future sequence generation</td>
116
+ </tr>
117
+ <tr>
118
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15);color:#2563eb">Imputation</td>
119
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15)"><span style="display:inline-block;padding:3px 9px;border-radius:999px;background:rgba(37,99,235,0.10);color:#2563eb;font-weight:600">Generation</span></td>
120
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15);font-weight:700">40,000</td>
121
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15)">TS-image completion samples for missing-value reconstruction</td>
122
+ </tr>
123
+ <tr>
124
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15);color:#2563eb">TS-image QA</td>
125
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15)"><span style="display:inline-block;padding:3px 9px;border-radius:999px;background:rgba(37,99,235,0.10);color:#2563eb;font-weight:600">Understanding</span></td>
126
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15);font-weight:700">9,409</td>
127
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15)">CoT-guided QA pairs for layout-level and signal-level TS-image understanding</td>
128
+ </tr>
129
+ <tr>
130
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15);color:#2563eb">TSR-Suite</td>
131
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15)"><span style="display:inline-block;padding:3px 9px;border-radius:999px;background:rgba(37,99,235,0.10);color:#2563eb;font-weight:600">Reasoning</span></td>
132
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15);font-weight:700">2,339</td>
133
+ <td style="padding:8px 7px;text-align:center;vertical-align:middle;border-bottom:1px solid rgba(128,128,128,0.15)">CoT-guided temporal reasoning samples used to strengthen temporal reasoning</td>
134
+ </tr>
135
+ </tbody>
136
+ </table>
137
+
138
+ ### 2. Data Fields
139
+
140
+ Generation samples contain fields such as:
141
+
142
+ - `sample_id`: unique sample identifier
143
+ - `task_type`: `forecasting` or `imputation`
144
+ - `instruction`: task instruction for generation
145
+ - `source_image`: masked TS-image input
146
+ - `target_image`: ground-truth completed TS-image
147
+ - `target_series`: numerical target sequence
148
+ - `generation_cot`: temporal reasoning used as generation condition
149
+ - `metadata`: frequency, prediction length, mask ratio, number of variables, and related information
150
+
151
+ Understanding samples contain fields such as:
152
+
153
+ - `question_id`: unique QA identifier
154
+ - `image`: TS-image input
155
+ - `question`: natural-language question
156
+ - `cot`: reasoning chain
157
+ - `answer`: ground-truth answer
158
+ - `qa_type`: one of QA1–QA6
159
+ - `level`: `layout` or `signal`
160
+
161
+ ## 🚀 Usage
162
+
163
+ ```python
164
+ from datasets import load_dataset
165
+
166
+ dataset = load_dataset("YOUR_ORG/TSUMM-SUITE")
167
+
168
+ forecasting = dataset["forecasting"]
169
+ imputation = dataset["imputation"]
170
+ understanding = dataset["understanding"]
171
+ reasoning = dataset["reasoning"]
172
+ ```
173
+
174
+ ## 📐 Evaluation
175
+
176
+ **For forecasting and imputation**, we report normalized Mean Absolute Scaled Error (nMASE). Lower values indicate better numerical generation quality.
177
+
178
+ **For TS-image understanding**, we report normalized task-specific scores in the range of `[0, 1]`. Higher values indicate better understanding performance.
179
+
180
+ **For TSR-Suite reasoning tasks**, we report Accuracy (ACC) for text-output tasks and Mean Absolute Error (MAE) for sequence-output tasks.
181
+
182
+ ## License
183
+
184
+ TSUMM-SUITE is released under the Apache 2.0 license.
185
+
186
+ ## ✍️ Citation
187
+
188
+ ```bibtex
189
+ @article{guan2026timeomni,
190
+ title={TimeOmni-VL: Unified Models for Time Series Understanding and Generation},
191
+ author={Guan, Tong and Pan, Sheng and Barthelemy, Johan and Li, Zhao and Cai, Yujun and Alippi, Cesare and Jin, Ming and Pan, Shirui},
192
+ journal={arXiv preprint arXiv:2602.17149},
193
+ year={2026}
194
+ }
195
+ ```