Document the inlined tracker rollouts and the sharded layout
Browse files
README.md
CHANGED
|
@@ -18,9 +18,9 @@ configs:
|
|
| 18 |
- config_name: preference
|
| 19 |
data_files:
|
| 20 |
- split: train
|
| 21 |
-
path: preference_pair/train.parquet
|
| 22 |
- split: test
|
| 23 |
-
path: preference_pair/test.parquet
|
| 24 |
---
|
| 25 |
|
| 26 |
# Dataset Card for HumanTracker
|
|
@@ -30,9 +30,9 @@ configs:
|
|
| 30 |
HumanTracker is a humanoid motion-tracking benchmark. This release contains two complementary subsets:
|
| 31 |
|
| 32 |
- **`motions/`** — the evaluation test split: retargeted 29-DoF reference trajectories, grouped into four motion families.
|
| 33 |
-
- **`preference_pair/`** — 6,000 human preference pairs
|
| 34 |
|
| 35 |
-
The evaluation harness and HumanScore reward model live in the [HumanTracker repository](https://github.com/GalaxyGeneralRobotics/HumanTracker).
|
| 36 |
|
| 37 |
## Dataset Details
|
| 38 |
|
|
@@ -41,7 +41,7 @@ Humanoid tracking is often scored with per-frame kinematic error, which misses t
|
|
| 41 |
| Subset | Role | Size |
|
| 42 |
| --- | --- | --- |
|
| 43 |
| `motions/` | Tracker evaluation references (test split) | 2,500 clips |
|
| 44 |
-
| `preference_pair/` | Human preference labels +
|
| 45 |
|
| 46 |
Motions are retargeted to a 29-DoF Unitree G1-style humanoid with [GMR](https://arxiv.org/abs/2510.02252) and stored as `qpos` trajectories at 50 Hz. Preference pairs compare GMT, TWIST2, SONIC and Humanoid-GPT rollouts of the same reference window (typically 250 frames / 5 s). Labels are a strict preference, `similar`, or `bad_traj` (cannot compare). The pair split is grouped by `motion_id`, so every clip from one source motion stays in one partition.
|
| 47 |
|
|
@@ -63,8 +63,8 @@ HumanTracker/
|
|
| 63 |
preference_pair/
|
| 64 |
train.json
|
| 65 |
test.json
|
| 66 |
-
train.parquet
|
| 67 |
-
test.parquet
|
| 68 |
```
|
| 69 |
|
| 70 |
Filenames are anonymized for release. Dates, performer names, capture-system tags and sample-rate suffixes are removed. Family-level names (`Daily`, `Interaction`, `HighlyDynamic`) are numbered (`Daily_1.npz`). Action labels that are themselves the motion type are kept: Ground actions such as `burpee` and `sit-lie`, and Highly Dynamic actions such as `Tennis` or named martial-arts skills.
|
|
@@ -134,7 +134,7 @@ row = ds["train"][0]
|
|
| 134 |
print(row["choice_type"], row["tracker_pair_key"], row["motion_id"])
|
| 135 |
```
|
| 136 |
|
| 137 |
-
Or read the parquet
|
| 138 |
|
| 139 |
```python
|
| 140 |
import io
|
|
@@ -142,15 +142,16 @@ import json
|
|
| 142 |
import numpy as np
|
| 143 |
import pyarrow.parquet as pq
|
| 144 |
|
| 145 |
-
table = pq.read_table("preference_pair/
|
| 146 |
-
row = table.
|
| 147 |
-
idx = 0
|
| 148 |
-
annotation = json.loads(row["annotation_json"][idx])
|
| 149 |
-
motion = np.load(io.BytesIO(row["motion_npz"][idx]))
|
| 150 |
-
qpos = motion["qpos"] # (num_frames, 36), already sliced to the labeled window
|
| 151 |
-
```
|
| 152 |
|
| 153 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 154 |
|
| 155 |
| Column | Description |
|
| 156 |
| --- | --- |
|
|
@@ -158,14 +159,29 @@ qpos = motion["qpos"] # (num_frames, 36), already sliced to the labeled window
|
|
| 158 |
| `motion_id` | anonymized source-motion id (`Daily_12`, `burpee_3`, `Tennis_8`, …) |
|
| 159 |
| `category` | motion family |
|
| 160 |
| `tracker_pair_key` | unordered tracker pair, e.g. `gmt\|twist2` |
|
|
|
|
| 161 |
| `choice_type` | `preference` / `similar` / `bad_traj` |
|
| 162 |
| `preferred_candidate_idx` | `0` or `1` when `choice_type == preference`, else null |
|
| 163 |
| `source_start_frame` / `source_end_frame` | clip range in the original capture |
|
| 164 |
| `num_frames` / `fps` | clip length and 50 Hz |
|
|
|
|
| 165 |
| `motion_npz` | source-motion clip (bytes, `np.savez_compressed`) |
|
| 166 |
-
| `annotation_json` | full cleaned record (candidates, preference, flags) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 167 |
|
| 168 |
-
|
|
|
|
|
|
|
| 169 |
|
| 170 |
| Split | Pairs | Source motions | preference / similar / bad_traj |
|
| 171 |
| --- | --- | --- | --- |
|
|
@@ -175,10 +191,19 @@ qpos = motion["qpos"] # (num_frames, 36), already sliced to the labeled window
|
|
| 175 |
|
| 176 |
The six unordered tracker pairs (`gmt|hgpt`, `gmt|sonic`, `gmt|twist2`, `hgpt|sonic`, `hgpt|twist2`, `sonic|twist2`) are balanced at 1,000 pairs each.
|
| 177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 178 |
## Uses
|
| 179 |
|
| 180 |
- **Tracker evaluation.** Run a policy on `motions/` with the published evaluator and report Succ / MPJPE / HumanScore per family.
|
| 181 |
-
- **Reward-model / HumanScore research.**
|
| 182 |
- **Diagnostics.** Family labels and retained action names (`burpee`, `Tennis`, …) support fine-grained error breakdowns.
|
| 183 |
|
| 184 |
This release is **not** a full training-motion dump. The 2,500 evaluation clips are the official test split; preference clips are the labeled 5 s windows, not the complete source takes.
|
|
|
|
| 18 |
- config_name: preference
|
| 19 |
data_files:
|
| 20 |
- split: train
|
| 21 |
+
path: preference_pair/train/train-*.parquet
|
| 22 |
- split: test
|
| 23 |
+
path: preference_pair/test/test-*.parquet
|
| 24 |
---
|
| 25 |
|
| 26 |
# Dataset Card for HumanTracker
|
|
|
|
| 30 |
HumanTracker is a humanoid motion-tracking benchmark. This release contains two complementary subsets:
|
| 31 |
|
| 32 |
- **`motions/`** — the evaluation test split: retargeted 29-DoF reference trajectories, grouped into four motion families.
|
| 33 |
+
- **`preference_pair/`** — 6,000 human preference pairs, each stored with the two tracker rollouts that were compared and the source-motion clip they track.
|
| 34 |
|
| 35 |
+
The evaluation harness and HumanScore reward model live in the [HumanTracker repository](https://github.com/GalaxyGeneralRobotics/HumanTracker). `preference_pair/` is the reward model's training input as published: the rollouts are inline, so nothing has to be re-simulated to reproduce HumanScore.
|
| 36 |
|
| 37 |
## Dataset Details
|
| 38 |
|
|
|
|
| 41 |
| Subset | Role | Size |
|
| 42 |
| --- | --- | --- |
|
| 43 |
| `motions/` | Tracker evaluation references (test split) | 2,500 clips |
|
| 44 |
+
| `preference_pair/` | Human preference labels + the compared tracker rollouts | 6,000 pairs (4,800 / 1,200), 10 GB |
|
| 45 |
|
| 46 |
Motions are retargeted to a 29-DoF Unitree G1-style humanoid with [GMR](https://arxiv.org/abs/2510.02252) and stored as `qpos` trajectories at 50 Hz. Preference pairs compare GMT, TWIST2, SONIC and Humanoid-GPT rollouts of the same reference window (typically 250 frames / 5 s). Labels are a strict preference, `similar`, or `bad_traj` (cannot compare). The pair split is grouped by `motion_id`, so every clip from one source motion stays in one partition.
|
| 47 |
|
|
|
|
| 63 |
preference_pair/
|
| 64 |
train.json
|
| 65 |
test.json
|
| 66 |
+
train/train-00000-of-00020.parquet ... train-00019-of-00020.parquet
|
| 67 |
+
test/test-00000-of-00005.parquet ... test-00004-of-00005.parquet
|
| 68 |
```
|
| 69 |
|
| 70 |
Filenames are anonymized for release. Dates, performer names, capture-system tags and sample-rate suffixes are removed. Family-level names (`Daily`, `Interaction`, `HighlyDynamic`) are numbered (`Daily_1.npz`). Action labels that are themselves the motion type are kept: Ground actions such as `burpee` and `sit-lie`, and Highly Dynamic actions such as `Tennis` or named martial-arts skills.
|
|
|
|
| 134 |
print(row["choice_type"], row["tracker_pair_key"], row["motion_id"])
|
| 135 |
```
|
| 136 |
|
| 137 |
+
Or read the parquet shards directly, which is what the reward-model trainer does:
|
| 138 |
|
| 139 |
```python
|
| 140 |
import io
|
|
|
|
| 142 |
import numpy as np
|
| 143 |
import pyarrow.parquet as pq
|
| 144 |
|
| 145 |
+
table = pq.read_table("preference_pair/test/test-00000-of-00005.parquet")
|
| 146 |
+
row = table.slice(0, 1).to_pylist()[0]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
|
| 148 |
+
annotation = json.loads(row["annotation_json"])
|
| 149 |
+
reference = np.load(io.BytesIO(row["motion_npz"])) # same keys as motions/*.npz
|
| 150 |
+
candidate_0 = np.load(io.BytesIO(row["candidate_0_npz"]))
|
| 151 |
+
candidate_1 = np.load(io.BytesIO(row["candidate_1_npz"]))
|
| 152 |
+
print(row["choice_type"], row["preferred_candidate_idx"], row["candidate_0_tracker"])
|
| 153 |
+
print(candidate_0["joint_pos"].shape) # (num_frames, 29)
|
| 154 |
+
```
|
| 155 |
|
| 156 |
| Column | Description |
|
| 157 |
| --- | --- |
|
|
|
|
| 159 |
| `motion_id` | anonymized source-motion id (`Daily_12`, `burpee_3`, `Tennis_8`, …) |
|
| 160 |
| `category` | motion family |
|
| 161 |
| `tracker_pair_key` | unordered tracker pair, e.g. `gmt\|twist2` |
|
| 162 |
+
| `candidate_0_tracker` / `candidate_1_tracker` | which tracker occupies each candidate slot |
|
| 163 |
| `choice_type` | `preference` / `similar` / `bad_traj` |
|
| 164 |
| `preferred_candidate_idx` | `0` or `1` when `choice_type == preference`, else null |
|
| 165 |
| `source_start_frame` / `source_end_frame` | clip range in the original capture |
|
| 166 |
| `num_frames` / `fps` | clip length and 50 Hz |
|
| 167 |
+
| `candidate_0_npz` / `candidate_1_npz` | the two tracker rollouts (bytes, `np.savez_compressed`) |
|
| 168 |
| `motion_npz` | source-motion clip (bytes, `np.savez_compressed`) |
|
| 169 |
+
| `annotation_json` | full cleaned record (candidates, preference, flags, annotator alias) |
|
| 170 |
+
|
| 171 |
+
Candidate slots are stable identities, not display positions: `preferred_candidate_idx` indexes them, and the order the annotator saw is recorded separately in `annotation_json`. `motion_npz` carries the same keys as `motions/*.npz`, already sliced to `[source_start_frame, source_end_frame)`. Most windows are 250 frames (5 s at 50 Hz); shorter tail windows are kept and right-padded at training time.
|
| 172 |
+
|
| 173 |
+
Each candidate NPZ is one tracker's closed-loop rollout of that window, frame-aligned with the reference, `float32`, `num_frames` rows per array:
|
| 174 |
+
|
| 175 |
+
| Block | Arrays | Dims |
|
| 176 |
+
| --- | --- | --- |
|
| 177 |
+
| Reference the tracker was following | `ref_pose`, `ref_root_navi_vel`, `ref_joint_pos`, `ref_joint_vel`, `ref_foot_contact` | 70 |
|
| 178 |
+
| Simulated rollout | `sensor_pose`, `imu_pose`, `action`, `motor_target`, `joint_pos`, `joint_vel`, `foot_contact`, `foot_force`, `foot_vel`, `foot_acc`, `linvel_pelvis`, `root_navi_vel`, `acu_root2gv_lin_vel`, `acu_root2gv_ang_vel`, `acu_kpt2gv_pose`, `acu_kpt_cvel_in_gv` | 469 |
|
| 179 |
+
| Future-reference residuals | `next_ref2acu_gv_vel`, `next_ref2acu_kpt_pose`, `next_ref2acu_kpt_cvel` | 311 |
|
| 180 |
+
| Rendering | `qpos`, `qvel` | 71 |
|
| 181 |
|
| 182 |
+
The reported HumanScore model concatenates the first two blocks into a 539-d per-frame token; the residual block is shipped for the paper's appendix ablation and is unused by default. `qpos` / `qvel` are the MuJoCo generalized state, for replaying a rollout in the viewer.
|
| 183 |
+
|
| 184 |
+
`train.json` and `test.json` list the `record_id`s of each split, grouped by `motion_id`. `train.json` also carries `model_selection`, the 461 records held out for epoch selection, so a rerun selects the same checkpoint as the published one. `bad_traj` pairs are excluded from the fit, leaving 5,757 trained pairs; `preference` uses a Bradley–Terry loss and `similar` a symmetric 0.5 target.
|
| 185 |
|
| 186 |
| Split | Pairs | Source motions | preference / similar / bad_traj |
|
| 187 |
| --- | --- | --- | --- |
|
|
|
|
| 191 |
|
| 192 |
The six unordered tracker pairs (`gmt|hgpt`, `gmt|sonic`, `gmt|twist2`, `hgpt|sonic`, `hgpt|twist2`, `sonic|twist2`) are balanced at 1,000 pairs each.
|
| 193 |
|
| 194 |
+
Training HumanScore from this directory:
|
| 195 |
+
|
| 196 |
+
```bash
|
| 197 |
+
python -m humantracker.reward_model.train.trainer \
|
| 198 |
+
--data_dir /path/to/HumanTracker/preference_pair \
|
| 199 |
+
--cache_dir /path/to/feature_cache \
|
| 200 |
+
--output_dir storage/checkpoints/reward_model
|
| 201 |
+
```
|
| 202 |
+
|
| 203 |
## Uses
|
| 204 |
|
| 205 |
- **Tracker evaluation.** Run a policy on `motions/` with the published evaluator and report Succ / MPJPE / HumanScore per family.
|
| 206 |
+
- **Reward-model / HumanScore research.** Reproduce or extend HumanScore directly from `preference_pair/`; the [code repository](https://github.com/GalaxyGeneralRobotics/HumanTracker) reads this directory as its `--data_dir`.
|
| 207 |
- **Diagnostics.** Family labels and retained action names (`burpee`, `Tennis`, …) support fine-grained error breakdowns.
|
| 208 |
|
| 209 |
This release is **not** a full training-motion dump. The 2,500 evaluation clips are the official test split; preference clips are the labeled 5 s windows, not the complete source takes.
|