Add metadata and links to paper and GitHub
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,10 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# AAA-HiTSR Dataset
|
| 2 |
|
| 3 |
-
|
|
|
|
|
|
|
| 4 |
|
| 5 |
## Overview
|
| 6 |
|
| 7 |
-
|
| 8 |
|
| 9 |
### Dataset Statistics
|
| 10 |
|
|
@@ -52,7 +66,7 @@ Each sample contains:
|
|
| 52 |
|
| 53 |
## Image Generation
|
| 54 |
|
| 55 |
-
The `images` field in each sample contains URLs to visual representations of the time series data. To generate these images and populate the `images` field:
|
| 56 |
|
| 57 |
1. **Clone the data conversion repository:**
|
| 58 |
```bash
|
|
@@ -103,22 +117,7 @@ The `images` field in each sample contains URLs to visual representations of the
|
|
| 103 |
--sample_ratio 1.0
|
| 104 |
```
|
| 105 |
|
| 106 |
-
4. **Upload generated images to a hosting service**
|
| 107 |
-
|
| 108 |
-
5. **The output JSON files will have the `images` field populated** with the correct URLs:
|
| 109 |
-
```json
|
| 110 |
-
{
|
| 111 |
-
"images": [
|
| 112 |
-
"https://your-hosting.com/images/plots/plot_1.png",
|
| 113 |
-
"https://your-hosting.com/images/numeric/num_1.png"
|
| 114 |
-
]
|
| 115 |
-
}
|
| 116 |
-
```
|
| 117 |
-
|
| 118 |
-
**Notes:**
|
| 119 |
-
- Each script generates two types of images per sample: trend plots (`plot_*.png`) and high-density numeric grids (`num_*.png`)
|
| 120 |
-
- Use `--sample_ratio 1.0` to process all samples (default is 0.5)
|
| 121 |
-
- The scripts automatically update the `prompt` and `answer` fields based on the dataset level requirements
|
| 122 |
|
| 123 |
## File Organization
|
| 124 |
|
|
@@ -160,20 +159,14 @@ AAA-HiTSR/
|
|
| 160 |
If you use this dataset in your research, please cite:
|
| 161 |
|
| 162 |
```bibtex
|
| 163 |
-
@
|
| 164 |
-
title={
|
| 165 |
-
|
|
|
|
|
|
|
| 166 |
}
|
| 167 |
```
|
| 168 |
|
| 169 |
## Licensing
|
| 170 |
|
| 171 |
-
This dataset is released for research purposes.
|
| 172 |
-
|
| 173 |
-
## Dataset Creator
|
| 174 |
-
|
| 175 |
-
Created as part of the LLaTiSA project.
|
| 176 |
-
|
| 177 |
-
## Contact
|
| 178 |
-
|
| 179 |
-
For issues or questions regarding the dataset, please open an issue on the HuggingFace Hub.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
task_categories:
|
| 5 |
+
- image-text-to-text
|
| 6 |
+
tags:
|
| 7 |
+
- time-series
|
| 8 |
+
- multimodal
|
| 9 |
+
- reasoning
|
| 10 |
+
- vision-language-model
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
# AAA-HiTSR Dataset
|
| 14 |
|
| 15 |
+
[**Paper**](https://huggingface.co/papers/2604.17295) | [**GitHub**](https://github.com/RainingNovember/LLaTiSA)
|
| 16 |
+
|
| 17 |
+
A comprehensive **multimodal time series understanding and reasoning dataset** with multiple complexity levels, introduced in the paper "LLaTiSA: Towards Difficulty-Stratified Time Series Reasoning from Visual Perception to Semantics".
|
| 18 |
|
| 19 |
## Overview
|
| 20 |
|
| 21 |
+
HiTSR (Hierarchical Time Series Reasoning) contains time series data paired with visual representations (plots and numeric grids) and natural language instructions for time series analysis tasks. The dataset is organized into **3 levels of complexity** with corresponding train/test splits.
|
| 22 |
|
| 23 |
### Dataset Statistics
|
| 24 |
|
|
|
|
| 66 |
|
| 67 |
## Image Generation
|
| 68 |
|
| 69 |
+
The `images` field in each sample contains URLs to visual representations of the time series data. To generate these images and populate the `images` field using the scripts provided in the [official repository](https://github.com/RainingNovember/LLaTiSA):
|
| 70 |
|
| 71 |
1. **Clone the data conversion repository:**
|
| 72 |
```bash
|
|
|
|
| 117 |
--sample_ratio 1.0
|
| 118 |
```
|
| 119 |
|
| 120 |
+
4. **Upload generated images to a hosting service** and update the URL prefixes in the commands above. The output JSON files will then have the `images` field populated with the correct URLs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 121 |
|
| 122 |
## File Organization
|
| 123 |
|
|
|
|
| 159 |
If you use this dataset in your research, please cite:
|
| 160 |
|
| 161 |
```bibtex
|
| 162 |
+
@article{llatisa2026,
|
| 163 |
+
title={LLaTiSA: Towards Difficulty-Stratified Time Series Reasoning from Visual Perception to Semantics},
|
| 164 |
+
author={Yueyang Ding, HaoPeng Zhang, Rui Dai, Yi Wang, Tianyu Zong, Kaikui Liu, Xiangxiang Chu},
|
| 165 |
+
journal={arXiv preprint arXiv:2604.17295},
|
| 166 |
+
year={2026}
|
| 167 |
}
|
| 168 |
```
|
| 169 |
|
| 170 |
## Licensing
|
| 171 |
|
| 172 |
+
This dataset is released for research purposes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|