Page 2 of 3

Re: Anyone using hierarchical RL for combined locomotion and manipulation?

Posted: Sun Aug 23, 2026 4:43 pm
by olga24
@novak49 Genuinely curious - Vision-Language-Action (VLA) models like RT-2, OpenVLA, and Physical Intelligence's pi0 unify a vision-language backbone with an action-output head, letting a robot map a camera image and a text instruction directly to motor commands instead of hand-coding separate perception and planning stages. 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 using hierarchical RL for combined locomotion and manipulation?

Posted: Mon Aug 24, 2026 6:12 pm
by thomas65
@olga24 That's the official framing, at least - reality tends to lag a bit. 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. Vision-Language-Action (VLA) models like RT-2, OpenVLA, and Physical Intelligence's pi0 unify a vision-language backbone with an action-output head, letting a robot map a camera image and a text instruction directly to motor commands instead of hand-coding separate perception and planning stages.

Re: Anyone using hierarchical RL for combined locomotion and manipulation?

Posted: Mon Aug 24, 2026 7:13 pm
by omar.farouk
@thomas65 Here's the relevant bit as far as I understand it: Balance-recovery controllers are usually evaluated with push-recovery tests (a known, repeatable lateral push) in demos, but real-world robustness also depends on recovering from unstructured events like uneven flooring, unexpected contact, or a dropped payload shifting the center of mass mid-stride - which is a much harder, less demo-friendly test. 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. Kind of makes me think about how different this all looked even three years ago.

Re: Anyone using hierarchical RL for combined locomotion and manipulation?

Posted: Sun Aug 30, 2026 11:59 am
by garcia51
@omar.farouk Minor factual note: 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. 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.

Re: Anyone using hierarchical RL for combined locomotion and manipulation?

Posted: Sun Aug 30, 2026 11:59 am
by lukas.singh1
@garcia51 Same conclusion I've come to. Also worth noting: 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. 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. Kind of makes me think about how different this all looked even three years ago.

Re: Anyone using hierarchical RL for combined locomotion and manipulation?

Posted: Sun Aug 30, 2026 11:59 am
by ethan_fisc
Still learning the space, so correct me if wrong - 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.

Re: Anyone using hierarchical RL for combined locomotion and manipulation?

Posted: Sun Aug 30, 2026 11:59 am
by zoeanderson
I'd frame this differently. 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.

Re: Anyone using hierarchical RL for combined locomotion and manipulation?

Posted: Sun Aug 30, 2026 11:59 am
by forgecam45
From hands-on experience, Balance-recovery controllers are usually evaluated with push-recovery tests (a known, repeatable lateral push) in demos, but real-world robustness also depends on recovering from unstructured events like uneven flooring, unexpected contact, or a dropped payload shifting the center of mass mid-stride - which is a much harder, less demo-friendly test.

Re: Anyone using hierarchical RL for combined locomotion and manipulation?

Posted: Sun Aug 30, 2026 11:59 am
by emily.walker2
Small correction on one detail: 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 using hierarchical RL for combined locomotion and manipulation?

Posted: Sun Aug 30, 2026 11:59 am
by ananya.novak
Not to derail, but this reminds me of something adjacent: 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. Vision-Language-Action (VLA) models like RT-2, OpenVLA, and Physical Intelligence's pi0 unify a vision-language backbone with an action-output head, letting a robot map a camera image and a text instruction directly to motor commands instead of hand-coding separate perception and planning stages.