Datasets:
Tasks:
Visual Question Answering
Formats:
parquet
Languages:
English
Size:
10K - 100K
ArXiv:
License:
File size: 5,850 Bytes
4e5b543 da6defa 4e5b543 da6defa 4e5b543 4f01a53 4e5b543 62e343e 4e5b543 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | ---
pretty_name: TRACE
language:
- en
license: cc-by-4.0
annotations_creators:
- machine-generated
source_datasets:
- original
task_categories:
- visual-question-answering
size_categories:
- 10K<n<100K
tags:
- visual-reasoning
- synthetic
- rlvr
- multimodal
- grounded-reasoning
configs:
- config_name: default
data_files:
- split: train
path: data/train/trace_rlvr_train_64000_all1000_seed42-*.parquet
- split: validation
path: data/validation/trace_rlvr_validation_iid_2000_all1000_seed1042.parquet
---
# TRACE: A Taxonomy-Guided Environment for Multidomain Visual Reasoning
TRACE is a synthetic dataset for grounded visual reasoning and reinforcement
learning with verifiable rewards. Each example pairs a rendered image with two
prompt variants, typed targets, a reward contract, and a reference to its
execution trace.
[Paper](https://arxiv.org/abs/2607.19790) ·
[Project page](https://maveryn.github.io/trace/) ·
[GitHub](https://github.com/maveryn/trace) ·
[Collection](https://huggingface.co/collections/maveryn/trace-6a604291b4be4ed6399b9f24) ·
[Task catalog](https://github.com/maveryn/trace/blob/main/docs/TASK_CATALOG.md) ·
[Training recipes](https://github.com/maveryn/trace/tree/rlvr/rlvr) ·
[3B model](https://huggingface.co/maveryn/trace-qwen2.5-vl-3b) ·
[7B model](https://huggingface.co/maveryn/trace-qwen2.5-vl-7b)
## Dataset structure
The release covers 1,000 tasks, 277 scenes, and 11 visual domains: charts,
games, geometry, graphs, icons, illustrations, pages, physics, puzzles,
symbolic notation, and 3D scenes.
| Split | Examples | Coverage | Generation seed |
| --- | ---: | --- | ---: |
| train | 64,000 | 64 examples per task | 42 |
| validation | 2,000 | 2 examples per task | 1042 |
Both splits are deterministically shuffled with row-order seed `20260711`.
Validation is IID over the same 1,000 tasks; it is not a held-out test of new
task families.
This is the canonical dataset release for reproducing the public TRACE 3B and
7B checkpoints. The `dataset-v1` tag is the stable human-facing release name;
the public training configurations pin its immutable commit. An independent
[equivalence receipt](metadata/reproducibility/equivalence_receipt.v1.json)
verifies that every field consumed by training is identical to the original
run input, including embedded image bytes and row order.
The optional `trace_supervision_mode` column is advisory metadata. The released
training profiles select `prompt_answer`, score `answer_gt`, and do not read
this column.
## Fields
| Field | Description |
| --- | --- |
| `images`, `image_sizes` | Embedded rendered image and dimensions defining the annotation coordinate frame |
| `prompt_answer` | Prompt selected by the released training profiles |
| `prompt_answer_and_annotation` | Prompt requesting an answer and image-space annotation |
| `answer_gt`, `annotation_gt` | JSON-encoded typed verifier targets |
| `reward_contract` | JSON-encoded metadata-backed scoring contract |
| `instance_id`, `domain`, `scene_id`, `task`, `query_id` | Identity and public taxonomy |
| `trace_ref` | JSON-encoded reference to the compressed execution-trace sidecar |
| `trace_supervision_mode` | Optional advisory prompt-selection recommendation; unused by the released training profiles |
The `sidecars/` directories contain build and validation reports, canonical
instance records, curriculum indices, manifests, and compressed execution
traces. Images are embedded in the Parquet files and are not duplicated in
the sidecars. Report and manifest paths on the default branch are
repository-relative; dataset ids and content hashes retain artifact identity.
## Loading
```python
from datasets import load_dataset
dataset = load_dataset("maveryn/trace", revision="dataset-v1")
train = dataset["train"]
validation = dataset["validation"]
```
For sample inspection without downloading the complete release:
```python
stream = load_dataset(
"maveryn/trace",
split="train",
streaming=True,
revision="dataset-v1",
)
row = next(iter(stream))
```
The contract fields are stored as JSON strings. Decode them before scoring:
```python
import json
row = dataset["train"][0]
answer = json.loads(row["answer_gt"])
annotation = json.loads(row["annotation_gt"])
reward_contract = json.loads(row["reward_contract"])
```
The public [3B](https://github.com/maveryn/trace/blob/rlvr/rlvr/configs/trace-qwen2.5-vl-3b.yaml)
and [7B](https://github.com/maveryn/trace/blob/rlvr/rlvr/configs/trace-qwen2.5-vl-7b.yaml)
training configurations pin the immutable release commit and validate the split
sizes, task coverage, schema, prompts, and model inputs before training.
## Intended use and limitations
TRACE is intended for research on multimodal reasoning, verifiable-reward
post-training, grounded supervision, synthetic curricula, and task-level
analysis. Its procedurally generated images do not represent the full
distribution of natural images or real documents. Prompts are predominantly
English, and metadata-backed labels do not eliminate model or task-design
biases. The dataset should not be treated as evidence of real-world model
reliability or safety.
## Citation
If you use TRACE, please cite:
```bibtex
@misc{alam2026trace,
title = {Trace: A Taxonomy-Guided Environment for Multidomain Visual Reasoning},
author = {Alam, Md Tanvirul},
year = {2026},
eprint = {2607.19790},
archivePrefix = {arXiv},
primaryClass = {cs.CV},
url = {https://arxiv.org/abs/2607.19790}
}
```
## License
The dataset is released under
[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/). The generator
software is separately licensed under
[Apache-2.0](https://github.com/maveryn/trace/blob/main/LICENSE); bundled assets
and dependencies retain the terms documented in the source repository.
|