dial-mpc

Official implementation for the paper "Full-Order Sampling-Based MPC for Torque-Level Locomotion Control via Diffusion-Style Annealing". DIAL-MPC is a novel sampling-based MPC framework for legged robot full-order torque-level control with both precision and agility in a training-free manner.

https://github.com/lecar-lab/dial-mpc

Science Score: 36.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
    Links to: arxiv.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.7%) to scientific vocabulary

Keywords

diffusion humanoid legged-robots mpc online-control optimal-control quadruped sampling-based-control
Last synced: 6 months ago · JSON representation

Repository

Official implementation for the paper "Full-Order Sampling-Based MPC for Torque-Level Locomotion Control via Diffusion-Style Annealing". DIAL-MPC is a novel sampling-based MPC framework for legged robot full-order torque-level control with both precision and agility in a training-free manner.

Basic Info
Statistics
  • Stars: 677
  • Watchers: 14
  • Forks: 78
  • Open Issues: 10
  • Releases: 1
Topics
diffusion humanoid legged-robots mpc online-control optimal-control quadruped sampling-based-control
Created over 1 year ago · Last pushed 9 months ago
Metadata Files
Readme License Citation

README.md

DIAL-MPC: Diffusion-Inspired Annealing For Legged MPC

ICRA 2025, Best Paper Finalist [[Website]](https://lecar-lab.github.io/dial-mpc/) [[PDF]](https://drive.google.com/file/d/1Z39MCvnl-Tdraon4xAj37iQYLsUh5UOV/view?usp=sharing) [[Arxiv]](https://arxiv.org/abs/2409.15610) [](https://github.com/google/jax) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

This repository contains the code (simulation and real-world experiments with minimum setup) for the paper "Full-Order Sampling-Based MPC for Torque-Level Locomotion Control via Diffusion-Style Annealing".

DIAL-MPC is a sampling-based MPC framework for legged robot full-order torque-level control with both precision and agility in a training-free manner. DIAL-MPC is designed to be simple and flexible, with minimal requirements for specific reward design and dynamics model. It directly samples and rolls out in physics-based simulations (Brax) and does not require reduced-order modeling, linearization, convexification, or predefined contact sequences. That means you can test out the controller in a plug-and-play manner with minimum setup.

News

  • 05/19/2025: New demo for ball-spinning on finger can be run with dial-mpc --example allegro_reorient.
  • 04/24/2025: DIAL-MPC made into the best paper final list of ICRA 2025.
  • 11/03/2024: Sim2Real pipeline is ready! Check out the Sim2Real section for more details.
  • 09/25/2024: DIAL-MPC is released with open-source codes! Sim2Real pipeline coming soon!

https://github.com/user-attachments/assets/f2e5f26d-69ac-4478-872e-26943821a218

Table of Contents

  1. Install
  2. Synchronous Simulation
  3. Asynchronous Simulation
  4. Deploy in Real
  5. Writing Your Own Environment
  6. Rendering Rollouts
  7. Citing this Work

Simulation Setup

Install dial-mpc

[!IMPORTANT] We recommend Ubuntu >= 20.04 + Python >= 3.10 + CUDA >= 12.3. You can create a mamba (or conda) environment before proceeding.

Our environment is Ubuntu 22.04 + Python 3.10 + CUDA 12.6.

bash git clone https://github.com/LeCar-Lab/dial-mpc.git --depth 1 cd dial-mpc pip3 install -e .

Synchronous Simulation

In this mode, the simulation will wait for DIAL-MPC to finish computing before stepping. It is ideal for debugging and doing tasks that are currently not real-time.

Run Examples

List available examples:

bash dial-mpc --list-examples

Run an example:

bash dial-mpc --example unitree_h1_jog

After rollout completes, go to 127.0.0.1:5000 to visualize the rollouts.

Asynchronous Simulation

The asynchronous simulation is meant to test the algorithm before Sim2Real. The simulation rolls out in real-time (or scaled by real_time_factor). DIAL-MPC will encounter delay in this case.

When DIAL-MPC cannot finish the compute in the time defined by dt, it will spit out warning. Slight overtime is accepetable as DIAL-MPC maintains a buffer of the previous step's solution and will play out the planned action sequence until the buffer runs out.

List available examples:

bash dial-mpc-sim --list-examples

Run an example:

In terminal 1, run

bash dial-mpc-sim --example unitree_go2_seq_jump_deploy This will open a mujoco visualization window.

In terminal 2, run

bash dial-mpc-plan --example unitree_go2_seq_jump_deploy

Deploy in Real (Unitree Go2)

Overview

The real-world deployment procedure is very similar to asynchronous simulation.

We use unitree_sdk2_python to communicate with the robot directly via CycloneDDS.

Step 1: State Estimation

For state estimation, this proof-of-concept work requires external localization module to get base position and velocity.

The following plugins are built-in:

  • ROS2 odometry message
  • Vicon motion capture system

Option 1: ROS2 odometry message

Configure odom_topic in the YAML file. You are responsible for publishing this message at at least 50 Hz and ideally over 100 Hz. We provide an odometry publisher for Vicon motion capture system in vicon_interface.

[!CAUTION] All velocities in ROS2 odometry message must be in body frame of the base to conform to ROS odometry message definition, although in the end they are converted to world frame in DIAL-MPC.

Option 2: Vicon (no ROS2 required)

  1. pip install pyvicon-datastream
  2. Change localization_plugin to vicon_shm_plugin in the YAML file.
  3. Configure vicon_tracker_ip, vicon_object_name, and vicon_z_offset in the YAML file.

Option 3: Bring Your Own Plugin

We provide a simple ABI for custom localization modules, and you need to implement this in a python file in your workspace, should you consider not using the built-in plugins.

```python import numpy as np import time from dialmpc.deploy.localization import registerplugin from dialmpc.deploy.localization.baseplugin import BaseLocalizationPlugin

class MyPlugin(BaseLocalizationPlugin): def init(self, config): pass

def get_state(self):
    qpos = np.zeros(7)
    qvel = np.zeros(6)
    return np.concatenate([qpos, qvel])

def get_last_update_time(self):
    return time.time()

registerplugin('customplugin', plugin_cls=MyPlugin) ```

[!CAUTION] When writing custom localization plugin, velocities should be reported in world frame.

[!NOTE] Angular velocity source is onboard IMU. You could leave qvel[3:6] in the returned state as zero for now.

Localization plugin can be changed in the configuration file. A --plugin argument can be supplied to dial-mpc-real to import a custom localization plugin in the current workspace.

Step 2: Installing unitree_sdk2_python

[!NOTE] If you are already using ROS2 with Cyclone DDS according to ROS2 documentation on Cyclone DDS, you don't have to install Cyclone DDS as suggested by unitree_sdk2_python. But do follow the rest of the instructions.

Follow the instructions in unitree_sdk2_python.

Step 3: Configuring DIAL-MPC

In dial_mpc/examples/unitree_go2_trot_deploy.yaml or dial_mpc/examples/unitree_go2_seq_jump.yaml, modify network_interface to match the name of the network interface connected to Go2.

Alternatively, you can also pass --network_interface to dial-mpc-real when launching the robot, which will override the config.

Step 4: Starting the Robot

Follow the official Unitree documentation to disable sports mode on Go2. Lay the robot flat on the ground like shown.

Unitree Go2 laying flat on the ground.

Step 5: Running the Robot

List available examples:

bash dial-mpc-real --list-examples

Run an example:

In terminal 1, run

```bash

source /opt/ros//setup.bash # if using ROS2

dial-mpc-real --example unitreego2seqjumpdeploy ```

This will open a mujoco visualization window. The robot will slowly stand up. If the robot is squatting, manually lift the robot into a standing position. Verify that the robot states match the real world and are updating.

You can supply additional arguments to dial-mpc-real:

  • --custom-env: custom environment definition.
  • --network-interface: override network interface configuration.
  • --plugin: custom localization plugin.

Next, in terminal 2, run

bash dial-mpc-plan --example unitree_go2_seq_jump_deploy

Writing Custom Environment

  1. If custom robot model is needed, Store it in dial_mpc/models/my_model/my_model.xml.
  2. Import the base environment and config.
  3. Implement required functions.
  4. Register environment.
  5. Configure config file.

Example environment file (my_env.py):

```python from dataclasses import dataclass

from brax import envs as brax_envs from brax.envs.base import State

from dialmpc.envs.baseenv import BaseEnv, BaseEnvConfig import dialmpc.envs as dialenvs

@dataclass class MyEnvConfig(BaseEnvConfig): arg1: 1.0 arg2: "test"

class MyEnv(BaseEnv): def init(self, config: MyEnvConfig): super().init(config) # custom initializations below...

def make_system(self, config: MyEnvConfig) -> System:
    model_path = ("my_model/my_model.xml")
    sys = mjcf.load(model_path)
    sys = sys.tree_replace({"opt.timestep": config.timestep})
    return sys

def reset(self, rng: jax.Array) -> State:
    # TODO: implement reset

def step(self, state: State, action: jax.Array) -> State:
    # TODO: implement step

braxenvs.registerenvironment("myenvname", MyEnv) dialenvs.registerconfig("myenvname", MyEnvConfig) ```

Example configuration file (my_env.yaml): ```yaml

DIAL-MPC

seed: 0 outputdir: dialmpcws/mymodel n_steps: 400

envname: myenvname Nsample: 2048 Hsample: 25 Hnode: 5 Ndiffuse: 4 Ndiffuseinit: 10 tempsample: 0.05 horizondiffusefactor: 1.0 trajdiffusefactor: 0.5 updatemethod: mppi

Base environment

dt: 0.02 timestep: 0.02 legcontrol: torque actionscale: 1.0

My Env

arg1: 2.0 arg2: "test_2" ```

Run the following command to use the custom environment in synchronous simulation. Make sure that my_env.py is in the same directory from which the command is run.

bash dial-mpc --config my_env.yaml --custom-env my_env

You can also run asynchronous simulation with the custom environment:

```bash

Terminal 1

dial-mpc-sim --config myenv.yaml --custom-env myenv

Terminal 2

dial-mpc-plan --config myenv.yaml --custom-env myenv ```

Rendering Rollouts in Blender

If you want better visualization, you can check out the render branch for the Blender visualization examples.

Acknowledgements

  • This codebase's environment and RL implementation is built on top of Brax.
  • We use Mujoco MJX for the physics engine.
  • Controller design and implementation is inspired by Model-based Diffusion.

BibTeX

If you find this code useful for your research, please consider citing:

bibtex @misc{xue2024fullordersamplingbasedmpctorquelevel, title={Full-Order Sampling-Based MPC for Torque-Level Locomotion Control via Diffusion-Style Annealing}, author={Haoru Xue and Chaoyi Pan and Zeji Yi and Guannan Qu and Guanya Shi}, year={2024}, eprint={2409.15610}, archivePrefix={arXiv}, primaryClass={cs.RO}, url={https://arxiv.org/abs/2409.15610}, }

Owner

  • Name: LeCAR-Lab
  • Login: LeCAR-Lab
  • Kind: organization

GitHub Events

Total
  • Create event: 8
  • Release event: 1
  • Issues event: 25
  • Watch event: 426
  • Delete event: 3
  • Member event: 1
  • Issue comment event: 32
  • Push event: 33
  • Pull request event: 8
  • Fork event: 58
Last Year
  • Create event: 8
  • Release event: 1
  • Issues event: 25
  • Watch event: 426
  • Delete event: 3
  • Member event: 1
  • Issue comment event: 32
  • Push event: 33
  • Pull request event: 8
  • Fork event: 58

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 13
  • Total pull requests: 3
  • Average time to close issues: about 22 hours
  • Average time to close pull requests: less than a minute
  • Total issue authors: 11
  • Total pull request authors: 2
  • Average comments per issue: 0.08
  • Average comments per pull request: 0.0
  • Merged pull requests: 2
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 13
  • Pull requests: 3
  • Average time to close issues: about 22 hours
  • Average time to close pull requests: less than a minute
  • Issue authors: 11
  • Pull request authors: 2
  • Average comments per issue: 0.08
  • Average comments per pull request: 0.0
  • Merged pull requests: 2
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • Ticotico410 (3)
  • MandiZhao (1)
  • Tadinu (1)
  • kevinzakka (1)
  • akashsharma02 (1)
  • rl180 (1)
  • Nickick-ICRS (1)
  • tom57-design (1)
  • Mr-Zqr (1)
  • lmr07 (1)
  • ajaytalati (1)
  • XuXinhangNTU (1)
  • DavideDDB23 (1)
  • YHFone (1)
  • Kehlani-Fay (1)
Pull Request Authors
  • HaoruXue (3)
  • nicolomonti (1)
  • XuXinhangNTU (1)
  • YHFone (1)
Top Labels
Issue Labels
good first issue (1)
Pull Request Labels
enhancement (1)

Dependencies

setup.py pypi
  • brax *
  • jax *
  • jax-cosmo *
  • matplotlib *
  • mujoco *
  • numpy *
  • tqdm *
  • tyro *