TL;DR
Prior flow-matching and diffusion policies in reinforcement learning require many sequential denoising steps at inference, creating computational bottlenecks in online RL where agents learn while interacting. Score-Based One-step MeanFlow Policy Optimization (SOM) constructs target velocity fields directly from Q-function estimates, enabling single-step policy generation.
✦ Why It Matters
Engineers can deploy faster RL policies in real-time control tasks by using single-step generation instead of iterative denoising.
Key Takeaways
How It Works
SOM constructs the target velocity field directly from the Q-function, which estimates the expected future rewards for actions. By using score estimation and a probability flow ODE, SOM effectively directs the learning process towards high-value actions, allowing for a single-step generation that bypasses the need for multiple denoising steps.
Related