Skip to content

Commit 9c814ec

Browse files
committed
remove pinocchio from docs
1 parent c062f86 commit 9c814ec

File tree

1 file changed

+4
-15
lines changed

1 file changed

+4
-15
lines changed

docs/source/overview/imitation-learning/humanoids_imitation.rst

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ Collect five demonstrations by running the following command:
8282
--task Isaac-PickPlace-GR1T2-Abs-v0 \
8383
--visualizer kit \
8484
--device cpu \
85-
--enable_pinocchio \
8685
--teleop_device handtracking \
8786
--num_demos 5 \
8887
--dataset_file ./datasets/dataset_gr1.hdf5
@@ -105,7 +104,6 @@ You can replay the collected demonstrations by running the following command:
105104
--task Isaac-PickPlace-GR1T2-Abs-v0 \
106105
--visualizer kit \
107106
--device cpu \
108-
--enable_pinocchio \
109107
--dataset_file ./datasets/dataset_gr1.hdf5
110108
111109
.. note::
@@ -135,7 +133,6 @@ Annotate the demonstrations by running the following command:
135133
--task Isaac-PickPlace-GR1T2-Abs-Mimic-v0 \
136134
--visualizer kit \
137135
--device cpu \
138-
--enable_pinocchio \
139136
--input_file ./datasets/dataset_gr1.hdf5 \
140137
--output_file ./datasets/dataset_annotated_gr1.hdf5
141138
@@ -174,7 +171,6 @@ Place the file under ``IsaacLab/datasets`` and run the following command to gene
174171
--device cpu \
175172
--headless \
176173
--num_envs 20 \
177-
--enable_pinocchio \
178174
--generation_num_trials 1000 \
179175
--input_file ./datasets/dataset_annotated_gr1.hdf5 \
180176
--output_file ./datasets/generated_dataset_gr1.hdf5
@@ -210,7 +206,6 @@ Visualize the results of the trained policy by running the following command, us
210206
--task Isaac-PickPlace-GR1T2-Abs-v0 \
211207
--visualizer kit \
212208
--device cpu \
213-
--enable_pinocchio \
214209
--num_rollouts 50 \
215210
--horizon 400 \
216211
--norm_factor_min <NORM_FACTOR_MIN> \
@@ -281,7 +276,6 @@ generated using Isaac Lab Mimic for the ``Isaac-NutPour-GR1T2-Pink-IK-Abs-Mimic-
281276
--task Isaac-NutPour-GR1T2-Pink-IK-Abs-v0 \
282277
--visualizer kit \
283278
--device cpu \
284-
--enable_pinocchio \
285279
--teleop_device handtracking \
286280
--num_demos 5 \
287281
--dataset_file ./datasets/dataset_gr1_nut_pouring.hdf5
@@ -295,7 +289,6 @@ generated using Isaac Lab Mimic for the ``Isaac-NutPour-GR1T2-Pink-IK-Abs-Mimic-
295289
--visualizer kit \
296290
--enable_cameras \
297291
--device cpu \
298-
--enable_pinocchio \
299292
--input_file ./datasets/dataset_gr1_nut_pouring.hdf5 \
300293
--output_file ./datasets/dataset_annotated_gr1_nut_pouring.hdf5
301294
@@ -314,7 +307,6 @@ generated using Isaac Lab Mimic for the ``Isaac-NutPour-GR1T2-Pink-IK-Abs-Mimic-
314307
--enable_cameras \
315308
--device cpu \
316309
--headless \
317-
--enable_pinocchio \
318310
--generation_num_trials 1000 \
319311
--num_envs 5 \
320312
--input_file ./datasets/dataset_annotated_gr1_nut_pouring.hdf5 \
@@ -359,7 +351,6 @@ Visualize the results of the trained policy by running the following command, us
359351
--visualizer kit \
360352
--device cpu \
361353
--enable_cameras \
362-
--enable_pinocchio \
363354
--num_rollouts 50 \
364355
--horizon 350 \
365356
--norm_factor_min <NORM_FACTOR_MIN> \
@@ -444,7 +435,7 @@ Follow the same data collection, annotation, and generation process as demonstra
444435
--task Isaac-PickPlace-Locomanipulation-G1-Abs-v0 \
445436
--teleop_device handtracking \
446437
--dataset_file ./datasets/dataset_g1_locomanip.hdf5 \
447-
--num_demos 5 --enable_pinocchio
438+
--num_demos 5
448439
449440
.. note::
450441

@@ -457,7 +448,7 @@ Follow the same data collection, annotation, and generation process as demonstra
457448
./isaaclab.sh -p scripts/tools/replay_demos.py \
458449
--device cpu \
459450
--task Isaac-PickPlace-Locomanipulation-G1-Abs-v0 \
460-
--dataset_file ./datasets/dataset_g1_locomanip.hdf5 --enable_pinocchio
451+
--dataset_file ./datasets/dataset_g1_locomanip.hdf5
461452
462453
To annotate the demonstrations:
463454

@@ -467,7 +458,7 @@ Follow the same data collection, annotation, and generation process as demonstra
467458
--device cpu \
468459
--task Isaac-Locomanipulation-G1-Abs-Mimic-v0 \
469460
--input_file ./datasets/dataset_g1_locomanip.hdf5 \
470-
--output_file ./datasets/dataset_annotated_g1_locomanip.hdf5 --enable_pinocchio
461+
--output_file ./datasets/dataset_annotated_g1_locomanip.hdf5
471462
472463
473464
If you skipped the prior collection and annotation step, download the pre-recorded annotated dataset ``dataset_annotated_g1_locomanip.hdf5`` from
@@ -477,7 +468,7 @@ Place the file under ``IsaacLab/datasets`` and run the following command to gene
477468
.. code:: bash
478469
479470
./isaaclab.sh -p scripts/imitation_learning/isaaclab_mimic/generate_dataset.py \
480-
--device cpu --headless --num_envs 20 --generation_num_trials 1000 --enable_pinocchio \
471+
--device cpu --headless --num_envs 20 --generation_num_trials 1000 \
481472
--input_file ./datasets/dataset_annotated_g1_locomanip.hdf5 --output_file ./datasets/generated_dataset_g1_locomanip.hdf5
482473
483474
@@ -502,7 +493,6 @@ Visualize the trained policy performance:
502493
503494
./isaaclab.sh -p scripts/imitation_learning/robomimic/play.py \
504495
--device cpu \
505-
--enable_pinocchio \
506496
--task Isaac-PickPlace-Locomanipulation-G1-Abs-v0 \
507497
--num_rollouts 50 \
508498
--horizon 400 \
@@ -563,7 +553,6 @@ To generate the locomanipulation dataset, use the following command:
563553
--num_runs 1 \
564554
--lift_step 60 \
565555
--navigate_step 130 \
566-
--enable_pinocchio \
567556
--output_file ./datasets/generated_dataset_g1_locomanipulation_sdg.hdf5 \
568557
--enable_cameras
569558

0 commit comments

Comments
 (0)