processbench commited on
Commit
ab3bdce
·
verified ·
1 Parent(s): 650c4f9

Update metadata/reconstruction.md

Browse files
Files changed (1) hide show
  1. metadata/reconstruction.md +46 -3
metadata/reconstruction.md CHANGED
@@ -5,7 +5,7 @@
5
  - QA rows for `eval split` and `sft split` in splits/
6
  - Split manifests and split counts in splits/
7
 
8
- ## How to inteprete the QA rows
9
 
10
  Each row exposes three reconstruction-oriented fields:
11
 
@@ -15,15 +15,58 @@ Each row exposes three reconstruction-oriented fields:
15
 
16
  These are designed to be stable, path-free references. They are sufficient to map a released item back to the corresponding source episode or recording once you have obtained the upstream dataset under its original terms.
17
 
18
- ## Source-specific units
19
 
20
  - `GM-100`: grouped by `(task_id, episode_id)`.
21
  - `RH20T`: grouped by `recording_id`.
22
  - `REASSEMBLE`: grouped by `recording_id`.
23
  - `AIST-Bimanual`: grouped by `recording_id`.
24
 
25
- ## Expected workflow
26
 
27
  1. Obtain upstream datasets under their original terms.
28
  2. Use `source`, `source_task_id`, `source_unit_id`, `camera`, and `frame_indices_json` from the public release.
29
  3. Reconstruct the required visual inputs with the source-specific evaluation scripts in the main codebase.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  - QA rows for `eval split` and `sft split` in splits/
6
  - Split manifests and split counts in splits/
7
 
8
+ ## How to Tnteprete the QA Rows
9
 
10
  Each row exposes three reconstruction-oriented fields:
11
 
 
15
 
16
  These are designed to be stable, path-free references. They are sufficient to map a released item back to the corresponding source episode or recording once you have obtained the upstream dataset under its original terms.
17
 
18
+ ## Source-specific Units
19
 
20
  - `GM-100`: grouped by `(task_id, episode_id)`.
21
  - `RH20T`: grouped by `recording_id`.
22
  - `REASSEMBLE`: grouped by `recording_id`.
23
  - `AIST-Bimanual`: grouped by `recording_id`.
24
 
25
+ ## Expected Workflow
26
 
27
  1. Obtain upstream datasets under their original terms.
28
  2. Use `source`, `source_task_id`, `source_unit_id`, `camera`, and `frame_indices_json` from the public release.
29
  3. Reconstruct the required visual inputs with the source-specific evaluation scripts in the main codebase.
30
+
31
+ ## Optional: QA Rows Field Schema
32
+
33
+ - `item_id`: Stable public item identifier.
34
+ - `split`: `eval` or `sft`.
35
+ - `source`: `GM-100`, `RH20T`, `REASSEMBLE`, or `AIST-Bimanual`.
36
+ - `source_slug`: Short source slug used in release-relative references.
37
+ - `source_task_id`: Source-side task identifier without local paths.
38
+ - `source_unit_type`: Split-isolation unit type, e.g. `episode` or `recording`.
39
+ - `source_unit_id`: Public unit identifier without local paths.
40
+ - `task_id`: Canonical paper task ID `T1` ... `T12`.
41
+ - `task_name`: Canonical paper task name.
42
+ - `task_type_legacy`: Legacy engineering task name when it differs from paper naming.
43
+ - `input_type`: Public input format description.
44
+ - `question`: Public question text.
45
+ - `choice_A` ... `choice_F`: Flattened answer choices.
46
+ - `answer`: Public answer label in the release schema.
47
+ - `answer_text`: Public answer text mapped from `answer`.
48
+ - `num_choices`: Number of non-null answer choices.
49
+ - `num_frames`: Number of referenced frames.
50
+ - `frame_indices_json`: JSON-encoded frame indices.
51
+ - `display_labels_json`: JSON-encoded panel labels such as `["X", "Y"]` or `["X", "Z", "Y"]`.
52
+ - `camera`: Source camera identifier when available.
53
+ - `arm_type`: Source-side arm configuration tag when available.
54
+ - `visual_ref`: Release-relative visual reference string. This is not a local filesystem path.
55
+ - `source_episode_ref`: Release-relative source unit reference.
56
+ - `reconstruction_key_json`: Minimal JSON payload needed to reconstruct the sample with upstream data and source-specific scripts.
57
+ - `task_meta_in_source`: Whether source-side task metadata/context exists upstream.
58
+ - `task_meta_public`: Always `false` in this release build. Separate structured task-meta fields are intentionally withheld.
59
+ - `split_version`: Current split version.
60
+ - `split_group_id`: Source-side split group identifier.
61
+ - `builder_version`: Public builder version tag.
62
+ - `prompt_version`: Public prompt-serialization version tag.
63
+ - `sft_target`: SFT-only supervised target string. Present only in `processdata_sft.*`.
64
+
65
+ ### Notes
66
+
67
+ - `T5` is equivalent to `T_progress`.
68
+ - `T8` is equivalent to `T_temporal`.
69
+ - `T9` is equivalent to `T_binary`.
70
+ - `T8` is normalized into six explicit permutation choices so the public table remains flat and Parquet-friendly.
71
+ - `T9` is normalized to `A/B` choices even when the source data originally used `X/Y`.
72
+