AI Pulse by Inblix

Parameter noise cuts RL training time in half on HalfCheetah

OpenAI Blog · Jul 20, 2026 · 2 min read · Read original article →

Curated by the Inblix editorial team


Featured image for article: Parameter noise cuts RL training time in half on HalfCheetah

Throwing carefully calibrated noise at a neural network’s weights, rather than its actions, can dramatically speed up how fast robots learn to walk, run, and make decisions. OpenAI’s latest research shows that this technique, called parameter space noise, doubled the score of a reinforcement learning agent on the HalfCheetah Gym environment after just 20 episodes—hitting around 3,000 compared to 1,500 using traditional action noise.

This isn’t just random twiddling. Parameter noise injects adaptive randomness directly into the policy’s neural network parameters, making an agent’s exploration consistent across multiple timesteps instead of the jittery, moment-to-moment unpredictability you get from action space noise. The approach sits in a sweet spot between evolution strategies, which tweak parameters but don’t learn from individual actions during a rollout, and standard deep RL algorithms like TRPO and DDPG that only add noise at the action level.

Making this work reliably meant solving three practical headaches. Different network layers have wildly different sensitivities to perturbation, and those sensitivities shift as training progresses. Picking the right noise scale is also deeply unintuitive when you’re working in parameter space. The team used layer normalization to keep perturbed layer outputs within a sane distribution, then built an adaptive scheme that measures the perturbation’s effect in action space—a much more interpretable domain—and adjusts accordingly.

OpenAI is releasing baseline code that bakes this technique into DQN, Double DQN, Dueling DQN, Dueling Double DQN, and DDPG. An interesting footnote: early experiments required a separate policy head to prevent DQN’s Q-function perturbations from causing the agent to get stuck repeating the same action. Later testing revealed that improvement was an artifact of how noise rescaling was handled, not the extra head. Dropping it made the algorithm simpler, cheaper, and equally performant. It’s a blunt reminder that RL algorithms can fail in subtle, silent ways—and that clean code often beats clever architecture.

💡 Key Takeaways

  1. Agents trained with parameter noise on HalfCheetah achieved roughly double the score of action-noise-trained agents after the same 20-episode training period.
  2. Parameter noise makes exploration temporally consistent across timesteps, unlike action noise which injects unpredictability at each individual step.
  3. An adaptive noise-scaling scheme that measures impact in action space solved the problem of choosing appropriate perturbation magnitudes for parameter space.
  4. A separate policy head initially thought necessary for DQN turned out to be an artifact of a noise rescaling issue, leading to a simpler final algorithm.

Keep reading: See related articles below for more coverage on this topic.

Get smarter about AI

The sharpest AI news, curated daily. Delivered free to your inbox.

Learn more

Glossary terms

← Back to all articles