REVIEW 5 major objections 4 minor 1 cited by
A value head trained on a VLA's own rollout returns can guide tree search to raise manipulation success by over five points while using fewer simulations.
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-03 12:54 UTC pith:CMIZT4GL
load-bearing objection A sensible, incremental idea—add an AlphaGo-style value head to VLAPS—reported with inconsistent numbers and too little statistical evidence for the headline claims. the 5 major comments →
V-VLAPS: Value-Guided Planning for Vision-Language-Action Models
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The central claim is that the latent representations of a frozen vision-language-action policy already carry enough information about future task success that a small regression head can turn them into a usable value estimate for planning. The paper demonstrates this by training a three-layer MLP on Monte Carlo return targets derived from rollouts of the same policy, then inserting the predicted value into the PUCT selection rule as the Q-term. In the resulting search, node selection is driven by predicted value plus the VLAPS exploration bonus rather than by visit counts and the policy prior alone. On two manipulation task suites the value-guided variant outperforms the value-free baseline,
What carries the argument
The value head is a three-layer MLP that maps the VLA's last-layer latent readout to a scalar estimate of the discounted Monte Carlo return. Its predictions enter the tree-search selection score as the Q term, so a branch is favoured when the predicted value of the state it leads to is high, in addition to the usual exploration bonus. The training targets are discounted returns from rollouts of the frozen policy, with a sparse terminal reward of one for success.
Load-bearing premise
The value head is trained on rollouts of the same policy it is meant to correct, so it may merely be encoding the policy's existing preferences rather than providing an independent measure of task progress.
What would settle it
A reader could settle the claim by collecting a held-out set of VLA states with known success/failure outcomes, then checking whether the learned value head ranks the successful states above the failed states on a task it never trained on; if the ranking is no better than random, the value signal is not the mechanism behind the reported gains.
If this is right
- If the central claim holds, any frozen VLA model can be retrofitted with a value head trained from its own rollouts, turning test-time search into a way to correct, not just exploit, the imitation prior.
- With a larger search budget, the value-guided planner improves over the value-free baseline in all tested suites, including a six-point gain on the object suite and a four-point gain on a ten-task suite.
- The value head transfers to tasks it never saw during training, as shown by a 31-point improvement on a hard spatial task absent from the training data.
- Adding the value head reduces the average number of MCTS simulations by about 5 percent on the spatial suite and 14 percent on the object suite, meaning the value signal concentrates search on useful branches.
- Training a single value head on both task suites did not outperform per-suite heads, suggesting value generalization across task families is an open problem.
Where Pith is reading between the lines
- The mechanism is representation-agnostic: because the value head consumes only the latent readout, the same recipe could be applied to any VLA model that exposes a fixed-dimensional state summary, not just the one used in the paper.
- If the value head truly generalizes across tasks within a suite, then value models could be trained once per task family and reused for new tasks, sidestepping the need for per-task reward engineering.
- The authors' own proposal to train the value head on search-generated rollouts rather than policy rollouts is a likely next step; if search data yields sharper value estimates, the improvement over the baseline might grow beyond the 2-5 point range reported here.
- Because the paper only tests two suites, the claim that VLA latents are 'value-ready' is still narrow; a deliberate test would be to see whether the same value-head setup transfers to more diverse tasks such as long-horizon assembly or tasks with partial observability.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes V-VLAPS, an extension of the VLAPS MCTS planner in which a lightweight MLP value head is trained on the frozen Octo VLA's latent readouts to predict Monte Carlo returns. The return targets are discounted sparse success rewards collected from rollouts of the fixed Octo policy. The predicted value is inserted into the VLAPS node-selection score as a bias term. Experiments on two LIBERO suites (Spatial and Object) report success-rate gains over the value-free VLAPS baseline (+5.2 and +2.8 points overall) and reductions in average MCTS simulations (5% and 14%), including a 31-point gain on a held-out spatial task. The abstract additionally claims default-budget matching and larger-budget gains including LIBERO-10, but those results do not appear in the body.
Significance. The core idea is timely and potentially useful: if a small value head on top of a frozen VLA backbone can improve and accelerate search, it would make VLA-guided planning more practical. The paper merits attention for framing the problem and for reporting a positive result on a public benchmark. The held-out task result (Spatial task 9) is the most interesting piece of evidence. However, the current manuscript is preliminary: the value signal is derived from the same policy being corrected, the main tables lack uncertainty quantification, the search score is under-specified, and the abstract reports experiments not present in the body. The manuscript's own limitation and future-work sections acknowledge the data-quality and training-signal issues, which supports the need for additional analysis rather than invalidating the approach.
major comments (5)
- [§3.1, §4.2, Table 2] The value targets are generated by rolling out the fixed Octo policy: G_t = gamma^{T-t} on success and 0 on failure. The value head is therefore trained to predict the same policy's own outcome/timing profile. This makes it possible that V-VLAPS improves by selecting states where Octo is already confident, rather than by correcting a biased prior. The paper's own future-work sentence ('we plan to guide data collection using VLAPS ... rather than VLA rollouts') concedes the limitation. To support the causal claim that V_theta provides information beyond the VLAPS prior, the paper should include an ablation replacing V_theta with a constant, a calibration/AUC analysis of predicted values, and a test on states reached by non-VLA actions. Without this, the headline gain is not attributable to the value signal.
- [§4.2, Table 2] No error bars, confidence intervals, or significance tests are reported. The evaluation uses 10 rollouts per initial state (0–9), but the number of episodes per task is not stated. For Spatial task 9, the 31-point difference between VLAPS (16%) and V-VLAPS (47%) is presented as the key evidence of generalization; on a single held-out task this could be sampling noise. Please report per-task episode counts, standard errors, and a statistical comparison (e.g., bootstrap CIs or a paired test over initializations).
- [Abstract vs. §4.2] The abstract states that V-VLAPS 'matches value-free planning baseline at the default search budget in aggregate' and that with a larger budget it improves '+6 percentage points on LIBERO-Object and +4 percentage points on LIBERO-10'. The body reports no default-vs-larger-budget comparison, no LIBERO-10 results, and no aggregate matching; Table 2 shows gains at the (unspecified) budget used. This inconsistency makes it impossible to know which configuration produced the headline numbers. The abstract should be rewritten to match the experiments actually reported, or the missing experiments should be added.
- [§3.3] The selection score is not fully specified. The text defines Q(v,a_i)=V_theta(h), then states SCORE = \hat v_theta(readout(s')) + psi sqrt(N)/(1+N), without explaining whether the Q term is the predicted value of the next state only, whether a rollout/backup update is used, or how the value is combined with visit counts in already-expanded nodes. As written, the method is not reproducible and it is unclear whether the improvement comes from replacing Q with a learned value or from adding an extra exploration bonus. Please provide the complete score with all terms and the backup rule.
- [§4.1, Table 3] The simulation-count claim is only partially supported. Table 3 shows a 5% reduction for Spatial with the spatial-only head and a 14% reduction for Object with the object-only head, but the jointly trained head increases simulations on Object (12.61 vs 11.95). The stated '5–15%' reduction therefore depends on which value head is selected. Also, no search budget is defined, so it is unclear whether the number of MCTS simulations is the controlled variable or an outcome; if it is an outcome, the success-rate comparison may confound compute with search depth.
minor comments (4)
- [Table 2] The formatting of several entries is broken, e.g., '7010098100' should be split into separate numbers (70 100 98 100). The column labels 'V-VLAPS (spatial)' and 'V-VLAPS (object)' are also ambiguous when the same table appears for both suites.
- [Table 1] The column header 'Avg Success Episode Length (VLA) in Steps' is confusing; specify whether this is the average episode length over successful episodes only, or over all episodes weighted by success.
- [Figure 2] The t-SNE figure would be more informative if the color legend and the exact value-target binning were described. A quantitative separability measure (e.g., AUROC of a linear probe on readouts) would strengthen the claim that latent readouts encode success information.
- [§5] The limitations paragraph is candid, but some of its content (e.g., 'we could only test on tasks from two of the LIBERO task suites') should be reflected in the abstract and introduction, which currently promise a broader evaluation.
Circularity Check
No significant circularity: the value head is an empirical fit that is tested on held-out tasks and independent success metrics, not a construction that equals its training signal.
full rationale
The derivation chain is not circular in the sense required by the rubric. The value head is trained on Monte Carlo returns generated by rollouts of the fixed Octo policy (Section 3.1: G_t = gamma^{T-t} on success, 0 on failure), and then used in the MCTS scoring rule (Section 3.3: SCORE = v_hat(readout(s')) + U). This is an empirical approximation: the fitted function is applied to states from a different search process and is evaluated by independent environment success rates, not by the training targets themselves. Crucially, task 9 of the spatial suite is absent from the training set yet V-VLAPS improves from 16% to 47% over VLAPS (Table 2 and Section 4.2), so the improvement is not forced by construction. The concern that the value head may inherit the policy's bias is a real limitation, and the authors acknowledge it in Section 5 ('the data collected from episodes performed under the Octo VLA policy can be of poor quality'), but that is a validity or generalization issue, not a definitional circularity. The self-citation to Neary et al. (2025) by co-author Cyrus Neary supplies the VLAPS baseline and U-term, but it is used as prior work to build on, not as an unverified uniqueness theorem or as a substitute for the paper's own results. The abstract/full-text mismatch about LIBERO-10 and the 'larger search budget' is a reporting inconsistency, not circular reasoning. Thus no step meets the quoted-reduction bar for circularity; score 2 reflects the minor self-citation presence rather than any load-bearing circularity.
Axiom & Free-Parameter Ledger
free parameters (4)
- Discount factor gamma =
0.99
- Class-balancing downsample ratio =
1:1 successful to failed examples
- Value-head architecture and training hyperparameters =
Unspecified
- MCTS search budget =
Unspecified in full text
axioms (4)
- domain assumption A realistic simulator or world model is available for MCTS rollouts.
- domain assumption Transitions in the LIBERO environment are deterministic.
- ad hoc to paper Octo latent readouts encode enough information about task state to predict expected future return.
- ad hoc to paper Monte Carlo returns computed from VLA-policy rollouts are a valid training signal for guiding search beyond that same policy.
read the original abstract
Vision-language-action (VLA) models provide strong action priors for robotic manipulation, but their reactive behavior can fail under distribution shift and long-horizon task structure. Recent VLA-guided planning methods improve execution by using pretrained policies to guide tree search, yet node selection still depends heavily on policy priors and visit-count exploration. Consequently, when the policy favors poor actions, the planner lacks a learned value signal to correct this bias. Prior work has shown that VLA representations encode rollout success and failure information, suggesting that they may also support value estimation during planning. We introduce Value-Guided Vision-Language-Action Planning and Search (V-VLAPS), which augments VLA-guided planning with a lightweight value head trained on offline VLA rollouts to predict Monte Carlo returns. These predictions guide Monte Carlo Tree Search in simulation toward higher-value branches. Across five LIBERO suites, V-VLAPS matches value-free planning baseline at the default search budget in aggregate, and analysis shows that many hard failures are root-level timeouts where predicted values are weakly separated. With a larger search budget, V-VLAPS improves over the baseline in all task suites with +6 percentage points on LIBERO-Object and +4 percentage points on LIBERO-10. Our results suggest that VLA representations can support not only failure prediction, but also value-guided planning when search reaches branches where value-based ranking matters.
Figures
Forward citations
Cited by 1 Pith paper
-
Look Before You Leap: Distilling Tree Search into Action Evaluation for Frozen VLA Models
Distilling MCTS returns into a lightweight Q-model lets frozen VLAs select higher-return actions at test time, lifting success rates and letting a 9B model beat a 27B baseline at lower latency.
Reference graph
Works this paper leans on
-
[2]
Maciej Świechowski, Konrad Godlewski, Bartosz Sawicki, and Jacek Mańdziuk
URLhttps://arxiv.org/abs/2201.11903. Maciej Świechowski, Konrad Godlewski, Bartosz Sawicki, and Jacek Mańdziuk. Monte carlo tree search: a review of recent modifications and applications.Artificial Intelligence Review, 56(3): 2497–2562, July 2022. ISSN 1573-7462. doi: 10.1007/s10462-022-10228-y. URLhttp://dx.doi. org/10.1007/s10462-022-10228-y. 10
Pith/arXiv arXiv 2022
-
[2023]
URLhttps://arxiv.org/abs/2203.11171. Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Brian Ichter, Fei Xia, Ed Chi, Quoc Le, and Denny Zhou. Chain-of-thought prompting elicits reasoning in large language models,
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.