Page 4 of 4
Re: Anyone working on multi-robot coordination for humanoids specifically?
Posted: Wed Apr 15, 2026 4:00 pm
by scott.andersson5
@shill This matches something I went through recently.
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. 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.
Re: Anyone working on multi-robot coordination for humanoids specifically?
Posted: Sun Apr 19, 2026 1:29 am
by garcia51
@scott.andersson5 Respectfully, I think this undersells it a bit.
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. 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.
Re: Anyone working on multi-robot coordination for humanoids specifically?
Posted: Tue Apr 28, 2026 11:02 am
by nicole57
@garcia51 Speaking from personal experience 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.
Re: Anyone working on multi-robot coordination for humanoids specifically?
Posted: Sun May 10, 2026 1:36 am
by gary.tanaka2
Can I ask a dumb follow-up -
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: Anyone working on multi-robot coordination for humanoids specifically?
Posted: Fri May 15, 2026 12:46 am
by lbianchi
@gary.tanaka2 Just to be precise about one thing:
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. Isaac Lab (the successor to Isaac Gym) is widely used for large-scale parallel RL training thanks to GPU-accelerated physics, while MuJoCo is often used as a secondary 'sim-to-sim' validation step because its contact dynamics are generally considered more realistic than Isaac's, even though it trains slower at scale.
Anyway, good thread - following for more.