File size: 6,616 Bytes
05a8374 | 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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | ---
pretty_name: HumanTracker
task_categories:
- reinforcement-learning
- other
language:
- en
tags:
- humanoid-robotics
- motion-tracking
- motion-capture
- imitation-learning
- benchmark
- qpos
- human-motion
configs:
- config_name: motion
data_files:
- split: train
path: train.json
- split: test
path: test.json
- config_name: preference_pair
data_files:
- split: train
path: PreferencePair/*.parquet
---
# HumanTracker
HumanTracker is a humanoid motion tracking benchmark for evaluating contact-rich, long-horizon whole-body tracking. It is designed to diagnose failures that are often missed by frame-wise kinematic metrics, such as unstable support, contact timing errors, and foot skating.
This repository provides HumanTracker motion clips prepared for public research use. The release preserves the four motion categories and train/test structure while using anonymized clip filenames of the form `<category>_<index>.npz`.
## Dataset Summary
The dataset includes robot-space tracking references stored as NumPy `.npz` files, plus JSON manifests for train and test splits. Each manifest entry points to one motion clip and records its category and frame count.
The four categories are:
- `Agile`: highly dynamic movements such as jumps, kicks, acrobatics, and fast footwork.
- `Daily`: routine daily motions such as walking, turning, gestures, and steady locomotion.
- `Ground`: low-posture and multi-contact transitions such as kneeling, sitting, rolling, and recovery motions.
- `Interaction`: human/object interaction motions requiring coordinated end-effector timing and whole-body stabilization.
## Directory Structure
```text
.
+-- Agile/
| +-- Agile_1.npz
| +-- ...
+-- Daily/
| +-- Daily_1.npz
| +-- ...
+-- Ground/
| +-- Ground_1.npz
| +-- ...
+-- Interaction/
| +-- Interaction_1.npz
| +-- ...
+-- PreferencePair/
| +-- hf_records_idx_000000-000199.parquet
| +-- ...
| +-- hf_records.index.json
+-- train.json
+-- test.json
```
Example manifest row:
```json
{
"path": "Daily/Daily_1.npz",
"category": "Daily",
"frames": 1234
}
```
## Data Format
Each `.npz` file contains time-series arrays for humanoid motion tracking. The keys can vary by clip, and commonly include:
- `qpos`: generalized coordinates / robot-space reference trajectory.
- `qvel`: generalized velocities.
- `joint_names`, `jnt_type`, `njnt`: joint metadata when available.
- `frequency`: capture or retargeted sequence frequency when available.
- `split_points`: segment boundary metadata when available.
- `kpt_npose`, `kpt_cvel`, `navi_pose`, `navi_vel`, `foot_contact`: additional keypoint, navigation, and contact signals for clips where these annotations are available.
Users should inspect `np.load(path).files` for the exact keys available in a given clip.
## Loading Example
```python
import json
import os
import numpy as np
root = "/path/to/HumanTracker"
with open(os.path.join(root, "train.json"), "r", encoding="utf-8") as f:
train_manifest = json.load(f)
sample = train_manifest[0]
clip = np.load(os.path.join(root, sample["path"]), allow_pickle=False)
qpos = clip["qpos"]
qvel = clip["qvel"]
print(sample["category"], sample["frames"], qpos.shape, qvel.shape)
print("available keys:", clip.files)
```
The JSON manifests can also be loaded with Hugging Face Datasets:
```python
from datasets import load_dataset
dataset = load_dataset(
"json",
data_files={"train": "train.json", "test": "test.json"},
)
```
The loaded Hugging Face rows contain manifest metadata. Use the `path` field to load the corresponding `.npz` array file.
## PreferencePair
HumanTracker also includes a 12K pairwise human preference set for preference-aligned motion tracking evaluation. Each pair compares two synchronized humanoid tracking rollouts for the same reference segment and stores the human preference label.
The preference data is stored under `PreferencePair/` in RobotVisAnalyse-compatible Parquet files. Each Parquet row contains the following top-level columns:
- `record_id`: anonymized record identifier.
- `timestamp`: release timestamp placeholder.
- `winner`: one of `left`, `right`, `similar`, or `bad_traj`.
- `invalid`: whether the pair is marked invalid.
- `left_label` and `right_label`: anonymized side identifiers.
- `record_json`: the full pair record, including left/right trajectory arrays, metadata, flags, and comparison settings.
The release includes four mirror variants for each annotated comparison:
- original pair
- left trajectory mirrored
- right trajectory mirrored
- both trajectories mirrored
This augmentation preserves the pairwise preference label while improving left/right symmetry coverage for reward-model training and evaluation.
The trajectory payloads follow the same field structure used by RobotVisAnalyse preference records, including robot state, reference state, action, contact, keypoint, navigation, and `qpos` signals where available. Original capture filenames, annotator names, source paths, and policy names are not included in the public `PreferencePair` metadata.
The side-level `policy` fields are intentionally left empty in the public preference records.
## Intended Uses
This dataset is intended for:
- Research on humanoid motion tracking and whole-body imitation.
- Benchmark prototyping and data-loader development.
- Category-aware analysis of motion tracking performance across daily, agile, ground-level, and interaction motions.
- Reproducible examples for robot-space reference trajectory loading.
## Out-of-Scope Uses
This dataset should not be used to identify, profile, or re-identify performers. It is not a dataset of RGB videos, audio, biometric identity labels, or human-subject identity annotations.
## Privacy and Anonymization Notes
The release uses anonymized filenames of the form `<category>_<index>.npz`. Original capture filenames, performer names, and capture-session names are not included in the manifest paths.
Because the dataset contains human motion trajectories, users should still treat the data as human-subject motion data and follow the applicable license, consent, and institutional requirements for their use case.
## Licensing
Use of this dataset is governed by the license terms included in this repository.
## Citation
If you use this dataset, please cite the HumanTracker project:
```bibtex
@misc{liu2026humantracker,
title = {HumanTracker: Towards Comprehensive and Human-Aligned Motion Tracking Benchmark},
author = {HumanTracker Team},
year = {2026},
note = {Project page}
}
```
|