Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding FR5 Embodiments #18

Merged
merged 7 commits into from
Nov 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/reproduce.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ This will automatically create directory under under `scalingup/wandb/` for stor
The codebase supports domain randomization at data generation time.
To enable it, add `env/domain_rand_config=all`.
For example,
```
python scalingup/inference.py evaluation.num_episodes=50000 policy=scalingup evaluation=drawer env/domain_rand_config=all
```sh
python scalingup/inference.py evaluation.num_episodes=50000 policy=scalingup evaluation=drawer env/domain_rand_config=all env.domain_rand_config.dtd_root=/home/mo/scalingup/dtd/ # `mo` is my dog's name 🐕
```

After [running data generation](#data-generation), you can run training using the following command
Expand Down
1 change: 1 addition & 0 deletions scalingup/config/common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ obs_cameras:
- front
- top_down
- ur5e/wsg50/d435i/rgb
# - fr5/robotiq_2f85/d435i/rgb
main_cam: front # this is used in visibility checker
obs_dim:
- 160
Expand Down
2 changes: 2 additions & 0 deletions scalingup/config/evaluation/bin_transport_train.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ sampler_config:
max_time: 100 # in seconds
env:
_target_: scalingup.environment.mujoco.bin_grasping.TableTopBinGraspingMujocoEnv
# FR5 + Robotiq85 Env
# _target_: scalingup.environment.mujoco.bin_grasping.TableTopBinGraspingFR5Robotiq85MujocoEnv
bin_x_offset: 0.0
min_bin_y_dist: 0.22
max_bin_y_dist: 0.24
Expand Down
1 change: 1 addition & 0 deletions scalingup/config/evaluation/table_top.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ sampler_config:

env:
_target_: scalingup.environment.mujoco.table_top_pick_and_place.TableTopPickAndPlace
# _target_: scalingup.environment.mujoco.table_top_pick_and_place.TableTopPickAndPlaceFR5Robotiq85
obj_instance_configs: []

task_sampler:
Expand Down
Loading