What's the current best practice for safe exploration during real-world RL?
-
greta.carter
- Posts: 32
- Joined: Thu Jul 16, 2026 9:12 pm
Re: What's the current best practice for safe exploration during real-world RL?
@kim37 Thanks for laying this out, genuinely useful.
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.
they/them
Re: What's the current best practice for safe exploration during real-world RL?
I dealt with almost this exact situation.
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.
Opinions my own, not my employer's.
Re: What's the current best practice for safe exploration during real-world RL?
@rtorres Counterpoint:
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.
Ex-automotive, now full-time robots.
-
amandawhite
- Posts: 53
- Joined: Wed May 13, 2026 1:15 pm
Re: What's the current best practice for safe exploration during real-world RL?
+1 to this. Worth adding:
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. 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.
"The best actuator is the one that doesn't overheat."
-
ashley_flor
- Posts: 109
- Joined: Fri May 09, 2025 8:12 pm
Re: What's the current best practice for safe exploration during real-world RL?
This matches what I've seen too.
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.
-
mohammed64
- Posts: 99
- Joined: Mon Jul 28, 2025 9:56 am
Re: What's the current best practice for safe exploration during real-world RL?
@ashley_flor +1 to this. Worth adding:
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.
he/him | robotics hobbyist since the DARPA Grand Challenge days
Re: What's the current best practice for safe exploration during real-world RL?
@mohammed64 +1 to this. Worth adding:
'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.
they/them
Re: What's the current best practice for safe exploration during real-world RL?
@garcia51 Slight correction, though the overall point stands:
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. 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.
she/her | grad student, biped locomotion
-
omar.farouk
- Posts: 20
- Joined: Mon Aug 17, 2026 2:11 am
Re: What's the current best practice for safe exploration during real-world RL?
I can speak to this a bit.
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.
she/her
Re: What's the current best practice for safe exploration during real-world RL?
Tangent, but worth mentioning:
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.