Whole-body control vs ZMP-based approaches - what's actually deployed today?

Whole-body control, RL policies, VLA models, sim-to-real, ROS2, and the software stack that makes a humanoid actually walk and act.
nicole57
Posts: 208
Joined: Wed Dec 04, 2024 1:29 am

Re: Whole-body control vs ZMP-based approaches - what's actually deployed today?

Post by nicole57 »

This matches something I went through recently. Sim-to-real transfer still commonly breaks on contact dynamics - friction, restitution, and deformable/compliant surfaces are the hardest things to model accurately in simulation, so policies trained purely in sim often need real-world fine-tuning specifically around contact-rich tasks. This whole thread is a good reminder how young this field still is.
she/her | grad student, biped locomotion
erik_novi
Posts: 192
Joined: Sun Oct 13, 2024 6:23 am

Re: Whole-body control vs ZMP-based approaches - what's actually deployed today?

Post by erik_novi »

Thanks for laying this out, genuinely useful. Zero Moment Point (ZMP) control keeps the robot's center of pressure within its support polygon and has been the classical backbone of bipedal walking for two decades - it's robust and well-understood, but tends to produce a somewhat conservative, flat-footed gait compared to more dynamic approaches.
she/her
nicole57
Posts: 208
Joined: Wed Dec 04, 2024 1:29 am

Re: Whole-body control vs ZMP-based approaches - what's actually deployed today?

Post by nicole57 »

I'd frame this differently. Model predictive control (MPC) is still very much alive in production humanoids, often working alongside or underneath learned policies - MPC handles short-horizon dynamically-consistent trajectory optimization while learned components handle perception, task-level decisions, or recovery behaviors that are hard to hand-model.
she/her | grad student, biped locomotion
zoeanderson
Posts: 243
Joined: Sat Oct 26, 2024 2:39 am

Re: Whole-body control vs ZMP-based approaches - what's actually deployed today?

Post by zoeanderson »

Agreed, and I'd add: Domain randomization - varying friction, mass, sensor noise, and even visual textures during training - is one of the more reliable tricks for improving sim-to-real transfer, but overdoing it can make training slower to converge and produce overly conservative policies.
deborah59
Posts: 227
Joined: Mon Nov 18, 2024 9:37 am

Re: Whole-body control vs ZMP-based approaches - what's actually deployed today?

Post by deborah59 »

To answer this directly: Physical Intelligence's pi0 pairs a smaller pretrained vision-language backbone with a separate flow-matching 'action expert' module, which is one way to get fast, high-frequency action output without needing the whole giant language model to run at control-loop speed.
Ex-automotive, now full-time robots.
nicole57
Posts: 208
Joined: Wed Dec 04, 2024 1:29 am

Re: Whole-body control vs ZMP-based approaches - what's actually deployed today?

Post by nicole57 »

@deborah59 Worth being a little skeptical of the marketing angle here. Zero Moment Point (ZMP) control keeps the robot's center of pressure within its support polygon and has been the classical backbone of bipedal walking for two decades - it's robust and well-understood, but tends to produce a somewhat conservative, flat-footed gait compared to more dynamic approaches. Cross-embodiment training (training one policy across data from multiple different robot bodies) has shown some real transfer benefits for high-level behaviors, but low-level control (exact joint torques, timing) still tends to need embodiment-specific fine-tuning. This whole thread is a good reminder how young this field still is.
she/her | grad student, biped locomotion
dubois35
Posts: 280
Joined: Mon Sep 09, 2024 12:01 pm

Re: Whole-body control vs ZMP-based approaches - what's actually deployed today?

Post by dubois35 »

@nicole57 Counterpoint: OpenVLA is a notable open-source VLA model - roughly 7 billion parameters, trained on hundreds of thousands of real-world robot demonstrations - and has been shown to outperform much larger closed models on some manipulation benchmarks, which says a lot about how much of VLA performance comes from data curation rather than raw scale. 'Zero-shot sim-to-real' rarely means literally zero real-world tuning in practice - it usually means the policy transfers well enough to be usable with only calibration and minor safety-limit adjustments, rather than needing a full additional training phase on hardware.
they/them
ethan_fisc
Posts: 198
Joined: Wed Dec 04, 2024 1:36 am

Re: Whole-body control vs ZMP-based approaches - what's actually deployed today?

Post by ethan_fisc »

@dubois35 To answer this directly: OpenVLA is a notable open-source VLA model - roughly 7 billion parameters, trained on hundreds of thousands of real-world robot demonstrations - and has been shown to outperform much larger closed models on some manipulation benchmarks, which says a lot about how much of VLA performance comes from data curation rather than raw scale. Diffusion policies model the distribution of possible actions and sample from it, which handles multimodal manipulation tasks (multiple valid ways to grasp something) more naturally than a single deterministic action output, at the cost of slower inference.
Post Reply