Anyone got good results combining classical footstep planning with a learned recovery policy?

Whole-body control, RL policies, VLA models, sim-to-real, ROS2, and the software stack that makes a humanoid actually walk and act.
elarsen
Posts: 15
Joined: Mon Aug 17, 2026 6:34 am

Re: Anyone got good results combining classical footstep planning with a learned recovery policy?

Post by elarsen »

This matches something I went through recently. 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. 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.
she/her
rivera14
Posts: 54
Joined: Thu Mar 19, 2026 1:48 am

Re: Anyone got good results combining classical footstep planning with a learned recovery policy?

Post by rivera14 »

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. 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.
Ex-automotive, now full-time robots.
johnrossi
Posts: 119
Joined: Thu Jun 19, 2025 2:39 am

Re: Anyone got good results combining classical footstep planning with a learned recovery policy?

Post by johnrossi »

@rivera14 This is exactly the kind of context I was looking for. 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
rossi30
Posts: 179
Joined: Sat Feb 15, 2025 7:49 am

Re: Anyone got good results combining classical footstep planning with a learned recovery policy?

Post by rossi30 »

Ran into exactly this myself. 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. 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.
"The best actuator is the one that doesn't overheat."
lperez
Posts: 55
Joined: Wed Jan 28, 2026 1:50 pm

Re: Anyone got good results combining classical footstep planning with a learned recovery policy?

Post by lperez »

@rossi30 Pretty much this. One thing to add: 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. 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. Kind of makes me think about how different this all looked even three years ago.
she/her
arjunsanchez
Posts: 74
Joined: Sun Nov 23, 2025 3:20 am

Re: Anyone got good results combining classical footstep planning with a learned recovery policy?

Post by arjunsanchez »

@lperez This matches something I went through recently. 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.
he/him | robotics hobbyist since the DARPA Grand Challenge days
rossi30
Posts: 179
Joined: Sat Feb 15, 2025 7:49 am

Re: Anyone got good results combining classical footstep planning with a learned recovery policy?

Post by rossi30 »

@arjunsanchez Small correction on one detail: 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.
"The best actuator is the one that doesn't overheat."
Post Reply