REVIEW 3 cited by
FlowQ: Energy-Guided Flow Policies for Offline Reinforcement Learning
T0 review · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read FlowQ uses energy-guided flow matching to learn an offline RL policy approximating π(a|s) ∝ πβ(a|s) exp(Q(s,a)) with guidance applied during training rather than at inference.
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
The authors test FlowQ on 18 D4RL datasets covering locomotion, navigation, and manipulation. They report competitive average scores, especially on antmaze and adroit, and show a timing comparison where their policy update stays flat while DiffusionQL's grows with sampling steps. They also examine different time schedules for the energy weight and a learned schedule.
There are important caveats. The derivation assumes Q is locally linear along each path, which is unlikely to hold exactly. The paper selects the energy strength λ separately for each dataset, so the headline numbers partly reflect dataset-specific tuning.
Extended reading notes
Core claim
Section 4.2 states the central objective: FlowQ learns a policy "which satisfies π(at|st) ∝ πβ(at|st) exp(Q(st, at))". The implementation claims this is achieved by regressing a velocity network to the Gaussian-path target ût derived in Section 4.1, so no actions are sampled from the flow policy for the policy update. If correct, the policy update is a regression whose cost is constant in the number of flow sampling steps. The strongest version is that FlowQ both reaches the advantage-weighted target and delivers competitive D4RL performance with this constant-time update. As written, Algorithm 1 contradicts the objective by using -∇Q in the action target, so the claim as stated is not supported.
Load-bearing premise
The load-bearing modeling premise, distinct from the policy target, is that Q can be replaced by its first-order Taylor expansion around tx1 for every t, yielding the Gaussian shifted mean αc(t,x1)=t x1-(1-t)^2 λ(t) ∇Q(tx1). Section 4.1: "we approximate the energy function E(x) using a first-order Taylor expansion around the mean of pt(xt|x1): E(xt) ≈ E(tx1)+∇E(tx1)^T (xt − tx1)". If Q is strongly curved, which is typical for learned critics, the guided path is not Gaussian, the closed-form velocity field is wrong, and the policy departs from πβ exp(Q). The related assumption that the marginal path is p_t(x_t) exp(-λ(t)E(x_t)) is also imposed rather than derived (Appendix A.1).
Editorial analysis
A structured set of objections, weighed in public.
Assumptions & free parameters
free parameters (3)
- energy scale λ =
per-dataset, e.g. 1.0 (halfcheetah-medium), 0.01 (halfcheetah-medium-expert), 2.0 (antmaze-medium-play), 4.0…
- time schedule h(t) =
t^2/(1-t)
- domain-specific critic and reward preprocessing =
antmaze: critic [512,512,512,512]+GELU, CQL-style reward modification, max Q backup; adroit: standardized rewards
assumptions (4)
- ad hoc to paper Energy-guided marginal path satisfies phat_t(x_t) ∝ p_t(x_t) exp(-λ(t)E(x_t))
- ad hoc to paper First-order Taylor expansion of E around tx1 is accurate
- domain assumption Gaussian conditional paths pt(x_t|x1)=N(x_t; t x1, (1-t)^2 I)
- domain assumption Q-function is differentiable in action with available gradients and Hessian-vector products
Cite this review
Pith. "Pith review of FlowQ: Energy-Guided Flow Policies for Offline Reinforcement Learning." pith.science (2026). https://pith.science/paper/6XCDNUM3
@misc{pith2026250514139,
author = {Pith},
title = {Pith review of: FlowQ: Energy-Guided Flow Policies for Offline Reinforcement Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/6XCDNUM3}},
note = {Machine review of arXiv:2505.14139}
}
read the original abstract
The use of guidance to steer sampling toward desired outcomes has been widely explored within diffusion models, especially in applications such as image and trajectory generation. However, incorporating guidance during training remains relatively underexplored. In this work, we introduce energy-guided flow matching, a novel approach that enhances the training of flow models and eliminates the need for guidance at inference time. We learn a conditional velocity field corresponding to the flow policy by approximating an energy-guided probability path as a Gaussian path. Learning guided trajectories is appealing for tasks where the target distribution is defined by a combination of data and an energy function, as in reinforcement learning. Diffusion-based policies have recently attracted attention for their expressive power and ability to capture multi-modal action distributions. Typically, these policies are optimized using weighted objectives or by back-propagating gradients through actions sampled by the policy. As an alternative, we propose FlowQ, an offline reinforcement learning algorithm based on energy-guided flow matching. Our method achieves competitive performance while the policy training time is constant in the number of flow sampling steps.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 3 Pith papers
-
Collaborative Weighting with Pessimistic Critic for Mitigating Overestimation in Off-Policy Reinforcement Learning
A new actor-critic variant that reweights samples by TD-error and uncertainty and uses pessimistic sampled values improves continuous-control RL benchmark performance.
-
ReBRAC-v2: The Return of the King
A fixed-recipe offline RL method combining normalizing-flow actors, categorical critics, staged training, and test-time refinement beats recent flow-based baselines by 22.5 points averaged over ten OGBench categories.
-
ConFlow: Constraints-Guided Learning with Flow Matching for Motion Generation
Training on barrier-gradient-augmented flow targets plus a Gaussian-process source reduces collision rates in synthetic two-robot motion generation, particularly when infeasible demonstrations are included as negatives.
Reference graph
Works this paper leans on
-
[1]
Figure 5: Normalized return of FlowQ for the D4RL adroit environments using 5 seeds
Figure 4: Normalized return of FlowQ for the D4RL locomotion environments using 5 seeds. Figure 5: Normalized return of FlowQ for the D4RL adroit environments using 5 seeds. 15 Figure 6: Normalized return of FlowQ for the D4RL adroit environments using 5 seeds. F Results when using the best result during training evaluation method In addition to the runni...
work page 2025
-
[3]
9 Linjiajie Fang, Ruoxue Liu, Jing Zhang, Wenjia Wang, and Bing-Yi Jing
URL https://arxiv.org/abs/2403.03206. 9 Linjiajie Fang, Ruoxue Liu, Jing Zhang, Wenjia Wang, and Bing-Yi Jing. Diffusion actor-critic: Formulating constrained policy iteration as diffusion noise regression for offline reinforcement learning,
-
[4]
Justin Fu, Aviral Kumar, Ofir Nachum, George Tucker, and Sergey Levine
URL https://arxiv.org/abs/2405.20555. Justin Fu, Aviral Kumar, Ofir Nachum, George Tucker, and Sergey Levine. D4RL: datasets for deep data-driven reinforcement learning. CoRR, abs/2004.07219,
arXiv 2004
-
[5]
Based on the ablation study in Figure 3b, we choose h(t) = t2 1−t for our experiments. As we find, that larger antmaze environments strongly benefit from a larger critic network, we change the critic to [512, 512, 512, 512] with GELU activation functions Hendrycks & Gimpel (2016) for the antmaze-medium and antmaze-large environments. Moreover, we train th...
work page 2016
-
[9]
URL https://arxiv.org/abs/2006.11239. Matthew Thomas Jackson, Michael Tryfan Matthews, Cong Lu, Benjamin Ellis, Shimon Whiteson, and Jakob Foerster. Policy-guided diffusion,
arXiv 2006
-
[12]
Aviral Kumar, Aurick Zhou, George Tucker, and Sergey Levine
URL https://arxiv.org/abs/2110.06169. Aviral Kumar, Aurick Zhou, George Tucker, and Sergey Levine. Conservative q-learning for offline reinforcement learning. CoRR, abs/2006.04779,
arXiv 2006
-
[13]
URL https://arxiv.org/abs/2006. 04779. Yaron Lipman, Ricky T. Q. Chen, Heli Ben-Hamu, Maximilian Nickel, and Matt Le. Flow matching for generative modeling,
work page 2006
-
[14]
Cheng Lu, Yuhao Zhou, Fan Bao, Jianfei Chen, Chongxuan Li, and Jun Zhu
URL https://arxiv.org/abs/2210.02747. Cheng Lu, Yuhao Zhou, Fan Bao, Jianfei Chen, Chongxuan Li, and Jun Zhu. Dpm-solver: A fast ode solver for diffusion probabilistic model sampling in around 10 steps,
Show all 24 references
-
[16]
Seohong Park, Qiyang Li, and Sergey Levine
URL https: //arxiv.org/abs/1908.08681. Seohong Park, Qiyang Li, and Sergey Levine. Flow Q-Learning. ArXiv,
1908 arXiv
-
[18]
org/abs/2012.11547
URL https://arxiv. org/abs/2012.11547. Nur Muhammad Mahi Shafiullah, Zichen Jeff Cui, Ariuntuya Altanzaya, and Lerrel Pinto. Behavior transformers: Cloning k modes with one stone,
2012 arXiv
-
[19]
Ziyu Wang, Alexander Novikov, Konrad Zolna, Jost Tobias Springenberg, Scott E
URL https://arxiv.org/abs/2208.06193. Ziyu Wang, Alexander Novikov, Konrad Zolna, Jost Tobias Springenberg, Scott E. Reed, Bobak Shahriari, Noah Y . Siegel, Josh Merel, Çaglar Gülçehre, Nicolas Heess, and Nando de Freitas. Critic regularized regression. CoRR, abs/2006.15134,
2006 arXiv
-
[20]
Tianhe Yu, Garrett Thomas, Lantao Yu, Stefano Ermon, James Zou, Sergey Levine, Chelsea Finn, and Tengyu Ma
URL https://arxiv.org/abs/ 2006.15134. Tianhe Yu, Garrett Thomas, Lantao Yu, Stefano Ermon, James Zou, Sergey Levine, Chelsea Finn, and Tengyu Ma. MOPO: model-based offline policy optimization. CoRR, abs/2005.13239,
2006 arXiv
-
[21]
Shiyuan Zhang, Weitong Zhang, and Quanquan Gu
URL https://arxiv.org/abs/2005.13239. Shiyuan Zhang, Weitong Zhang, and Quanquan Gu. Energy-weighted flow matching for offline reinforcement learning. In The Thirteenth International Conference on Learning Representations,
2005 arXiv
-
[22]
Wenxuan Zhou, Sujay Bajracharya, and David Held
URL https://arxiv.org/abs/ 2311.13443. Wenxuan Zhou, Sujay Bajracharya, and David Held. PLAS: latent action space for offline reinforce- ment learning. CoRR, abs/2011.07213,
2011 arXiv
-
[23]
URL https://arxiv.org/abs/2011.07213. 11 A Derivations A.1 Conditional Probabilty Path ˆpt(xt|x1) We derive the conditional probability path ˆpt(xt|x1) from the marginal ˆpt(xt) as follows ˆpt(xt) = Z ˆpt(xt|x1)ˆp1(x1)dx1 (4) 1 Zt pt(xt) exp(−λ(t)E(xt)) = Z ˆpt(xt|x1) 1 Z1 p1(...
2023 arXiv
-
[2016]
Jonathan Ho, Ajay Jain, and Pieter Abbeel
URL http://arxiv.org/abs/1606.08415. Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models,
-
[2017]
Ilya Kostrikov, Ashvin Nair, and Sergey Levine
URL https://arxiv.org/abs/1412.6980. Ilya Kostrikov, Ashvin Nair, and Sergey Levine. Offline reinforcement learning with implicit q-learning. CoRR, abs/2110.06169,
-
[2018]
Dan Hendrycks and Kevin Gimpel
URL http://arxiv.org/abs/1812.02900. Dan Hendrycks and Kevin Gimpel. Bridging nonlinearities and stochastic regularizers with gaussian error linear units. CoRR, abs/1606.08415,
-
[2020]
Scott Fujimoto and Shixiang Shane Gu
URL https://arxiv.org/ abs/2004.07219. Scott Fujimoto and Shixiang Shane Gu. A minimalist approach to offline reinforcement learning. CoRR, abs/2106.06860,
2004 arXiv
-
[2021]
Scott Fujimoto, David Meger, and Doina Precup
URL https://arxiv.org/abs/2106.06860. Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without exploration. CoRR, abs/1812.02900,
-
[2022]
Cheng Lu, Huayu Chen, Jianfei Chen, Hang Su, Chongxuan Li, and Jun Zhu
URL https: //arxiv.org/abs/2206.00927. Cheng Lu, Huayu Chen, Jianfei Chen, Hang Su, Chongxuan Li, and Jun Zhu. Contrastive energy prediction for exact energy-guided diffusion sampling in offline reinforcement learning, 2023a. URL https://arxiv.org/abs/2304.12824. Cong Lu, Phil...
-
[2023]
Patrick Kidger and Cristian Garcia
URL https://arxiv.org/abs/2305.20081. Patrick Kidger and Cristian Garcia. Equinox: neural networks in JAX via callable PyTrees and filtered transformations. Differentiable Programming workshop at Neural Information Processing Systems 2021,
2021 arXiv
-
[2024]
URLhttps://arxiv.org/abs/2410.24164. Patrick Esser, Sumith Kulal, Andreas Blattmann, Rahim Entezari, Jonas Müller, Harry Saini, Yam Levi, Dominik Lorenz, Axel Sauer, Frederic Boesel, Dustin Podell, Tim Dockhorn, Zion English, Kyle Lacey, Alex Goodwin, Yannik Marek, and Robin R...
-
[2025]
URL https://arxiv.org/ abs/2411.04562. Kevin Black, Noah Brown, Danny Driess, Adnan Esmail, Michael Equi, Chelsea Finn, Niccolo Fusai, Lachy Groom, Karol Hausman, Brian Ichter, Szymon Jakubczak, Tim Jones, Liyiming Ke, Sergey Levine, Adrian Li-Bell, Mohith Mothukuri, Suraj Nai...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.