holgerson commited on
Commit
d57fffa
·
verified ·
1 Parent(s): 07aa0c9

Document raw SPARC VQA corpus and filtered release

Browse files
Files changed (1) hide show
  1. README.md +23 -26
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- pretty_name: SPARC VQA
3
  tags:
4
  - robotics
5
  - vision-language
@@ -7,9 +7,28 @@ tags:
7
  - sparc
8
  ---
9
 
10
- # SPARC VQA
11
 
12
- SPARC VQA is the generated spatial VQA training dataset used in the SPARC Qwen3.5 model releases. It contains 838,211 training examples in one Parquet shard (33.20 GB). Each example embeds its image bytes and includes a question, answer, task type, target type, source dataset identifier, split, and JSON metadata.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
  ## Data schema
15
 
@@ -22,29 +41,7 @@ SPARC VQA is the generated spatial VQA training dataset used in the SPARC Qwen3.
22
  | `target_type`, `task_type` | Spatial target and VQA task labels |
23
  | `source`, `split`, `metadata` | Provenance and generation metadata |
24
 
25
- ## Mixtures and models
26
-
27
- | Release | Data mixture |
28
- | --- | --- |
29
- | Qwen3.5-4B | SPARC VQA + FSD + RoboPoint + LLaVA-OneVision2 |
30
- | Qwen3.5-0.8B-VTFT | SPARC VQA + FSD + RoboPoint + LLaVA-OneVision2 |
31
- | Qwen3.5-9B-EO | SPARC VQA + FSD + RoboPoint + LLaVA-OneVision2 + EO-1.5M |
32
-
33
- See [irl-kit/SPARC-VQA-Mixture](https://huggingface.co/datasets/irl-kit/SPARC-VQA-Mixture) for the reproducible mixture manifest. The released models are [Qwen3.5-4B](https://huggingface.co/irl-kit/SPARC-Qwen3.5-4B), [Qwen3.5-0.8B-VTFT](https://huggingface.co/irl-kit/SPARC-Qwen3.5-0.8B-VTFT), and [Qwen3.5-9B-EO](https://huggingface.co/irl-kit/SPARC-Qwen3.5-9B-EO).
34
-
35
- ## Prompting compatibility
36
-
37
- The released models are sensitive to output formatting. Use each model's bundled chat template with a single user turn containing the image followed by the question. For point prediction, use this suffix:
38
-
39
- ```text
40
- Output the point coordinates in JSON format like [{"point_2d": [x, y], "label": "target"}]. Use integer coordinates between 0 and 1000.
41
- ```
42
-
43
- For trajectories or multiple points, use this suffix:
44
-
45
- ```text
46
- Return only a JSON list like [{"point_2d": [x1, y1], "label": "point_1"}, {"point_2d": [x2, y2], "label": "point_2"}, ...]. Use integer coordinates between 0 and 1000.
47
- ```
48
 
49
  ## Citation
50
 
 
1
  ---
2
+ pretty_name: SPARC VQA Raw
3
  tags:
4
  - robotics
5
  - vision-language
 
7
  - sparc
8
  ---
9
 
10
+ # SPARC VQA Raw
11
 
12
+ This repository contains the unfiltered SPARC VQA corpus: 838,211 embedded-image training examples in `train.parquet` (33.20 GB). Each example contains an image, question, answer, task metadata, source identifier, and annotation metadata including `selected_start_score`.
13
+
14
+ ## Ready-to-train version
15
+
16
+ For the exact SPARC subset used by the released Qwen3.5 models, use [irl-kit/SPARC-VQA](https://huggingface.co/datasets/irl-kit/SPARC-VQA). Its `train_filtered_t097_mpo700.parquet` contains 284,909 examples after the release filtering and does not require SPARC postprocessing.
17
+
18
+ ## Reproduce the release filter
19
+
20
+ `export_sparc_training_subset.py` materializes the exact release subset from `train.parquet`:
21
+
22
+ ```bash
23
+ python export_sparc_training_subset.py \
24
+ train.parquet \
25
+ train_filtered_t097_mpo700.parquet \
26
+ --quality-threshold 0.97 \
27
+ --max-per-object 700 \
28
+ --blocked-vacant-location gripper
29
+ ```
30
+
31
+ The filter applies `selected_start_score >= 0.97`, sorts retained records by descending score, retains complete trajectory-subtask groups for the first 700 groups per normalized object phrase, and removes vacant-location prompts referring to a gripper.
32
 
33
  ## Data schema
34
 
 
41
  | `target_type`, `task_type` | Spatial target and VQA task labels |
42
  | `source`, `split`, `metadata` | Provenance and generation metadata |
43
 
44
+ `ours_adaptive_det_soft_snr_sp8.yaml` records the raw SPARC VQA generation configuration.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
  ## Citation
47