File size: 2,576 Bytes
c1f1d32 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
#!/bin/bash
# Store commands used to prepare source datasets for each environment.
# coffee
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/coffee.hdf5 \
--env_interface MG_Coffee \
--env_interface_type robosuite
# coffee_preparation
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/coffee_preparation.hdf5 \
--env_interface MG_CoffeePreparation \
--env_interface_type robosuite
# hammer_cleanup
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/hammer_cleanup.hdf5 \
--env_interface MG_HammerCleanup \
--env_interface_type robosuite
# kitchen
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/kitchen.hdf5 \
--env_interface MG_Kitchen \
--env_interface_type robosuite
# mug_cleanup
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/mug_cleanup.hdf5 \
--env_interface MG_MugCleanup \
--env_interface_type robosuite
# nut_assembly
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/nut_assembly.hdf5 \
--env_interface MG_NutAssembly \
--env_interface_type robosuite
# pick_place
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/pick_place.hdf5 \
--env_interface MG_PickPlace \
--env_interface_type robosuite
# square
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/square.hdf5 \
--env_interface MG_Square \
--env_interface_type robosuite
# stack
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/stack.hdf5 \
--env_interface MG_Stack \
--env_interface_type robosuite
# stack_three
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/stack_three.hdf5 \
--env_interface MG_StackThree \
--env_interface_type robosuite
# threading
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/threading.hdf5 \
--env_interface MG_Threading \
--env_interface_type robosuite
# three_piece_assembly
python prepare_src_dataset.py \
--dataset /home/siweih/Project/EmbodiedBM/mimicgen/datasets/source/three_piece_assembly.hdf5 \
--env_interface MG_ThreePieceAssembly \
--env_interface_type robosuite
|