Anyone got good results combining classical footstep planning with a learned recovery policy?
Re: Anyone got good results combining classical footstep planning with a learned recovery policy?
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
Re: Anyone got good results combining classical footstep planning with a learned recovery policy?
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.
Re: Anyone got good results combining classical footstep planning with a learned recovery policy?
@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
Re: Anyone got good results combining classical footstep planning with a learned recovery policy?
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."
Re: Anyone got good results combining classical footstep planning with a learned recovery policy?
@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?
@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
Re: Anyone got good results combining classical footstep planning with a learned recovery policy?
@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."