Skip to content

Commit 846e380

Browse files
authored
[Doc] Fix HF download ckpts and closedloop cmd (#457)
Cherrypick doc fixes applied to `demos/dli` for `main`. It shall trigger doc built.
1 parent c37f49d commit 846e380

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/pages/example_workflows/sequential_static_manipulation/step_5_evaluation.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ pre-trained model checkpoint below:
2828

2929
.. code-block:: bash
3030
31+
mkdir -p $MODELS_DIR/checkpoint-20000
3132
hf download \
3233
nvidia/GN1.6-Tuned-Arena-GR1-PlaceItemCloseDoor-Task \
3334
--include "ranch_bottle_into_fridge/*" \
3435
--repo-type model \
35-
--local-dir $MODELS_DIR/checkpoint-20000
36+
--local-dir $MODELS_DIR/_hf_download
37+
mv $MODELS_DIR/_hf_download/ranch_bottle_into_fridge/* $MODELS_DIR/checkpoint-20000/
38+
rm -rf $MODELS_DIR/_hf_download
3639
3740
3841
Step 1: Run Single Environment Evaluation
@@ -239,7 +242,7 @@ A sequential batch of jobs, i.e. different tasks, objects, embodiments or polici
239242
It minimizes the overhead of reloading system modules and environment classes for each job while keeping the simulation application alive.
240243
The evaluation batch can be specified in a config file, with examples shown below.
241244

242-
.. dropdown:: Configuration file (``gr1_sequential_static_manip_eval_jobs_config.yaml``):
245+
.. dropdown:: Configuration file (``gr1_sequential_static_manip_eval_jobs_config.json``):
243246
:animate: fade-in
244247

245248
.. code-block:: json

0 commit comments

Comments
 (0)