Update inputs: engineering/humanoid_wbc_policy_evaluation/base
Browse files- tasks/engineering/humanoid_wbc_policy_evaluation/base/input/output_schema.json +113 -0
- tasks/engineering/humanoid_wbc_policy_evaluation/base/input/policy_cases.json +84 -0
- tasks/engineering/humanoid_wbc_policy_evaluation/base/input/runtime_env/mjlab.zip +3 -0
- tasks/engineering/humanoid_wbc_policy_evaluation/base/input/runtime_env/mjlab_env_export.txt +161 -0
- tasks/engineering/humanoid_wbc_policy_evaluation/base/input/runtime_env/motions-1.zip +3 -0
- tasks/engineering/humanoid_wbc_policy_evaluation/base/input/runtime_env/policies.zip +3 -0
- tasks/engineering/humanoid_wbc_policy_evaluation/base/input/task_brief.md +28 -0
tasks/engineering/humanoid_wbc_policy_evaluation/base/input/output_schema.json
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
| 3 |
+
"title": "Humanoid whole-body-control policy evaluation report",
|
| 4 |
+
"type": "object",
|
| 5 |
+
"additionalProperties": false,
|
| 6 |
+
"required": [
|
| 7 |
+
"task_id",
|
| 8 |
+
"evaluations",
|
| 9 |
+
"summary"
|
| 10 |
+
],
|
| 11 |
+
"properties": {
|
| 12 |
+
"task_id": {
|
| 13 |
+
"const": "humanoid_wbc_policy_evaluation"
|
| 14 |
+
},
|
| 15 |
+
"evaluations": {
|
| 16 |
+
"type": "array",
|
| 17 |
+
"minItems": 8,
|
| 18 |
+
"maxItems": 8,
|
| 19 |
+
"items": {
|
| 20 |
+
"type": "object",
|
| 21 |
+
"additionalProperties": false,
|
| 22 |
+
"required": [
|
| 23 |
+
"case_id",
|
| 24 |
+
"motion",
|
| 25 |
+
"mjlab_task",
|
| 26 |
+
"motion_file",
|
| 27 |
+
"checkpoint_file",
|
| 28 |
+
"verdict",
|
| 29 |
+
"confidence",
|
| 30 |
+
"evidence"
|
| 31 |
+
],
|
| 32 |
+
"properties": {
|
| 33 |
+
"case_id": {
|
| 34 |
+
"type": "string"
|
| 35 |
+
},
|
| 36 |
+
"motion": {
|
| 37 |
+
"type": "string"
|
| 38 |
+
},
|
| 39 |
+
"mjlab_task": {
|
| 40 |
+
"type": "string"
|
| 41 |
+
},
|
| 42 |
+
"motion_file": {
|
| 43 |
+
"type": "string"
|
| 44 |
+
},
|
| 45 |
+
"checkpoint_file": {
|
| 46 |
+
"type": "string"
|
| 47 |
+
},
|
| 48 |
+
"verdict": {
|
| 49 |
+
"enum": [
|
| 50 |
+
"successful",
|
| 51 |
+
"nearly_successful",
|
| 52 |
+
"failed"
|
| 53 |
+
]
|
| 54 |
+
},
|
| 55 |
+
"confidence": {
|
| 56 |
+
"type": "number",
|
| 57 |
+
"minimum": 0,
|
| 58 |
+
"maximum": 1
|
| 59 |
+
},
|
| 60 |
+
"evidence": {
|
| 61 |
+
"type": "object",
|
| 62 |
+
"additionalProperties": false,
|
| 63 |
+
"required": [
|
| 64 |
+
"observation",
|
| 65 |
+
"visual_demo_path"
|
| 66 |
+
],
|
| 67 |
+
"properties": {
|
| 68 |
+
"observation": {
|
| 69 |
+
"type": "string",
|
| 70 |
+
"minLength": 20
|
| 71 |
+
},
|
| 72 |
+
"visual_demo_path": {
|
| 73 |
+
"type": "string",
|
| 74 |
+
"pattern": "^visual_demos/[A-Za-z0-9_\\-]+\\.(mp4|webm|gif|html)$"
|
| 75 |
+
},
|
| 76 |
+
"notes": {
|
| 77 |
+
"type": "string"
|
| 78 |
+
}
|
| 79 |
+
}
|
| 80 |
+
}
|
| 81 |
+
}
|
| 82 |
+
}
|
| 83 |
+
},
|
| 84 |
+
"summary": {
|
| 85 |
+
"type": "object",
|
| 86 |
+
"additionalProperties": false,
|
| 87 |
+
"required": [
|
| 88 |
+
"successful",
|
| 89 |
+
"nearly_successful",
|
| 90 |
+
"failed",
|
| 91 |
+
"overall_notes"
|
| 92 |
+
],
|
| 93 |
+
"properties": {
|
| 94 |
+
"successful": {
|
| 95 |
+
"type": "integer",
|
| 96 |
+
"minimum": 0
|
| 97 |
+
},
|
| 98 |
+
"nearly_successful": {
|
| 99 |
+
"type": "integer",
|
| 100 |
+
"minimum": 0
|
| 101 |
+
},
|
| 102 |
+
"failed": {
|
| 103 |
+
"type": "integer",
|
| 104 |
+
"minimum": 0
|
| 105 |
+
},
|
| 106 |
+
"overall_notes": {
|
| 107 |
+
"type": "string",
|
| 108 |
+
"minLength": 20
|
| 109 |
+
}
|
| 110 |
+
}
|
| 111 |
+
}
|
| 112 |
+
}
|
| 113 |
+
}
|
tasks/engineering/humanoid_wbc_policy_evaluation/base/input/policy_cases.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"cases": [
|
| 3 |
+
{
|
| 4 |
+
"case_id": "case_01_veo_walk_flat_kwxg9y8l",
|
| 5 |
+
"motion": "veo-test-2-walk",
|
| 6 |
+
"mjlab_task": "Mjlab-Tracking-Flat-Unitree-G1",
|
| 7 |
+
"motion_file": "motions/veo-test-2-walk.npz",
|
| 8 |
+
"checkpoint_file": "policies/1.veo-test-2-walk_kwxg9y8l.pt",
|
| 9 |
+
"play_command": "uv run play Mjlab-Tracking-Flat-Unitree-G1 --agent trained --motion-file motions/veo-test-2-walk.npz --checkpoint-file policies/1.veo-test-2-walk_kwxg9y8l.pt --no-terminations True --strict False --cpu",
|
| 10 |
+
"video_command": "uv run play Mjlab-Tracking-Flat-Unitree-G1 --agent trained --motion-file motions/veo-test-2-walk.npz --checkpoint-file policies/1.veo-test-2-walk_kwxg9y8l.pt --no-terminations True --strict False --cpu --video --video-length 200 --video-height 720 --video-width 1280",
|
| 11 |
+
"expected_demo_path": "visual_demos/case_01_veo_walk_flat_kwxg9y8l.mp4"
|
| 12 |
+
},
|
| 13 |
+
{
|
| 14 |
+
"case_id": "case_02_male_walk_hop_flat_em349tfj",
|
| 15 |
+
"motion": "male_walk_hop",
|
| 16 |
+
"mjlab_task": "Mjlab-Tracking-Flat-Unitree-G1",
|
| 17 |
+
"motion_file": "motions/male_walk_hop.npz",
|
| 18 |
+
"checkpoint_file": "policies/2.male_walk_hop_em349tfj.pt",
|
| 19 |
+
"play_command": "uv run play Mjlab-Tracking-Flat-Unitree-G1 --agent trained --motion-file motions/male_walk_hop.npz --checkpoint-file policies/2.male_walk_hop_em349tfj.pt --no-terminations True --strict False --cpu",
|
| 20 |
+
"video_command": "uv run play Mjlab-Tracking-Flat-Unitree-G1 --agent trained --motion-file motions/male_walk_hop.npz --checkpoint-file policies/2.male_walk_hop_em349tfj.pt --no-terminations True --strict False --cpu --video --video-length 200 --video-height 720 --video-width 1280",
|
| 21 |
+
"expected_demo_path": "visual_demos/case_02_male_walk_hop_flat_em349tfj.mp4"
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"case_id": "case_03_sitting_chair_7zlbjqi4",
|
| 25 |
+
"motion": "sitting",
|
| 26 |
+
"mjlab_task": "Mjlab-Tracking-Chair-Unitree-G1",
|
| 27 |
+
"motion_file": "motions/sitting.npz",
|
| 28 |
+
"checkpoint_file": "policies/3.sitting_7zlbjqi4.pt",
|
| 29 |
+
"play_command": "uv run play Mjlab-Tracking-Chair-Unitree-G1 --agent trained --motion-file motions/sitting.npz --checkpoint-file policies/3.sitting_7zlbjqi4.pt --no-terminations True --strict False --cpu",
|
| 30 |
+
"video_command": "uv run play Mjlab-Tracking-Chair-Unitree-G1 --agent trained --motion-file motions/sitting.npz --checkpoint-file policies/3.sitting_7zlbjqi4.pt --no-terminations True --strict False --cpu --video --video-length 200 --video-height 720 --video-width 1280",
|
| 31 |
+
"expected_demo_path": "visual_demos/case_03_sitting_chair_7zlbjqi4.mp4"
|
| 32 |
+
},
|
| 33 |
+
{
|
| 34 |
+
"case_id": "case_04_gemini_chair_step_m1d7v37h",
|
| 35 |
+
"motion": "gemini_walk_and_sit",
|
| 36 |
+
"mjlab_task": "Mjlab-Tracking-ChairAndStep-Unitree-G1",
|
| 37 |
+
"motion_file": "motions/gemini_walk_and_sit_correct.npz",
|
| 38 |
+
"checkpoint_file": "policies/4.gemini_walk_and_sit_m1d7v37h.pt",
|
| 39 |
+
"play_command": "uv run play Mjlab-Tracking-ChairAndStep-Unitree-G1 --agent trained --motion-file motions/gemini_walk_and_sit_correct.npz --checkpoint-file policies/4.gemini_walk_and_sit_m1d7v37h.pt --no-terminations True --strict False --cpu",
|
| 40 |
+
"video_command": "uv run play Mjlab-Tracking-ChairAndStep-Unitree-G1 --agent trained --motion-file motions/gemini_walk_and_sit_correct.npz --checkpoint-file policies/4.gemini_walk_and_sit_m1d7v37h.pt --no-terminations True --strict False --cpu --video --video-length 200 --video-height 720 --video-width 1280",
|
| 41 |
+
"expected_demo_path": "visual_demos/case_04_gemini_chair_step_m1d7v37h.mp4"
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"case_id": "case_05_lowstairs_0dk7n238",
|
| 45 |
+
"motion": "lowstairs",
|
| 46 |
+
"mjlab_task": "Mjlab-Tracking-lowstairs-Unitree-G1",
|
| 47 |
+
"motion_file": "motions/lowstairs.npz",
|
| 48 |
+
"checkpoint_file": "policies/5.lowstairs_0dk7n238.pt",
|
| 49 |
+
"play_command": "uv run play Mjlab-Tracking-lowstairs-Unitree-G1 --agent trained --motion-file motions/lowstairs.npz --checkpoint-file policies/5.lowstairs_0dk7n238.pt --no-terminations True --cpu",
|
| 50 |
+
"video_command": "uv run play Mjlab-Tracking-lowstairs-Unitree-G1 --agent trained --motion-file motions/lowstairs.npz --checkpoint-file policies/5.lowstairs_0dk7n238.pt --no-terminations True --cpu --video --video-length 200 --video-height 720 --video-width 1280",
|
| 51 |
+
"expected_demo_path": "visual_demos/case_05_lowstairs_0dk7n238.mp4"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"case_id": "case_06_lowstairs_vdd319dz",
|
| 55 |
+
"motion": "lowstairs",
|
| 56 |
+
"mjlab_task": "Mjlab-Tracking-lowstairs-Unitree-G1",
|
| 57 |
+
"motion_file": "motions/lowstairs.npz",
|
| 58 |
+
"checkpoint_file": "policies/6.lowstairs_vdd319dz.pt",
|
| 59 |
+
"play_command": "uv run play Mjlab-Tracking-lowstairs-Unitree-G1 --agent trained --motion-file motions/lowstairs.npz --checkpoint-file policies/6.lowstairs_vdd319dz.pt --no-terminations True --cpu",
|
| 60 |
+
"video_command": "uv run play Mjlab-Tracking-lowstairs-Unitree-G1 --agent trained --motion-file motions/lowstairs.npz --checkpoint-file policies/6.lowstairs_vdd319dz.pt --no-terminations True --cpu --video --video-length 200 --video-height 720 --video-width 1280",
|
| 61 |
+
"expected_demo_path": "visual_demos/case_06_lowstairs_vdd319dz.mp4"
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"case_id": "case_07_lowstairs_cyyp71b5",
|
| 65 |
+
"motion": "lowstairs",
|
| 66 |
+
"mjlab_task": "Mjlab-Tracking-lowstairs-Unitree-G1",
|
| 67 |
+
"motion_file": "motions/lowstairs.npz",
|
| 68 |
+
"checkpoint_file": "policies/7.lowstairs_cyyp71b5.pt",
|
| 69 |
+
"play_command": "uv run play Mjlab-Tracking-lowstairs-Unitree-G1 --agent trained --motion-file motions/lowstairs.npz --checkpoint-file policies/7.lowstairs_cyyp71b5.pt --no-terminations True --cpu",
|
| 70 |
+
"video_command": "uv run play Mjlab-Tracking-lowstairs-Unitree-G1 --agent trained --motion-file motions/lowstairs.npz --checkpoint-file policies/7.lowstairs_cyyp71b5.pt --no-terminations True --cpu --video --video-length 200 --video-height 720 --video-width 1280",
|
| 71 |
+
"expected_demo_path": "visual_demos/case_07_lowstairs_cyyp71b5.mp4"
|
| 72 |
+
},
|
| 73 |
+
{
|
| 74 |
+
"case_id": "case_08_fall_getup_flat_os6wfu5w",
|
| 75 |
+
"motion": "fallAndGetUp1",
|
| 76 |
+
"mjlab_task": "Mjlab-Tracking-Flat-Unitree-G1",
|
| 77 |
+
"motion_file": "motions/fallAndGetUp1.npz",
|
| 78 |
+
"checkpoint_file": "policies/8.fallAndGetUp1_os6wfu5w.pt",
|
| 79 |
+
"play_command": "uv run play Mjlab-Tracking-Flat-Unitree-G1 --agent trained --motion-file motions/fallAndGetUp1.npz --checkpoint-file policies/8.fallAndGetUp1_os6wfu5w.pt --no-terminations True --cpu",
|
| 80 |
+
"video_command": "uv run play Mjlab-Tracking-Flat-Unitree-G1 --agent trained --motion-file motions/fallAndGetUp1.npz --checkpoint-file policies/8.fallAndGetUp1_os6wfu5w.pt --no-terminations True --cpu --video --video-length 200 --video-height 720 --video-width 1280",
|
| 81 |
+
"expected_demo_path": "visual_demos/case_08_fall_getup_flat_os6wfu5w.mp4"
|
| 82 |
+
}
|
| 83 |
+
]
|
| 84 |
+
}
|
tasks/engineering/humanoid_wbc_policy_evaluation/base/input/runtime_env/mjlab.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23f4d52df7fea3dcc33ddd55fab38d084704eea99c59e702203b9de88650ef0b
|
| 3 |
+
size 217733393
|
tasks/engineering/humanoid_wbc_policy_evaluation/base/input/runtime_env/mjlab_env_export.txt
ADDED
|
@@ -0,0 +1,161 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
absl-py==2.3.1
|
| 2 |
+
annotated-types==0.7.0
|
| 3 |
+
anyio==4.11.0
|
| 4 |
+
asttokens==3.0.0
|
| 5 |
+
attrs==25.4.0
|
| 6 |
+
bcrypt==5.0.0
|
| 7 |
+
certifi==2025.10.5
|
| 8 |
+
cffi==2.0.0
|
| 9 |
+
cfgv==3.4.0
|
| 10 |
+
charset-normalizer==3.4.4
|
| 11 |
+
click==8.3.0
|
| 12 |
+
cloudpickle==3.1.1
|
| 13 |
+
colorlog==6.10.1
|
| 14 |
+
contourpy==1.3.3
|
| 15 |
+
cryptography==46.0.3
|
| 16 |
+
cycler==0.12.1
|
| 17 |
+
decorator==5.2.1
|
| 18 |
+
Deprecated==1.3.1
|
| 19 |
+
distlib==0.4.0
|
| 20 |
+
docstring_parser==0.17.0
|
| 21 |
+
embreex==2.17.7.post6
|
| 22 |
+
etils==1.13.0
|
| 23 |
+
executing==2.2.1
|
| 24 |
+
fabric==3.2.2
|
| 25 |
+
filelock==3.20.0
|
| 26 |
+
fonttools==4.61.1
|
| 27 |
+
fsspec==2025.9.0
|
| 28 |
+
gitdb==4.0.12
|
| 29 |
+
GitPython==3.1.45
|
| 30 |
+
glfw==2.10.0
|
| 31 |
+
grpcio==1.76.0
|
| 32 |
+
h11==0.16.0
|
| 33 |
+
httpcore==1.0.9
|
| 34 |
+
httpx==0.28.1
|
| 35 |
+
identify==2.6.15
|
| 36 |
+
idna==3.11
|
| 37 |
+
imageio==2.37.0
|
| 38 |
+
imageio-ffmpeg==0.6.0
|
| 39 |
+
importlib_metadata==8.7.0
|
| 40 |
+
importlib_resources==6.5.2
|
| 41 |
+
iniconfig==2.3.0
|
| 42 |
+
invoke==2.2.1
|
| 43 |
+
ipdb==0.13.13
|
| 44 |
+
ipython==9.6.0
|
| 45 |
+
ipython_pygments_lexers==1.1.1
|
| 46 |
+
jedi==0.19.2
|
| 47 |
+
Jinja2==3.1.6
|
| 48 |
+
jsonschema==4.25.1
|
| 49 |
+
jsonschema-specifications==2025.9.1
|
| 50 |
+
kiwisolver==1.4.9
|
| 51 |
+
lxml==6.0.2
|
| 52 |
+
manifold3d==3.2.1
|
| 53 |
+
mapbox_earcut==1.0.3
|
| 54 |
+
Markdown==3.9
|
| 55 |
+
markdown-it-py==3.0.0
|
| 56 |
+
MarkupSafe==3.0.3
|
| 57 |
+
matplotlib==3.10.8
|
| 58 |
+
matplotlib-inline==0.1.7
|
| 59 |
+
mdurl==0.1.2
|
| 60 |
+
mediapy==1.2.6
|
| 61 |
+
mjlab==1.1.1
|
| 62 |
+
ml_dtypes==0.5.3
|
| 63 |
+
mpmath==1.3.0
|
| 64 |
+
msgspec==0.19.0
|
| 65 |
+
mujoco==3.7.0.dev886334046
|
| 66 |
+
mujoco-warp==3.5.0.2
|
| 67 |
+
networkx==3.5
|
| 68 |
+
nodeenv==1.9.1
|
| 69 |
+
numpy==2.3.4
|
| 70 |
+
nvidia-cublas-cu12==12.8.4.1
|
| 71 |
+
nvidia-cuda-cupti-cu12==12.8.90
|
| 72 |
+
nvidia-cuda-nvrtc-cu12==12.8.93
|
| 73 |
+
nvidia-cuda-runtime-cu12==12.8.90
|
| 74 |
+
nvidia-cudnn-cu12==9.10.2.21
|
| 75 |
+
nvidia-cufft-cu12==11.3.3.83
|
| 76 |
+
nvidia-cufile-cu12==1.13.1.3
|
| 77 |
+
nvidia-curand-cu12==10.3.9.90
|
| 78 |
+
nvidia-cusolver-cu12==11.7.3.90
|
| 79 |
+
nvidia-cusparse-cu12==12.5.8.93
|
| 80 |
+
nvidia-cusparselt-cu12==0.7.1
|
| 81 |
+
nvidia-nccl-cu12==2.27.5
|
| 82 |
+
nvidia-nvjitlink-cu12==12.8.93
|
| 83 |
+
nvidia-nvshmem-cu12==3.3.20
|
| 84 |
+
nvidia-nvtx-cu12==12.8.90
|
| 85 |
+
onnx==1.19.1
|
| 86 |
+
onnx-ir==0.1.11
|
| 87 |
+
onnxscript==0.5.4
|
| 88 |
+
packaging==25.0
|
| 89 |
+
paramiko==4.0.0
|
| 90 |
+
parso==0.8.5
|
| 91 |
+
pexpect==4.9.0
|
| 92 |
+
pillow==11.3.0
|
| 93 |
+
platformdirs==4.5.0
|
| 94 |
+
pluggy==1.6.0
|
| 95 |
+
pre_commit==4.3.0
|
| 96 |
+
prettytable==3.16.0
|
| 97 |
+
prompt_toolkit==3.0.52
|
| 98 |
+
protobuf==6.33.0
|
| 99 |
+
ptyprocess==0.7.0
|
| 100 |
+
pure_eval==0.2.3
|
| 101 |
+
pybullet==3.2.7
|
| 102 |
+
pycollada==0.9.2
|
| 103 |
+
pycparser==2.23
|
| 104 |
+
pydantic==2.12.3
|
| 105 |
+
pydantic_core==2.41.4
|
| 106 |
+
Pygments==2.19.2
|
| 107 |
+
pymeshlab==2025.7.post1
|
| 108 |
+
PyNaCl==1.6.1
|
| 109 |
+
PyOpenGL==3.1.10
|
| 110 |
+
pyparsing==3.3.2
|
| 111 |
+
pyright==1.1.408
|
| 112 |
+
pytest==9.0.2
|
| 113 |
+
python-dateutil==2.9.0.post0
|
| 114 |
+
pyvers==0.1.0
|
| 115 |
+
PyYAML==6.0.3
|
| 116 |
+
referencing==0.37.0
|
| 117 |
+
requests==2.32.5
|
| 118 |
+
rich==14.2.0
|
| 119 |
+
rpds-py==0.27.1
|
| 120 |
+
rsl-rl-lib==4.0.1
|
| 121 |
+
rtree==1.4.1
|
| 122 |
+
ruff==0.14.14
|
| 123 |
+
scipy==1.16.2
|
| 124 |
+
sentry-sdk==2.42.1
|
| 125 |
+
setuptools==80.9.0
|
| 126 |
+
shapely==2.1.2
|
| 127 |
+
six==1.17.0
|
| 128 |
+
smmap==5.0.2
|
| 129 |
+
sniffio==1.3.1
|
| 130 |
+
stack-data==0.6.3
|
| 131 |
+
svg.path==7.0
|
| 132 |
+
sympy==1.14.0
|
| 133 |
+
tensorboard==2.20.0
|
| 134 |
+
tensorboard-data-server==0.7.2
|
| 135 |
+
tensordict==0.10.0
|
| 136 |
+
torch==2.9.0
|
| 137 |
+
torchrunx==0.3.4
|
| 138 |
+
torchvision==0.24.0
|
| 139 |
+
tqdm==4.67.1
|
| 140 |
+
traitlets==5.14.3
|
| 141 |
+
trimesh==4.8.3
|
| 142 |
+
triton==3.5.0
|
| 143 |
+
ty==0.0.14
|
| 144 |
+
typeguard==4.4.4
|
| 145 |
+
typing-inspection==0.4.2
|
| 146 |
+
typing_extensions==4.15.0
|
| 147 |
+
tyro==1.0.1
|
| 148 |
+
urllib3==2.5.0
|
| 149 |
+
vhacdx==0.0.8.post2
|
| 150 |
+
virtualenv==20.35.3
|
| 151 |
+
viser==1.0.24
|
| 152 |
+
wandb==0.22.3
|
| 153 |
+
warp-lang==1.12.0.dev20260206
|
| 154 |
+
wcwidth==0.2.14
|
| 155 |
+
websockets==15.0.1
|
| 156 |
+
Werkzeug==3.1.3
|
| 157 |
+
wrapt==2.0.1
|
| 158 |
+
xxhash==3.6.0
|
| 159 |
+
yourdfpy==0.0.58
|
| 160 |
+
zipp==3.23.0
|
| 161 |
+
zstandard==0.25.0
|
tasks/engineering/humanoid_wbc_policy_evaluation/base/input/runtime_env/motions-1.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4012516fca3335aa90b74aea90e52ef60c3e4492b1ccd2d73d61c8a4f6b3c623
|
| 3 |
+
size 16163449
|
tasks/engineering/humanoid_wbc_policy_evaluation/base/input/runtime_env/policies.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a65dee5594067198cbe82d80e5e7c89a7dc9e357284d9dff29bf82e38dc3660
|
| 3 |
+
size 49752719
|
tasks/engineering/humanoid_wbc_policy_evaluation/base/input/task_brief.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Humanoid Whole-Body-Control Policy Evaluation
|
| 2 |
+
|
| 3 |
+
Evaluate the 8 Unitree G1 motion-tracking policy cases listed in
|
| 4 |
+
`policy_cases.json`. The required motion files and policy checkpoints are
|
| 5 |
+
provided locally in `input/runtime_env/motions-1.zip` and
|
| 6 |
+
`input/runtime_env/policies.zip`; do not log in to W&B and do not fetch private
|
| 7 |
+
W&B artifacts.
|
| 8 |
+
|
| 9 |
+
For each case, unpack the mjlab runtime archive and the two asset zips into your
|
| 10 |
+
working directory, run or inspect the listed `play_command`, watch the policy
|
| 11 |
+
behavior against the reference motion, save a visible motion demo, and classify
|
| 12 |
+
it as one of:
|
| 13 |
+
|
| 14 |
+
- `successful`: smooth, stable, and close enough to the reference throughout the task
|
| 15 |
+
- `nearly_successful`: mostly completes the motion but has visible instability,
|
| 16 |
+
delay, offset, or a late-stage tracking failure
|
| 17 |
+
- `failed`: falls immediately, slides sideways, becomes unrecoverable, or cannot
|
| 18 |
+
execute the intended motion in any meaningful way
|
| 19 |
+
|
| 20 |
+
If a command includes `--strict False`, keep that option exactly as written.
|
| 21 |
+
The command paths in `policy_cases.json` are relative paths after extracting
|
| 22 |
+
`motions-1.zip` and `policies.zip` into the mjlab working directory. If you
|
| 23 |
+
extract them elsewhere, replace only the file paths with your local extracted
|
| 24 |
+
paths while preserving the other command flags.
|
| 25 |
+
|
| 26 |
+
Write one JSON file named `policy_evaluation_report.json` in the runtime output
|
| 27 |
+
directory, plus a `visual_demos/` directory containing one visible demo artifact
|
| 28 |
+
per case. The file must validate against `output_schema.json`.
|