Skip to content

nico-bohlinger/one_policy_to_run_them_all

Repository files navigation

One Policy to Run Them All: an End-to-end Learning Approach to Multi-Embodiment Locomotion

This repository provides the implementation for the paper:

One Policy to Run Them All: an End-to-end Learning Approach to Multi-Embodiment Locomotion
Nico Bohlinger, Grzegorz Czechmanowski, Maciej Krupka, Piotr Kicki, Krzysztof Walas, Jan Peters and Davide Tateo
Conference on Robot Learning, 2024
Paper / Project page / Video

Installation

  1. Install RL-X

Default installation for a Linux system with a NVIDIA GPU. For other configurations, see the RL-X documentation.

conda create -n one_policy_to_run_them_all python=3.11.4
conda activate one_policy_to_run_them_all
git clone [email protected]:nico-bohlinger/RL-X.git
cd RL-X
pip install -e .[all] --config-settings editable_mode=compat
pip uninstall $(pip freeze | grep -i '\-cu12' | cut -d '=' -f 1) -y
pip install "torch==2.2.1" --index-url https://download.pytorch.org/whl/cu118 --upgrade
pip install -U "jax[cuda12_pip]==0.4.25" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
  1. Install the project
git clone [email protected]:nico-bohlinger/one_policy_to_run_them_all.git
cd one_policy_to_run_them_all
pip install -e .

Note: If package versions are conflicting, due to newer versions of RL-X, modify RL-X's dependencies to align with the requirements.txt file in this repository as it contains the exact package versions used for this project.

Training a model

  1. Run the following commands to start an experiment
cd one_policy_to_run_them_all/experiments
sbatch experiment.sh

Testing a trained model

  1. Move the trained model to the experiments folder or use the pre_trained_model file
  2. Run the following commands to test a trained model
cd one_policy_to_run_them_all/experiments
bash test.sh

Controlling the robots

Either modify the commands.txt file, where the values are target x, y and yaw velocities, or connect a Xbox 360 controller and control the target x,y velocity with the left joystick and the yaw velocity with the right joystick.

To switch the robot, either change the robot id in the multi_render.txt file or press the LB and RB button on the controller.

Adding a new robot

  1. Copy an existing robot folder in the one_policy_to_run_them_all/environments directory
  2. Change the name of the folder and all imports in the files
  3. Update the XML and meshes in the data folder
  4. In the environment.py adjust the following variables: LONG_NAME, SHORT_NAME, nominal_joint_positions, max_joint_velocities, initial_drop_height, collision_groups, foot_names, joint_names, joint_nr_direct_child_joints and the joints_masks if present / needed (see Cassie robot environment)
  5. Adjust the reward coefficients and curriculum_steps in reward_functions/rudin_own_var.py
  6. Adjust the controller gains and scaling_factor in control_functions/rudin2022.py
  7. Adjust the foot geom indices in domain_randomization/mujoco_model_functions/default.py and domain_randomization/seen_robot_functions/default.py
  8. Adjust the domain randomization ranges in the domain_randomization folder

Citation

If you use or refer to this repository in your research, please cite:

@article{bohlinger2024onepolicy,
    title={One Policy to Run Them All: an End-to-end Learning Approach to Multi-Embodiment Locomotion},
    author={Bohlinger, Nico and Czechmanowski, Grzegorz and Krupka, Maciej and Kicki, Piotr and Walas, Krzysztof and Peters, Jan and Tateo, Davide},
    journal={Conference on Robot Learning},
    year={2024}
}

License

The robot assets and XML files do not belong to the authors of this repository. They are used for research purposes only and are not covered by the MIT license. The MIT license only covers the code in this repository.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published