What's the current best practice for safe exploration during real-world RL?

Whole-body control, RL policies, VLA models, sim-to-real, ROS2, and the software stack that makes a humanoid actually walk and act.
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?

Post by greta.carter »

@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
rtorres
Posts: 54
Joined: Wed Mar 04, 2026 1:31 am

Re: What's the current best practice for safe exploration during real-world RL?

Post by rtorres »

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.
deborah59
Posts: 227
Joined: Mon Nov 18, 2024 9:37 am

Re: What's the current best practice for safe exploration during real-world RL?

Post by deborah59 »

@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?

Post by amandawhite »

+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?

Post by ashley_flor »

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?

Post by mohammed64 »

@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
garcia51
Posts: 94
Joined: Fri Oct 24, 2025 3:36 pm

Re: What's the current best practice for safe exploration during real-world RL?

Post by garcia51 »

@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
nicole57
Posts: 208
Joined: Wed Dec 04, 2024 1:29 am

Re: What's the current best practice for safe exploration during real-world RL?

Post by nicole57 »

@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?

Post by omar.farouk »

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
olga_lind
Posts: 170
Joined: Tue Dec 24, 2024 12:11 pm

Re: What's the current best practice for safe exploration during real-world RL?

Post by olga_lind »

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.
Post Reply