Page 2 of 4
Re: Anyone comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Sat Jan 17, 2026 11:21 pm
by charlesbianchi
@zoeanderson Ran into exactly this myself.
Whole-body control (WBC) formulates locomotion and manipulation as a single optimization problem across all joints simultaneously, respecting contact constraints and task priorities - it's more general than ZMP-only approaches but is computationally heavier and harder to tune.
Re: Anyone comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Sun Jan 18, 2026 3:05 pm
by emma_whit
@charlesbianchi Short answer:
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 comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Wed Jan 21, 2026 3:03 pm
by rao91
Same conclusion I've come to. Also worth noting:
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.
Re: Anyone comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Sun Feb 01, 2026 4:48 am
by erik_novi
@rao91 Thanks for laying this out, genuinely useful.
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.
Reminds me a bit of the early drone hobbyist scene, honestly.
Re: Anyone comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Tue Feb 03, 2026 5:13 am
by mia_lars
Here's what I know on this:
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 comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Tue Feb 10, 2026 8:44 am
by tariqlarsen
This lines up with my experience.
ROS2 remains common in research and early-stage products for its tooling and ecosystem, but a number of production humanoid companies run custom, more tightly-optimized middleware for their real-time control loops, using ROS2-like tooling mainly for development, visualization, and non-real-time subsystems. 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 comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Thu Feb 12, 2026 11:37 pm
by yuki71
@tariqlarsen I don't think that's quite right, for what it's worth.
A lot of what reads as 'full autonomy' in public demos is closer to a mix of scripted state machines, teleoperation for the hardest sub-tasks, and autonomous execution for the easier, well-rehearsed parts - transparency about this mix varies a lot between companies.
Re: Anyone comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Sun Feb 15, 2026 11:03 am
by deborahperez
@yuki71 One nitpick -
'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. 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: Anyone comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Wed Feb 25, 2026 12:35 pm
by byang
@deborahperez Slightly off-topic, but related:
A lot of what reads as 'full autonomy' in public demos is closer to a mix of scripted state machines, teleoperation for the hardest sub-tasks, and autonomous execution for the easier, well-rehearsed parts - transparency about this mix varies a lot between companies.
Re: Anyone comparing PPO vs newer RL algorithms specifically for humanoid gait?
Posted: Fri Feb 27, 2026 10:19 pm
by diego.moore6
@byang Slight correction, though the overall point stands:
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.