Page 3 of 3

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

Posted: Fri Dec 06, 2024 11:46 pm
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.

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

Posted: Tue Dec 10, 2024 5:20 am
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.

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

Posted: Fri Dec 13, 2024 6:52 am
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.

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

Posted: Sat Dec 14, 2024 9:54 am
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.

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

Posted: Thu Dec 26, 2024 4:19 am
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.

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

Posted: Sun Dec 29, 2024 10:03 am
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.

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

Posted: Mon Jan 06, 2025 4:53 am
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.

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

Posted: Tue Jan 07, 2025 5:49 am
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.