Page 1 of 5
What's the current best practice for safe exploration during real-world RL?
Posted: Mon Apr 13, 2026 11:19 pm
by noah_pate
Ran into this exact question at work this week and wanted a sanity check.
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. 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.
Open to being corrected on the specifics.
Re: What's the current best practice for safe exploration during real-world RL?
Posted: Tue Apr 14, 2026 4:37 am
by rebecca_lefe
+1 to this. Worth adding:
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: What's the current best practice for safe exploration during real-world RL?
Posted: Tue Apr 14, 2026 6:22 am
by hill23
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. 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: What's the current best practice for safe exploration during real-world RL?
Posted: Tue Apr 14, 2026 9:22 am
by arjunsanchez
@hill23 One nitpick -
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. 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.
Re: What's the current best practice for safe exploration during real-world RL?
Posted: Tue Apr 14, 2026 10:48 am
by nschmidt
@arjunsanchez Not to derail, but this reminds me of something adjacent:
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: What's the current best practice for safe exploration during real-world RL?
Posted: Wed Apr 15, 2026 12:41 pm
by forgecam45
Slightly off-topic, but related:
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: What's the current best practice for safe exploration during real-world RL?
Posted: Fri Apr 17, 2026 2:34 pm
by giulia.roberts4
Here's what I know on this:
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. 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: What's the current best practice for safe exploration during real-world RL?
Posted: Sun Apr 19, 2026 3:29 pm
by carol.robinson
@giulia.roberts4 I'll believe the stronger version of that claim when it's independently verified.
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: What's the current best practice for safe exploration during real-world RL?
Posted: Mon Apr 20, 2026 12:53 am
by nicole57
Yeah, this tracks with what I've read as well.
'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. 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: What's the current best practice for safe exploration during real-world RL?
Posted: Wed Apr 22, 2026 6:00 am
by ssantos
Minor factual note:
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.