Skip to content

Commit 71184d8

Browse files
cvolkcvolkxyao-nv
andauthored
Fix incorrect eval_config.json in DexSuite lift docs (#564)
## Summary - Fix the `eval_config.json` example in the DexSuite Kuka Allegro Lift evaluation docs to match the actual `eval_runner.py` schema (`jobs` array with `name`, `arena_env_args`, `policy_type`, `policy_config_dict`). Signed-off-by: Clemens Volk <cvolk@nvidia.com> Co-authored-by: Xinjie Yao <xyao@nvidia.com>
1 parent 72ef2b3 commit 71184d8

1 file changed

Lines changed: 24 additions & 13 deletions

File tree

docs/pages/example_workflows/dexsuite_lift/step_3_evaluation.rst

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -117,21 +117,32 @@ Create a file ``eval_config.json``:
117117
.. code-block:: json
118118
119119
{
120-
"policy_runner_args": {
121-
"presets": "newton",
122-
"policy_type": "rsl_rl",
123-
"num_steps": 5000,
124-
"num_envs": 64,
125-
"env_spacing": 3
126-
},
127-
"evaluations": [
120+
"jobs": [
128121
{
129-
"checkpoint_path": "models/isaaclab_arena/dexsuite_lift/model_7500.pt",
130-
"environment": "dexsuite_lift"
122+
"name": "dexsuite_lift_7500",
123+
"arena_env_args": {
124+
"environment": "dexsuite_lift",
125+
"num_envs": 64,
126+
"env_spacing": 3
127+
},
128+
"num_steps": 5000,
129+
"policy_type": "rsl_rl",
130+
"policy_config_dict": {
131+
"checkpoint_path": "models/isaaclab_arena/dexsuite_lift/model_7500.pt"
132+
}
131133
},
132134
{
133-
"checkpoint_path": "models/isaaclab_arena/dexsuite_lift/model_14999.pt",
134-
"environment": "dexsuite_lift"
135+
"name": "dexsuite_lift_14999",
136+
"arena_env_args": {
137+
"environment": "dexsuite_lift",
138+
"num_envs": 64,
139+
"env_spacing": 3
140+
},
141+
"num_steps": 5000,
142+
"policy_type": "rsl_rl",
143+
"policy_config_dict": {
144+
"checkpoint_path": "models/isaaclab_arena/dexsuite_lift/model_14999.pt"
145+
}
135146
}
136147
]
137148
}
@@ -140,7 +151,7 @@ Create a file ``eval_config.json``:
140151

141152
.. code-block:: bash
142153
143-
python isaaclab_arena/evaluation/eval_runner.py --eval_jobs_config eval_config.json
154+
python isaaclab_arena/evaluation/eval_runner.py --presets newton --eval_jobs_config eval_config.json
144155
145156
146157
Understanding the Metrics

0 commit comments

Comments
 (0)