Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +143 -0
- event_report.jsonl +0 -0
- mmts.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
mmts.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# TRACE: TimeSeriesRAG Raw Dataset
|
| 2 |
+
|
| 3 |
+
This is the **raw dataset** accompanying the paper:
|
| 4 |
+
|
| 5 |
+
**[TRACE: Grounding Time Series in Context for Multimodal Embedding and Retrieval (NeurIPS 2025)](https://arxiv.org/abs/2506.09114?)**
|
| 6 |
+
|
| 7 |
+
Feel free to use this dataset for follow-up research and downstream tasks.
|
| 8 |
+
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
## Files
|
| 12 |
+
|
| 13 |
+
| File | Lines | Description |
|
| 14 |
+
|------|-------|-------------|
|
| 15 |
+
| `event_report.jsonl` | 4,855 | Weather event reports with narrative text |
|
| 16 |
+
| `mmts.jsonl` | 44,565 | Multimodal time series samples from weather stations |
|
| 17 |
+
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
## Data Format
|
| 21 |
+
|
| 22 |
+
### `event_report.jsonl`
|
| 23 |
+
|
| 24 |
+
Each line is a JSON object representing a weather event report:
|
| 25 |
+
|
| 26 |
+
```json
|
| 27 |
+
{
|
| 28 |
+
"event_id": 1065296,
|
| 29 |
+
"event_type": "Debris Flow",
|
| 30 |
+
"state": "CALIFORNIA",
|
| 31 |
+
"cz_name": "MADERA",
|
| 32 |
+
"begin_date_time": "2023-01-10 21:11:00",
|
| 33 |
+
"end_date_time": "2023-01-10 23:11:00",
|
| 34 |
+
"narrative": "A strong low pressure system moved through central California...",
|
| 35 |
+
"ts_dict_index": [12, 13, 14]
|
| 36 |
+
}
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
| Field | Type | Description |
|
| 40 |
+
|-------|------|-------------|
|
| 41 |
+
| `event_id` | int | Unique event identifier |
|
| 42 |
+
| `event_type` | string | Type of weather event (e.g., Debris Flow, Flood, Tornado) |
|
| 43 |
+
| `state` | string | U.S. state where the event occurred |
|
| 44 |
+
| `cz_name` | string | County/zone name |
|
| 45 |
+
| `begin_date_time` | string | Event start time (`YYYY-MM-DD HH:MM:SS`) |
|
| 46 |
+
| `end_date_time` | string | Event end time (`YYYY-MM-DD HH:MM:SS`) |
|
| 47 |
+
| `narrative` | string | Free-text description of the event |
|
| 48 |
+
| `ts_dict_index` | list[int] | Indices into `mmts.jsonl` for associated time series samples |
|
| 49 |
+
|
| 50 |
+
> **Note:** `ts_dict_index` values are 0-based line indices into `mmts.jsonl`, linking each event report to one or more nearby weather station time series.
|
| 51 |
+
|
| 52 |
+
---
|
| 53 |
+
|
| 54 |
+
### `mmts.jsonl`
|
| 55 |
+
|
| 56 |
+
Each line is a JSON object representing a multimodal time series sample from a weather station:
|
| 57 |
+
|
| 58 |
+
```json
|
| 59 |
+
{
|
| 60 |
+
"id": "0",
|
| 61 |
+
"station_id": "USW00025323",
|
| 62 |
+
"latitude": 59.2428,
|
| 63 |
+
"longitude": -135.5114,
|
| 64 |
+
"temperature": [2.2, 1.7, 1.4, ...],
|
| 65 |
+
"precipitation": [1.0, 0.5, 0.5, ...],
|
| 66 |
+
"relative_humidity": [82.0, 85.0, 88.5, ...],
|
| 67 |
+
"visibility": [12.88, 11.26, 6.44, ...],
|
| 68 |
+
"wind_u": [-1.59, 2.25, -0.54, ...],
|
| 69 |
+
"wind_v": [-0.61, 1.3, 3.05, ...],
|
| 70 |
+
"sky_code": [8, 8, 8, ...],
|
| 71 |
+
"DATE": ["2020-11-24T00:00:00", "2020-11-24T01:00:00", ...],
|
| 72 |
+
"mode": "7day_hourly",
|
| 73 |
+
"location": "HAINES BOROUGH,ALASKA",
|
| 74 |
+
"description": {
|
| 75 |
+
"DATE": "The past week from November 24 to November 30, 2020.",
|
| 76 |
+
"location": "...",
|
| 77 |
+
"temperature": "...",
|
| 78 |
+
"precipitation": "...",
|
| 79 |
+
"relative_humidity": "...",
|
| 80 |
+
"visibility": "...",
|
| 81 |
+
"wind_u": "...",
|
| 82 |
+
"wind_v": "...",
|
| 83 |
+
"sky_code": "...",
|
| 84 |
+
"labels": "[Cold, Rainy, Cloudy, Windy]"
|
| 85 |
+
}
|
| 86 |
+
}
|
| 87 |
+
```
|
| 88 |
+
|
| 89 |
+
| Field | Type | Description |
|
| 90 |
+
|-------|------|-------------|
|
| 91 |
+
| `id` | string | Row index (matches position in file, 0-based) |
|
| 92 |
+
| `station_id` | string | NOAA weather station identifier |
|
| 93 |
+
| `latitude` / `longitude` | float | Station coordinates |
|
| 94 |
+
| `temperature` | list[float] | Temperature readings (°C) |
|
| 95 |
+
| `precipitation` | list[float] | Precipitation (mm) |
|
| 96 |
+
| `relative_humidity` | list[float] | Relative humidity (%) |
|
| 97 |
+
| `visibility` | list[float] | Visibility (km) |
|
| 98 |
+
| `wind_u` | list[float] | Eastward wind component (m/s) |
|
| 99 |
+
| `wind_v` | list[float] | Northward wind component (m/s) |
|
| 100 |
+
| `sky_code` | list[int] | Sky cover code (0–8 oktas) |
|
| 101 |
+
| `DATE` | list[string] | ISO 8601 timestamps for each hourly reading |
|
| 102 |
+
| `mode` | string | Sampling mode (e.g., `7day_hourly` = 7-day window at hourly resolution) |
|
| 103 |
+
| `location` | string | Human-readable station location |
|
| 104 |
+
| `description` | dict | Natural language descriptions of each channel plus weather labels |
|
| 105 |
+
|
| 106 |
+
---
|
| 107 |
+
|
| 108 |
+
## Linking Events to Time Series
|
| 109 |
+
|
| 110 |
+
The `ts_dict_index` field in `event_report.jsonl` contains a list of line indices (0-based) pointing to rows in `mmts.jsonl`. These identify the weather station time series samples spatially and temporally associated with each event.
|
| 111 |
+
|
| 112 |
+
```python
|
| 113 |
+
import json
|
| 114 |
+
|
| 115 |
+
with open("mmts.jsonl") as f:
|
| 116 |
+
mmts = [json.loads(line) for line in f]
|
| 117 |
+
|
| 118 |
+
with open("event_report.jsonl") as f:
|
| 119 |
+
for line in f:
|
| 120 |
+
event = json.loads(line)
|
| 121 |
+
related_ts = [mmts[i] for i in event["ts_dict_index"]]
|
| 122 |
+
```
|
| 123 |
+
|
| 124 |
+
---
|
| 125 |
+
|
| 126 |
+
## Preprocessed Dataset
|
| 127 |
+
|
| 128 |
+
A preprocessed version of this dataset (formatted for model training and evaluation) is available for download: [Google Drive Link](https://drive.google.com/file/d/1hX4D91QbXa0UQlgf6Jnf-1ii96gfp1aY/view?usp=sharing)
|
| 129 |
+
|
| 130 |
+
---
|
| 131 |
+
|
| 132 |
+
## Citation
|
| 133 |
+
|
| 134 |
+
If you use this dataset, please cite:
|
| 135 |
+
|
| 136 |
+
```bibtex
|
| 137 |
+
@article{chen2025trace,
|
| 138 |
+
title={Trace: Grounding time series in context for multimodal embedding and retrieval},
|
| 139 |
+
author={Chen, Jialin and Zhao, Ziyu and Nurbek, Gaukhar and Feng, Aosong and Maatouk, Ali and Tassiulas, Leandros and Gao, Yifeng and Ying, Rex},
|
| 140 |
+
journal={arXiv preprint arXiv:2506.09114},
|
| 141 |
+
year={2025}
|
| 142 |
+
}
|
| 143 |
+
```
|
event_report.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
mmts.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e67aa837aba3699056c7c2a0ed14b6e19cd1c37e05573d6e80d90058924db1a5
|
| 3 |
+
size 553720451
|