Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,109 @@
|
|
| 1 |
-
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# AAA-HiTSR Dataset
|
| 2 |
+
|
| 3 |
+
A comprehensive **multimodal time series understanding and reasoning dataset** with multiple complexity levels.
|
| 4 |
+
|
| 5 |
+
## Overview
|
| 6 |
+
|
| 7 |
+
This dataset contains time series data paired with visual representations and natural language instructions for time series analysis tasks. The dataset is organized into **3 levels of complexity** with corresponding train/test splits.
|
| 8 |
+
|
| 9 |
+
### Dataset Statistics
|
| 10 |
+
|
| 11 |
+
- **Level 1 (Basic)**: Single series analysis (min/max detection, trend analysis)
|
| 12 |
+
- Training samples: ~27,000
|
| 13 |
+
- Test samples: Multiple variants (minmax, multiseries, startend, subseries)
|
| 14 |
+
|
| 15 |
+
- **Level 2 (Intermediate)**: Multi-series analysis and relationships
|
| 16 |
+
- Training samples: ~40,000+
|
| 17 |
+
- Test categories: global, local, numerical
|
| 18 |
+
|
| 19 |
+
- **Level 3 (Advanced)**: Complex reasoning and annotations
|
| 20 |
+
- Training samples: ~1,000+
|
| 21 |
+
- Test samples: Final test set
|
| 22 |
+
|
| 23 |
+
## Data Structure
|
| 24 |
+
|
| 25 |
+
Each sample contains:
|
| 26 |
+
|
| 27 |
+
```json
|
| 28 |
+
{
|
| 29 |
+
"id": 1,
|
| 30 |
+
"timeseries": [[float_values]],
|
| 31 |
+
"prompt": "Multi-modal prompt with image tags",
|
| 32 |
+
"answer": "Model answer to the question",
|
| 33 |
+
"2img_prompt": "Detailed instructions for image interpretation",
|
| 34 |
+
"prompt_1": "Variant 1 of the question",
|
| 35 |
+
"prompt_2": "Variant 2 of the question",
|
| 36 |
+
"answer_1": "Answer in format 1",
|
| 37 |
+
"answer_2": "Answer in format 2",
|
| 38 |
+
"images": ["image_url_1", "image_url_2"]
|
| 39 |
+
}
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
### Key Fields
|
| 43 |
+
|
| 44 |
+
- **id**: Unique identifier for each sample
|
| 45 |
+
- **timeseries**: Array of time series values (floats)
|
| 46 |
+
- **prompt**: Main question/instruction with image references (e.g., `<image>`)
|
| 47 |
+
- **answer**: Expected model response
|
| 48 |
+
- **2img_prompt**: Detailed instructions for interpreting high-density numeric grids
|
| 49 |
+
- **prompt_1/prompt_2**: Alternative question formats
|
| 50 |
+
- **answer_1/answer_2**: Alternative answer formats
|
| 51 |
+
- **images**: URLs to corresponding plot and numeric grid images
|
| 52 |
+
|
| 53 |
+
## File Organization
|
| 54 |
+
|
| 55 |
+
```
|
| 56 |
+
AAA-HiTSR/
|
| 57 |
+
├── Train/
|
| 58 |
+
│ ├── l1_train_llatisa.json (Level 1: 27,000 samples)
|
| 59 |
+
│ ├── l2_train_llatisa.json (Level 2: 40,000+ samples)
|
| 60 |
+
│ └── l3_train_llatisa.json (Level 3: 1,000+ samples)
|
| 61 |
+
└── Test/
|
| 62 |
+
├── l1_test_startend.json
|
| 63 |
+
├── l1_test_minmax.json
|
| 64 |
+
├── l1_test_subseries.json
|
| 65 |
+
├── l1_test_multiseries.json
|
| 66 |
+
├── l2_test_global.json
|
| 67 |
+
├── l2_test_local.json
|
| 68 |
+
├── l2_test_numerical.json
|
| 69 |
+
└── l3_test.json
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
## Task Types
|
| 73 |
+
|
| 74 |
+
### Level 1 - Basic Time Series Analysis
|
| 75 |
+
- Finding maximum/minimum values and their indices
|
| 76 |
+
- Trend detection (start/end values)
|
| 77 |
+
- Subsequence identification
|
| 78 |
+
|
| 79 |
+
### Level 2 - Multi-Series Analysis
|
| 80 |
+
- Global patterns and relationships
|
| 81 |
+
- Local anomalies and features
|
| 82 |
+
- Numerical reasoning over multiple series
|
| 83 |
+
|
| 84 |
+
### Level 3 - Advanced Reasoning
|
| 85 |
+
- Complex queries requiring multi-step reasoning
|
| 86 |
+
- Real fine-tuning (RFT) and GRPO annotations
|
| 87 |
+
|
| 88 |
+
## Citation
|
| 89 |
+
|
| 90 |
+
If you use this dataset in your research, please cite:
|
| 91 |
+
|
| 92 |
+
```bibtex
|
| 93 |
+
@dataset{aaa_hitsr_2024,
|
| 94 |
+
title={AAA-HiTSR: A Comprehensive Multimodal Time Series Understanding Dataset},
|
| 95 |
+
year={2024}
|
| 96 |
+
}
|
| 97 |
+
```
|
| 98 |
+
|
| 99 |
+
## Licensing
|
| 100 |
+
|
| 101 |
+
This dataset is released for research purposes.
|
| 102 |
+
|
| 103 |
+
## Dataset Creator
|
| 104 |
+
|
| 105 |
+
Created as part of the LLaTiSA project.
|
| 106 |
+
|
| 107 |
+
## Contact
|
| 108 |
+
|
| 109 |
+
For issues or questions regarding the dataset, please open an issue on the HuggingFace Hub.
|