REVIEW 4 major objections 5 minor 29 references
An offline goal-conditioned RL algorithm that splits tasks into latent subgoals and k-step action chunks reduces the value-error bound to O(sqrt(T/k)) and posts the top aggregate score on OGBench.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-01 09:14 UTC pith:CCF6OQN5
load-bearing objection Genuinely new combination of latent hierarchy and action chunking, but the empirical claim is undercut by an undefined reward and an inconsistent table; needs correction before it can be trusted. the 4 major comments →
Offline RL with Hierarchical Action Chunking
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
HiQC's central claim is that decomposing a long-horizon task at both levels of a hierarchy—latent subgoals at the top, action chunks at the bottom—yields strictly better value-error scaling than either mechanism alone. The low-level chunked critic makes k-step backups unbiased by conditioning on the exact action sequence in the replay buffer, which removes the off-policy bias of ordinary n-step returns and lets the low level cover a subgoal interval of length c in only c/k bootstraps instead of c. Theorem 1 formalizes this as a bound of O(sqrt(T/k)) under the assumption that each bootstrap step contributes at most epsilon value error. The paper is explicit that this is an intuition-building
What carries the argument
The central object is the dual temporal decomposition itself: a high-level policy that plans over latent subgoal states with spacing c, and a low-level policy that generates action chunks of length k, with the low-level critic Q(s, a_{t:t+k}, z) regressing to an unbiased k-step target r + gamma^k V(s_{t+k}, z). The load-bearing identity is the k-step chunked Bellman backup, which replaces c one-step bootstraps with c/k chunk bootstraps; combined with the high-level c-step recursion, it turns the bootstrap-chain error bound from O(sqrt(T)) to O(sqrt(T/k)).
Load-bearing premise
The whole bound rests on Assumption 1—that every bootstrap step contributes at most a fixed epsilon of value error, with the same epsilon_L applied to one-step and k-step backups—and since the paper never measures these epsilons, the O(sqrt(T/k)) result is a statement about an abstract bootstrap chain, not about the trained HiQC system.
What would settle it
Measure the per-backup value error epsilon_L for a trained HiQC low-level critic on a long-horizon task (e.g., humanoid-giant) at chunk sizes k=1,2,5,10, and check whether the observed value error scales roughly as sqrt(T/k) as predicted; if the improvement over HIQL disappears when these epsilons are accounted for—or if the trained critic's per-backup error grows with k—the bootstrap-chain mechanism is not what drives the reported gains.
If this is right
- If the bound holds, chunk size k directly trades against horizon: doubling k divides the optimized error by sqrt(2), so the method should keep improving as chunk size grows—until open-loop execution errors dominate, which the ablations show at k > 10.
- The theory predicts that the optimal subgoal spacing c* grows as sqrt(k), so a chunked low-level controller justifies larger high-level steps than a single-action low level; the paper observes HiQC benefits from larger c than HIQL.
- On the empirical side, the gains concentrate in long-horizon navigation; on manipulation tasks the method does not uniformly dominate, and the paper's own analysis suggests the latent subgoal bottleneck and short critic horizon explain the gap.
- Since flat chunking (QC) scores near zero on giant mazes while HiQC succeeds, the combination, not chunking alone, is what unlocks very long horizons; this supports the paper's thesis that dual-level compression is the operative mechanism.
Where Pith is reading between the lines
- Editorial inference: the O(sqrt(T/k)) scaling suggests a general design principle—compress the horizon at every level where values are bootstrapped—that could transfer to other offline RL settings, such as continuous control with learned options or hierarchical imitation, even outside goal-conditioned tasks.
- Editorial inference: because the theory counts bootstrap depth but ignores function-approximation error, the empirical gap between HiQC and HIQL on humanoid-giant is indirect evidence about whether per-backup errors stay bounded in practice; measuring epsilon_L directly would test the mechanism.
- Editorial inference: the paper's hypothesis that the latent subgoal bottleneck under-specifies object state on manipulation tasks is testable by conditioning the low level on raw goal states instead of latent subgoals; a controlled swap would isolate whether the hierarchy or the chunking drives the navigation gains.
- Editorial inference: the fixed-chunk limitation suggests an adaptive chunk-size variant—ending a chunk early when the subgoal is reached or when uncertainty is high—could push the k>10 degradation point further out.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes HiQC, an offline goal-conditioned RL algorithm that combines a latent high-level planner (à la HIQL) with low-level action chunking (à la Q-Chunking). The high level learns a value function and policy over subgoals spaced c steps in a learned latent space; the low level learns a chunk-conditioned Q-function and a flow-matching policy over action chunks of length k. The theoretical section analyzes a bootstrap-chain error model, deriving an O(sqrt(T/k)) value-error bound under Assumption 1, compared with O(T) for flat TD and O(sqrt(T)) for standard hierarchy. Experiments on 9 OGBench tasks report HiQC as the best aggregate method (53%), with largest gains on long-horizon navigation (humanoid-giant, pointmaze-giant) and mixed performance on manipulation tasks. The authors explicitly scope the theory as intuition-building and disclose limitations such as fixed chunk sizes, bounded per-backup error assumptions, and the use of only 4 seeds.
Significance. The structural combination of latent hierarchy and action chunking is a natural extension of HIQL and Q-Chunking, and the empirical results, if correct, would support the value of dual temporal abstraction for offline GCRL. Strengths of the manuscript include a transparent theoretical model with explicit caveats, honest reporting of mixed manipulation results, a broad benchmark comparison, and clear acknowledgment of limitations (seed count, inherited hyperparameters, scope of the theorem). However, the algorithm description contains an undefined reward term (Eq. 7), the main results table has internal inconsistencies, and no code is released, so the headline empirical claim is not currently reproducible. The theoretical bound is explicitly intuition-building and depends on unmeasured per-backup errors, so it should not be read as an end-to-end guarantee for the trained system.
major comments (4)
- [Eq. 7, Section 4.2] The low-level reward is undefined. r(s,z)=I(s=z)-1 compares a raw state s in S to a latent vector z in Z; as written, these live in different spaces. If the intended definition is I(phi(s)=z)-1, equality with a continuous latent vector occurs with probability zero, making the reward -1 almost surely and the Q-target vacuous. The paper never specifies the surrogate actually used in experiments (e.g., negative latent distance, cosine similarity, or a learned decoder). Since the low-level objective is central to the algorithm, this must be corrected and the experimental reward function stated explicitly.
- [Table 1, Section 6.2] The aggregate column is internally inconsistent. Averaging the per-task entries for HIQL gives (88+68+34+10+47+44+3+4+41)/9 ≈ 37.7, not the reported 42. For CRL the average is (81+14+17+4+36+33+4+5+22)/9 = 24, not 23. The 95% confidence intervals for HIQL ([37,47]) and CRL ([21,26]) are consistent with the corrected means, suggesting a transcription error in the point estimates. The paper must reconcile the per-task numbers with the overall row and ensure all reported values are reproducible from the table.
- [Section 5.3, Theorem 1 (Eq. 13)] The claimed improvement over HIQL depends on using the same per-backup error epsilon_L for one-step low-level backups and k-step chunked backups. This is an unverified modeling assumption: a chunked backup regresses to a k-step target conditioned on a higher-dimensional action sequence, and its approximation error need not equal that of a one-step backup. The paper acknowledges Assumption 1 may not hold for neural networks, but the abstract and contribution list say 'theoretically demonstrate'; the theorem is a bound on an abstract bootstrap chain, not on HiQC. Please qualify the claim or provide justification/sensitivity analysis for the epsilon invariance.
- [Section 6.1 / Reproducibility] No code is released, and the implementation section states only that the algorithms were written in JAX. Combined with the undefined reward in Eq. 7, the reported OGBench results cannot be independently checked or mapped to the described algorithm. At minimum, the paper should provide the exact low-level reward computation (including any latent-distance surrogate) and ideally release code or a detailed pseudocode appendix. Without this, the empirical contribution is not reproducible.
minor comments (5)
- [Section 4.2] The phrase 'unbiased k-step value backups' should be clarified as unbiased with respect to the action chunk present in the dataset; the target still involves an expectile over states and chunks, so the term 'unbiased' could be misread as a guarantee about the learned value function.
- [Table 1] The caption uses inconsistent capitalization for HIQL (HiQL vs HIQL); please unify.
- [Figures 4 and 5] The ablation results are presented only as figures with no numeric values in the text or captions, making it difficult to assess the magnitude of the effects (e.g., how much flow matching improves over Gaussian, or how performance varies with k/c). Consider reporting numeric values or adding them to the captions.
- [References] The Kostrikov et al. IQL reference appears twice as 2022a and 2022b with the same title but different venues; please merge or differentiate.
- [Algorithm 1, Inference] The comment 'High-level planning may recur at frequency 1/c or 1/k' is ambiguous. If k < c, the low level executes k-step chunks and then must decide whether to re-sample a subgoal or continue toward the current one. Please specify the inference protocol precisely.
Circularity Check
No significant circularity: the theoretical bound is algebraically derived from stated assumptions and the empirical claim is an external benchmark comparison.
full rationale
The paper's derivation chain for Theorem 1 is a self-contained mathematical argument: Assumption 1 bounds per-backup error; Lemma 1 unrolls D bootstraps to D*epsilon; the bootstrap depths for TD, flat chunking, HIQL, and HiQC are counted from the recursion structures (T, T/k, T/c + c, T/c + c/k); AM-GM yields the optimized O(sqrt(T/k)). No parameter in this chain is fitted to the OGBench results, and the theorem's conclusion is not assumed in the model; it follows by algebra from the stated abstraction. The empirical claim (best aggregate OGBench score, gains on humanoid-giant) is an external benchmark comparison, not a prediction derived from fitted parameters; epsilon_H and epsilon_L are never measured, which the paper itself flags in Section 5 as intuition-building rather than end-to-end guarantee. The paper builds on cited prior work (HIQL, Q-Chunking, OGBench) but does not rely on its own citations to establish the central claim; no uniqueness theorem or ansatz is imported. Eq. 7's latent-reward ill-definedness is a correctness/reproducibility issue, not a circularity: it does not make a prediction equal to an input by construction. Therefore no significant circularity.
Axiom & Free-Parameter Ledger
free parameters (6)
- Subgoal horizon c =
25 (pointmaze/antmaze), 100 (humanoidmaze), 10 (cube/scene/puzzle)
- Chunk size k =
2 (antmaze), 5 (others)
- Expectile tau =
0.5 locomotion; 0.9-0.93 manipulation
- AWR temperatures alpha_H, alpha_L =
3.0 default; 1.0 for scene-* low-level
- Per-backup error bounds epsilon_H, epsilon_L =
unquantified (assumed)
- Latent subgoal dimension |Z| =
10
axioms (5)
- ad hoc to paper Bounded per-backup error (Assumption 1)
- domain assumption Sparse reward r(s,g)=I(s=g)-1
- domain assumption Deterministic dynamics for unbiased c-step high-level backup
- domain assumption Latent subgoal z=phi(s_{t+c}) is a valid low-level target
- domain assumption Q-chunking unbiasedness
invented entities (1)
-
Learned latent subgoal space Z with mapping phi:S->Z
no independent evidence
read the original abstract
Offline goal-conditioned reinforcement learning (RL) holds the promise of learning general-purpose policies from static datasets. However, scaling these methods to long-horizon tasks remains a challenge due to the curse of horizon, where value estimation errors can compound through long chains of bootstrapped Bellman backups. Existing hierarchical approaches mitigate this by decomposing tasks into subgoals, yet they often rely on low-level controllers that suffer from myopic execution and biased value estimates. In this work, we propose Hierarchical Implicit Q-Chunking (HiQC), an offline goal-conditioned RL algorithm that combines high-level latent planning with low-level action chunking. By conditioning the low-level critic on temporally extended action sequences, HiQC enables unbiased k-step value backups, compressing the horizon at both the planning and execution levels. We theoretically demonstrate that this dual decomposition results in a tighter bound on value error under a bounded per-backup error model compared to standard hierarchy or flat chunking alone. Empirically, HiQC achieves the highest aggregate performance among the compared methods on the OGBench suite, with its largest gains on long-horizon navigation tasks such as humanoid-giant.
Figures
Reference graph
Works this paper leans on
-
[1]
arXiv preprint arXiv:2005.01643 , year=
Offline Reinforcement Learning: Tutorial, Review, and Perspectives on Open Problems , author=. arXiv preprint arXiv:2005.01643 , year=
Pith/arXiv arXiv 2005
-
[2]
Advances in Neural Information Processing Systems , year=
Breaking the curse of horizon: Infinite-horizon off-policy estimation , author=. Advances in Neural Information Processing Systems , year=
-
[3]
2018 , publisher=
Reinforcement learning: An introduction , author=. 2018 , publisher=
2018
-
[4]
Advances in Neural Information Processing Systems , year=
Conservative Q-learning for offline reinforcement learning , author=. Advances in Neural Information Processing Systems , year=
-
[5]
Advances in Neural Information Processing Systems , year=
Horizon Reduction Makes RL Scalable , author=. Advances in Neural Information Processing Systems , year=
-
[6]
Advances in Neural Information Processing Systems , year=
Offline RL without off-policy evaluation , author=. Advances in Neural Information Processing Systems , year=
-
[7]
Advances in Neural Information Processing Systems , year=
Data-efficient hierarchical reinforcement learning , author=. Advances in Neural Information Processing Systems , year=
-
[8]
Advances in Neural Information Processing Systems , year=
HIQL: Offline Goal-Conditioned RL with Latent States as Actions , author=. Advances in Neural Information Processing Systems , year=
-
[9]
Advances in Neural Information Processing Systems , year=
Reinforcement Learning with Action Chunking , author=. Advances in Neural Information Processing Systems , year=
-
[10]
Robotics: Science and Systems , year=
Learning fine-grained bimanual manipulation with low-cost hardware , author=. Robotics: Science and Systems , year=
-
[11]
International Conference on Learning Representations , year=
Offline Reinforcement Learning with Implicit Q-Learning , author=. International Conference on Learning Representations , year=
-
[12]
arXiv preprint arXiv:2512.10926 , year=
Decoupled Q-Chunking , author=. arXiv preprint arXiv:2512.10926 , year=
-
[13]
Robotics: Science and Systems , year=
Diffusion policy: Visuomotor policy learning via action diffusion , author=. Robotics: Science and Systems , year=
-
[14]
arXiv preprint arXiv:2304.10573 , year=
IDQL: Implicit Q-Learning as an Actor-Critic Method with Diffusion Policies , author=. arXiv preprint arXiv:2304.10573 , year=
-
[15]
International Conference on Learning Representations , year=
Action Chunking for Offline Reinforcement Learning , author=. International Conference on Learning Representations , year=
-
[16]
Artificial Intelligence , year=
Between MDPs and semi-MDPs: A framework for temporal abstraction in reinforcement learning , author=. Artificial Intelligence , year=
-
[17]
IEEE/RSJ International Conference on Intelligent Robots and Systems , year=
Hierarchical Action Chunking Transformer: Learning Temporal Multimodality from Demonstrations with Fast Imitation Behavior , author=. IEEE/RSJ International Conference on Intelligent Robots and Systems , year=
-
[18]
International Conference on Machine Learning , year=
Off-policy deep reinforcement learning without exploration , author=. International Conference on Machine Learning , year=
-
[19]
arXiv preprint arXiv:2502.02538 , year=
Flow Q-Learning , author=. arXiv preprint arXiv:2502.02538 , year=
-
[20]
arXiv preprint arXiv:2512.08108 , year=
Scalable Offline Model-Based RL with Action Chunks , author=. arXiv preprint arXiv:2512.08108 , year=
-
[21]
arXiv preprint arXiv:2004.07219 , year=
D4RL: Datasets for Deep Data-Driven Reinforcement Learning , author=. arXiv preprint arXiv:2004.07219 , year=
Pith/arXiv arXiv 2004
-
[22]
arXiv preprint arXiv:2206.07568 , year=
Contrastive Learning as a Reinforcement Learning Algorithm , author=. arXiv preprint arXiv:2206.07568 , year=
-
[23]
Machine Learning , year=
Learning to predict by the methods of temporal differences , author=. Machine Learning , year=
-
[24]
International Conference on Learning Representations , year=
OGBench: Benchmarking Offline Goal-Conditioned RL , author=. International Conference on Learning Representations , year=
-
[25]
arXiv preprint arXiv:1910.00177 , year=
Advantage-weighted regression: Simple and scalable off-policy reinforcement learning , author=. arXiv preprint arXiv:1910.00177 , year=
Pith/arXiv arXiv 1910
-
[26]
International Conference on Learning Representations , year=
Energy-Weighted Flow Matching for Offline Reinforcement Learning , author=. International Conference on Learning Representations , year=
-
[27]
International Conference on Learning Representations , year=
Flow Matching for Generative Modeling , author=. International Conference on Learning Representations , year=
-
[28]
2025 , eprint=
OpenEgo: A Large-Scale Multimodal Egocentric Dataset for Dexterous Manipulation , author=. 2025 , eprint=
2025
-
[29]
Physical Intelligence and Kevin Black and Noah Brown and James Darpinian and Karan Dhabalia and Danny Driess and Adnan Esmail and Michael Equi and Chelsea Finn and Niccolo Fusai and Manuel Y. Galliker and Dibya Ghosh and Lachy Groom and Karol Hausman and Brian Ichter and Szymon Jakubczak and Tim Jones and Liyiming Ke and Devin LeBlanc and Sergey Levine an...
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.