exptech commited on
Commit
a9e4769
·
verified ·
1 Parent(s): dfe606f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +13 -11
README.md CHANGED
@@ -21,17 +21,17 @@ size_categories:
21
 
22
  > **Dataset** (you are here) · **[Showcase](https://huggingface.co/spaces/exptech/g1-moves)** (interactive gallery) · **[Code](https://github.com/experientialtech/g1-moves)** (scripts & docs)
23
 
24
- 60 motion capture clips for the Unitree G1 humanoid robot (29 DOF, mode 15), captured with [MOVIN TRACIN](https://movin3d.com/) markerless motion capture and [video2robot](https://github.com/experientialtech/video2robot) monocular video extraction. Each clip is provided at multiple pipeline stages: raw mocap (BVH/FBX), retargeted robot joint trajectories (PKL), processed RL training data (NPZ), and trained ONNX policies with baked-in observation normalization.
25
 
26
  ## Dataset Summary
27
 
28
  | | |
29
  |---|---|
30
  | **Total clips** | 60 |
31
- | **Total duration** | 29.5 minutes (106,149 frames at 60 FPS) |
32
  | **Categories** | Dance (28), Karate (27), Bonus (5) |
33
  | **Clip duration** | 6.5s - 119.5s |
34
- | **Robot** | Unitree G1, mode 15, 29 DOF |
35
  | **Capture system** | MOVIN TRACIN (markerless, LiDAR + vision) |
36
  | **Retarget SDK** | [movin_sdk_python](https://github.com/MOVIN3D/movin_sdk_python) |
37
 
@@ -65,8 +65,9 @@ Each clip lives in its own subfolder organized by pipeline stage:
65
  <clip>.npz Training data with forward kinematics
66
  <clip>_training.gif Training visualization
67
  <clip>_training.mp4 Training visualization video
68
- policy/ Trained RL policy (if available)
69
  <clip>_policy.pt PyTorch checkpoint
 
70
  <clip>_policy.gif Policy rollout animation
71
  <clip>_policy.mp4 Policy rollout video
72
  agent.yaml PPO hyperparameters
@@ -223,6 +224,7 @@ print("Least energetic:", by_energy[-1][0])
223
  | `B_` | [Mitch Chaiet](https://mitchchaiet.com/) | Bonus clips + some dance |
224
  | `J_` | [Jasmine Coro](https://jasminecoro.com/) | Dance choreography |
225
  | `M_` | [Mike Gassaway](https://www.backstage.com/u/mike-gassaway/) | Karate / martial arts |
 
226
 
227
  ### Processing Pipeline
228
 
@@ -230,7 +232,7 @@ print("Least energetic:", by_energy[-1][0])
230
  2. **Retarget**: [movin_sdk_python](https://github.com/MOVIN3D/movin_sdk_python) maps human skeleton to G1 joint limits (1.75m human height)
231
  3. **Ground calibration**: MuJoCo forward kinematics finds minimum foot Z, shifts root for ground contact
232
  4. **Training data**: MuJoCo computes full-body forward kinematics (positions, orientations, velocities)
233
- 5. **RL training**: PPO with motion imitation rewards in MuJoCo-Warp (4096 parallel envs)
234
 
235
  ## Metadata Files
236
 
@@ -242,16 +244,16 @@ print("Least energetic:", by_energy[-1][0])
242
 
243
  ## Training Quality
244
 
245
- 44 of 60 clips have trained RL policies. Aggregate metrics across all trained policies:
246
 
247
  | Metric | Mean | Min | Max |
248
  |--------|------|-----|-----|
249
- | Reward | 39.7 | 33.1 | 45.6 |
250
- | Episode length | 493 / 500 | 458 | 500 |
251
- | Body position error | 0.045 m | 0.031 m | 0.078 m |
252
- | Joint position error | 0.56 rad | 0.42 rad | 0.85 rad |
253
 
254
- Each policy directory contains a `training_log.csv` with per-iteration metrics (rewards, losses, tracking errors, termination rates).
255
 
256
  ## Standalone Inference
257
 
 
21
 
22
  > **Dataset** (you are here) · **[Showcase](https://huggingface.co/spaces/exptech/g1-moves)** (interactive gallery) · **[Code](https://github.com/experientialtech/g1-moves)** (scripts & docs)
23
 
24
+ 60 motion capture clips for the Unitree G1 humanoid robot (edition EDU, 29 DOF), captured from real performers in Austin, TX using [MOVIN TRACIN](https://movin3d.com/) markerless motion capture and [video2robot](https://github.com/experientialtech/video2robot) monocular video extraction. Each clip is provided at multiple pipeline stages: raw mocap (BVH/FBX), retargeted robot joint trajectories (PKL), processed RL training data (NPZ), and trained ONNX policies with baked-in observation normalization. All 60 clips have trained RL policies and ONNX exports ready for deployment.
25
 
26
  ## Dataset Summary
27
 
28
  | | |
29
  |---|---|
30
  | **Total clips** | 60 |
31
+ | **Total duration** | 29.6 minutes (106,434 frames at 60 FPS) |
32
  | **Categories** | Dance (28), Karate (27), Bonus (5) |
33
  | **Clip duration** | 6.5s - 119.5s |
34
+ | **Robot** | Unitree G1, edition EDU, 29 DOF |
35
  | **Capture system** | MOVIN TRACIN (markerless, LiDAR + vision) |
36
  | **Retarget SDK** | [movin_sdk_python](https://github.com/MOVIN3D/movin_sdk_python) |
37
 
 
65
  <clip>.npz Training data with forward kinematics
66
  <clip>_training.gif Training visualization
67
  <clip>_training.mp4 Training visualization video
68
+ policy/ Trained RL policy
69
  <clip>_policy.pt PyTorch checkpoint
70
+ <clip>_policy.onnx ONNX export (baked-in observation normalization)
71
  <clip>_policy.gif Policy rollout animation
72
  <clip>_policy.mp4 Policy rollout video
73
  agent.yaml PPO hyperparameters
 
224
  | `B_` | [Mitch Chaiet](https://mitchchaiet.com/) | Bonus clips + some dance |
225
  | `J_` | [Jasmine Coro](https://jasminecoro.com/) | Dance choreography |
226
  | `M_` | [Mike Gassaway](https://www.backstage.com/u/mike-gassaway/) | Karate / martial arts |
227
+ | `V_` | [Maya Coro](https://www.backstage.com/u/maya-coro/) | Fencing (via video2robot) |
228
 
229
  ### Processing Pipeline
230
 
 
232
  2. **Retarget**: [movin_sdk_python](https://github.com/MOVIN3D/movin_sdk_python) maps human skeleton to G1 joint limits (1.75m human height)
233
  3. **Ground calibration**: MuJoCo forward kinematics finds minimum foot Z, shifts root for ground contact
234
  4. **Training data**: MuJoCo computes full-body forward kinematics (positions, orientations, velocities)
235
+ 5. **RL training**: PPO with motion imitation rewards in MuJoCo-Warp (8,192 parallel envs)
236
 
237
  ## Metadata Files
238
 
 
244
 
245
  ## Training Quality
246
 
247
+ All 60 clips have trained RL policies and ONNX exports. Aggregate metrics across all trained policies:
248
 
249
  | Metric | Mean | Min | Max |
250
  |--------|------|-----|-----|
251
+ | Reward | 40.1 | 20.6 | 45.6 |
252
+ | Episode length | 493 / 500 | 419 | 500 |
253
+ | Body position error | 0.044 m | 0.030 m | 0.108 m |
254
+ | Joint position error | 0.54 rad | 0.39 rad | 0.93 rad |
255
 
256
+ Each policy directory contains a `training_log.csv` with per-iteration metrics (rewards, losses, tracking errors, termination rates). ONNX exports include baked-in observation normalization (160 obs → [512, 256, 128] → 29 actions) for direct deployment without the training framework.
257
 
258
  ## Standalone Inference
259