REVIEW 3 major objections 6 minor 2 cited by
Embodied CoT Distillation From LLM To Off-the-shelf Agents
T0 review · 3 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read DeDer claims embodied planning can be distilled from PaLM-scale LLMs into two small models that run in under a second on off-the-shelf GPUs, outperforming the teacher-scale planner on ALFRED.
desk verdict DeDer has a sensible two-tier distillation idea, but the headline ALFRED numbers rest on an unspecified embodied KG that may be oracle state, so the strong claims should not be taken at face value. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the embodied knowledge graph: a growing set of semantic triples of the form (subject, relation, object), for example (Apple, On, Table) or (Agent, Pickup, Knife), which is refreshed at every step by an update function $U$ and filtered by a retriever $V$ before being presented to the reasoning policy. This graph converts the agent's interaction history and current observation into a compact prompt that a small language model can actually read. The reasoning policy is an encoder-decoder with soft prompt pools, a causal attention module, and a gated attention module, trained jointly with a rationale-reconstruction loss and a behavior-based contrastive loss defined on pairs of graphs that lead to the same action. The planning policy is a separate decoder trained to generate the next plan conditioned on the rationales, so the whole pipeline produces a plan in one step rather than iteratively.
What would settle it
Run DeDer on ALFRED feeding it raw RGB-D observations only, with the embodied knowledge graph built by a perception module trained on separate data instead of taken from simulator state. If success rates drop toward the end-to-end baseline that performs the same task without the graph, then the knowledge graph, not the distilled reasoning, is the source of the reported performance, and the claim that sLM policies can plan on off-the-shelf devices is falsified.
Extended reading notes
Core claim
The paper's central claim is that decomposing an LLM's decision process into a two-tier hierarchy makes it possible to distill embodied planning into small language models that match or exceed the teacher-scale LLM planners. DeDer writes the policy as $\Phi_{\mathrm{sLM}} = \Phi_P \circ \Phi_R$, where the reasoning policy $\Phi_R$ (a T5-small encoder-decoder with causal and gated attention) produces a set of rationales in a single forward pass, and the planning policy $\Phi_P$ (a GPT-2 decoder) converts those rationales into an executable action plan. The authors report that DeDer-GPT2 reaches 81.8% success on seen tasks, 52.7% on tasks with randomized object layouts, and 40.3% on tasks in entirely new environments, compared with 66.8%, 33.6%, and 17.2% for LLM-planner-PaLM on the same categories, all evaluated zero-shot. They also report 0.65 seconds of inference time on an RTX 3090 and 1.16 seconds on an RTX 3050, against 9.37 seconds for an LLM-planner variant running on the same hardware class.
Load-bearing premise
The paper assumes that an embodied knowledge graph written as semantic triples such as (Apple, On, Table) is available at every planning step, but it does not describe how raw observations are turned into those triples; if that conversion needs an external perception system or ground-truth simulator state, the claimed deployment on off-the-shelf devices is not supported.
Editorial extensions
If this is right
- Embodied planning can run entirely on small models: roughly 160 million parameters total, with sub-second inference on consumer GPUs, so no large model needs to be queried during task execution.
- The two-tier split transfers better than end-to-end distillation: at the same GPT-2 capacity, DeDer reports 81.8% seen success versus 33.1% for the single-tier End2End baseline.
- Reasoning capacity matters more than planning capacity: growing the T5 reasoner from small to large raises unseen-environment success from 40.3% to 47.7%, while growing the GPT-2 planner leaves performance essentially flat.
- The reported zero-shot results in unseen environments imply that the distilled rationales carry knowledge that generalizes beyond the expert dataset's scenes, object layouts, and task descriptions.
Reading between the lines
- Editorial inference: the paper never specifies who converts raw observations into the semantic triples of the embodied knowledge graph; if the triples come from the ALFRED simulator's ground-truth state rather than from perception, the comparison against LLM planners may reward access to privileged information rather than planning skill.
- Testable extension: run DeDer with the same small models but with triples produced by an off-the-shelf vision-language perception module; the drop in success rate would quantify how much of the reported performance depends on the assumption that the graph is already correct.
- The contrastive loss on graph pairs is a transferable idea: forcing embeddings of graphs that lead to the same action to be close should make any compact re-planning module more stable under small environment changes, outside ALFRED as well.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces DeDer, a framework for distilling embodied chain-of-thought reasoning from a large language model into two small language models: a T5-small-based reasoning-policy that generates rationales from an embodied knowledge graph, and a GPT-2-based planning-policy that maps rationales to action plans. The rationale dataset is built by prompting an LLM with MDP-featured in-context learning and self-critic filtering over 312 expert ALFRED trajectories. The reasoning-policy is trained with a rationale reconstruction loss and a behavior-based contrastive loss, while the planning-policy is trained with a plan reconstruction loss. Evaluation on ALFRED reports success rates of 81.8% (Seen), 52.7% (Unseen Spatial), and 40.3% (Unseen Environment) for DeDer-GPT2, outperforming both LLM-based planners such as LLM-planner-PaLM and prior distillation baselines SCoTD and SCOTT, with sub-second inference on RTX 3090/3050 GPUs.
Significance. If the reported results are taken at face value and the missing perception component is properly specified, the paper would make a noteworthy empirical contribution: it would show that sLM-based policies, after targeted distillation, can outperform much larger LLM planners on a complex embodied benchmark while running on off-the-shelf hardware. The two-tier decomposition, the contrastively prompted attention for concurrent rationale generation, and the self-verification pipeline for rationale dataset construction are all sensible and useful ideas. On the negative side, the paper releases no code or data, the provenance of the embodied knowledge graph is unspecified, the headline Unseen Environment result rests on only 58 tasks, and there is a numerical inconsistency between Table 5 and Table A.14. These issues currently prevent the central claim from being fully verified.
major comments (3)
- [§4.2, Eqs. (5)-(7); Appendix D] The embodied KG is the sole input to the reasoning-policy Phi_R in Eq. (7), and Eq. (5) defines an update U : (g_{t-1}, a_{t-1}, o_t) -> g_t, but the paper never specifies how raw ALFRED observations (RGB-D frames) are converted into triples such as (Apple, On, Table) or (Agent, at, Sink). Appendix D lists observations as object-name lists and retrieved facts that encode agent position, containment, visibility, and action history, none of which are directly readable from an egocentric frame. If these triples come from simulator ground truth or an external perception oracle, then at every planning step DeDer receives privileged state information that the text-only LLM baselines do not receive, which would undermine both the comparison with PaLM/LLaMA2 planners and the claimed deployment on off-the-shelf devices. The authors must either describe a concrete perception-to-triple mechanism or explicitly state the assumption that such oracle information is available; without this, the central claim is unsupported.
- [Table 5 vs. Table A.14] There is a direct numerical inconsistency in the capacity-scaling experiments. Table 5 reports Unseen success rate 46.1±1.1 for the t5-small + gpt2-large configuration, while Table A.14 reports 67.5±1.7 for SR and 39.7±2.0 for GC in the corresponding row. The GC value being lower than SR in that row is also internally inconsistent with the GC>=SR pattern in every other row. This discrepancy affects the conclusion in §5.3 that the reasoning-policy capacity is the main driver of generalization. The authors need to correct the numbers and ensure Tables 5 and A.14 are consistent.
- [§5.1, Table 1; Unseen Environment evaluation] The headline Unseen Environment result is based on only 58 tasks, and the reported confidence intervals (±0.9 SR for DeDer-GPT2) appear to reflect variance across three training seeds only, not the variance across tasks within the category. With 58 tasks, the standard error across task sampling would be much larger. The paper should report task-level bootstrap confidence intervals or otherwise justify why the tiny reported intervals are appropriate. This is important because the central claim of superiority over SCoTD and SCOTT in the Unseen Environment column rests on differences of roughly 13-16 percentage points, which may or may not be significant under a correct statistical treatment.
minor comments (6)
- [§4.2, Eq. (6) and Appendix B.4] The KG retriever threshold delta and the contrastive margin epsilon in Eq. (12) are never assigned values; only alpha is given (0.5 in Appendix B.4.2). Please report the actual values used for delta and epsilon in all experiments.
- [Throughout] The method name is written inconsistently as DEDER, DeDer, and DEDER-GPT2; please standardize the notation.
- [§5.3, Table 5 caption] The caption refers to 'Phi_D' but the paper defines the planning-policy as Phi_P; please correct the symbol.
- [Figure 4] The x-axis labels in Figure 4 are not legible in the provided version; please add readable query indices and a clear legend.
- [Appendix B.1] It is unclear whether the PaLM-based baselines (SayCan-PaLM, LLM-planner-PaLM, ZSP-PaLM) in Table 1 are from the original papers or reimplemented with the hyperparameters in Table A.7; please clarify the source of each baseline number.
- [§5.1, Baselines and Table 1] The sentence 'In evaluating in off-the-shelf devices, we adopt sLMs for these language planning baselines' is ambiguous, since Table 1 also includes PaLM and LLaMA2 variants; please state clearly which baselines use which underlying model and how the affordance/grounding inputs are provided to each.
Circularity Check
No significant circularity: DeDer is an externally benchmarked distillation pipeline; the unspecified observation-to-KG mapping is a missing component, not a definitional reduction.
full rationale
DeDer's derivation chain is an empirical distillation pipeline. Rationales are generated by an LLM in Eq. (2), filtered by the LLM self-critic in Eq. (3), and then used as supervised targets for the reasoning-policy and planning-policy via the reconstruction losses in Eqs. (11), (12), and (14). The reported claims are evaluated against the external ALFRED benchmark using SR and GC, so task success is not defined in terms of the training objectives. The only internal validation loop is the LLM self-critique in Eq. (3), which checks whether the extracted rationale set can reproduce the expert plan; this is a data-quality filter, not a predictor of ALFRED success. The embodied KG in Eqs. (5)-(7) is the one load-bearing input whose construction from raw ALFRED observations is never specified: Appendix D shows observations as object-name lists ('Mug, Spatula, Apple, Fork') and retrieved facts such as '(Mug, in, Sink), (Agent, at, Sink), (Agent, PickedUp, Fork)', which encode object identities, locations, containment, and action history. This is a missing-component or potential privileged-state concern that affects the fairness of the comparison and the deployment claim, but it is not a circular reduction: no equation defines g from raw pixels, and no fitted parameter is renamed as a prediction. The paper's own Limitation section only discusses sLM capacity dependence and does not address this gap. The self-citation to Choi et al., 2023, cited alongside Stooke et al., 2021 and Zhang et al., 2022 for contrastive learning, is not load-bearing and does not substitute for an independent derivation. Accordingly, no circular step is exhibited.
Assumptions & free parameters
free parameters (3)
- alpha (attention scaling factor) =
0.5
- delta (KG retriever threshold) =
not reported
- epsilon (contrastive margin) =
not reported
assumptions (5)
- domain assumption ALFRED expert transitions and self-critic-filtered rationales capture the reasoning needed for plan prediction
- domain assumption An embodied KG with correct semantic triples is available at each step
- domain assumption The LLM self-critic majority vote correctly identifies whether a rationale set is sufficient to infer the expert plan
- domain assumption The rule-based executor maps generated plans to successful ALFRED environment interactions
- standard math Standard supervised losses and attention mechanisms behave as expected
invented entities (1)
-
Embodied knowledge graph (embodied KG)
Cite this review
Pith. "Pith review of Embodied CoT Distillation From LLM To Off-the-shelf Agents." pith.science (2026). https://pith.science/paper/HCBEPKEE
@misc{pith2026241211499,
author = {Pith},
title = {Pith review of: Embodied CoT Distillation From LLM To Off-the-shelf Agents},
year = {2026},
howpublished = {\url{https://pith.science/paper/HCBEPKEE}},
note = {Machine review of arXiv:2412.11499}
}
read the original abstract
We address the challenge of utilizing large language models (LLMs) for complex embodied tasks, in the environment where decision-making systems operate timely on capacity-limited, off-the-shelf devices. We present DeDer, a framework for decomposing and distilling the embodied reasoning capabilities from LLMs to efficient, small language model (sLM)-based policies. In DeDer, the decision-making process of LLM-based strategies is restructured into a hierarchy with a reasoning-policy and planning-policy. The reasoning-policy is distilled from the data that is generated through the embodied in-context learning and self-verification of an LLM, so it can produce effective rationales. The planning-policy, guided by the rationales, can render optimized plans efficiently. In turn, DeDer allows for adopting sLMs for both policies, deployed on off-the-shelf devices. Furthermore, to enhance the quality of intermediate rationales, specific to embodied tasks, we devise the embodied knowledge graph, and to generate multiple rationales timely through a single inference, we also use the contrastively prompted attention model. Our experiments with the ALFRED benchmark demonstrate that DeDer surpasses leading language planning and distillation approaches, indicating the applicability and efficiency of sLM-based embodied policies derived through DeDer.
Figures
Forward citations
Cited by 2 Pith papers
-
AgentDistill: Training-Free Agent Distillation with Generalizable MCP Boxes
AgentDistill distills agent capabilities without any training by having a teacher generate reusable MCP tool boxes that small-model students invoke at inference time.
-
Software Engineering for Large Language Models: Research Status, Challenges and the Road Ahead
A literature review organizes LLM development into a six-phase software engineering lifecycle and identifies challenges and research directions for each phase.
Reference graph
Works this paper leans on
-
[3]
Driess, D., Xia, F., Sajjadi, M. S. M., Lynch, C., Chowdhery, A., Ichter, B., Wahid, A., Tompson, J., Vuong, Q., Yu, T., Huang, W., Chebotar, Y ., Sermanet, P., Duckworth, D., Levine, S., Vanhoucke, V ., Hausman, K., Toussaint, M., Greff, K., Zeng, A., Mordatch, I., and Florence, P. Palm-e: An embodied multimodal language model. In arXiv preprint arXiv:23...
-
[4]
Micheli, V . and Fleuret, F. Language models are few-shot butlers. arXiv preprint arXiv:2104.07972,
-
[7]
J., Zidek, A., Osindero, S., Doersch, C., Czarnecki, W
Schmitt, S., Hudson, J. J., Zidek, A., Osindero, S., Doersch, C., Czarnecki, W. M., Leibo, J. Z., Kuttler, H., Zisserman, A., Simonyan, K., et al. Kickstarting deep reinforcement learning. arXiv preprint arXiv:1803.03835,
-
[9]
Distilling internet-scale vision-language models into embodied agents
Sumers, T., Marino, K., Ahuja, A., Fergus, R., and Das- gupta, I. Distilling internet-scale vision-language models into embodied agents. arXiv preprint arXiv:2301.12507,
-
[10]
Enhancing chain-of-thoughts prompting with iterative bootstrapping in large language models
Sun, J., Luo, Y ., Gong, Y ., Lin, C., Shen, Y ., Guo, J., and Duan, N. Enhancing chain-of-thoughts prompting with iterative bootstrapping in large language models. arXiv preprint arXiv:2304.11657,
-
[11]
Self-consistency im- proves chain of thought reasoning in language models
Wang, X., Wei, J., Schuurmans, D., Le, Q., Chi, E., Narang, S., Chowdhery, A., and Zhou, D. Self-consistency im- proves chain of thought reasoning in language models. arXiv preprint arXiv:2203.11171,
-
[12]
Embodied task planning with large language models
Wu, Z., Wang, Z., Xu, X., Lu, J., and Yan, H. Embodied task planning with large language models. arXiv preprint arXiv:2307.01848,
-
[13]
Put a keychain in a plate and then put them on a shelf
11 Embodied CoT Distillation From LLM To Off-the-shelf Agents A. Environment settings A.1. ALFRED We utilize ALFRED (Shridhar et al., 2020), which provides comprehensive vision-and-language navigation and rearrange- ment tasks for embodied AI. This environment requires an agent to follow language formatted instructions to accomplish real-world-like househ...
work page 2020
Show all 18 references
-
[14]
leverages the LLMs for few-shot planning, empowering embodied agents to perform complex tasks in environments with observed information, guided by natural language instructions. For implementation, we 2https://github.com/google-research/google-research/tree/master/saycan 3http...
2023
-
[15]
We formulate 7 queries to extract rationales from the LLM and manually design 9 initial examples of query-rationale pairs for each expert transition
as the source LLM, exploiting its reasoning capabilities. We formulate 7 queries to extract rationales from the LLM and manually design 9 initial examples of query-rationale pairs for each expert transition. To calculate similarity between language embeddings of τ and c, we us...
2020
-
[17]
DEDER ensures real-time inference speeds across these various devices while consistently yielding superior performance compared to other ablated comparisons
We measured inference times several off-the-shelf devices such as RTX 3090, 3050 and 2080 Ti GPUs. DEDER ensures real-time inference speeds across these various devices while consistently yielding superior performance compared to other ablated comparisons. Table A.12. Details ...
-
[18]
Table A.13
DEDER ensures real-time inference speeds across various off-the-shelf devices while maintaining consistently superior performance compared to other ablation comparisons. Table A.13. Details of reasoning-policy structure Method Inference Time Train Seen Unseen Spatial Unseen En...
-
[20]
The causal attention module uses a causal mask, while the gated attention module includes an additional learnable gate function
Our implementation of the attention module Ψ incorporates two distinct attention mechanisms: causal attention and gated attention, each comprising a single attention layer. The causal attention module uses a causal mask, while the gated attention module includes an additional ...
2019
-
[2018]
Senadeera, D. C. and Ive, J. Controlled text generation using t5 based encoder-decoder soft prompt tuning and analy- sis of the utility of generated text in ai. arXiv preprint arXiv:2212.02924,
-
[2020]
In-context retrieval-augmented language models
Ram, O., Levine, Y ., Dalmedigos, I., Muhlgay, D., Shashua, A., Leyton-Brown, K., and Shoham, Y . In-context retrieval-augmented language models. arXiv preprint arXiv:2302.00083,
-
[2021]
Oord, A. v. d., Li, Y ., and Vinyals, O. Representation learn- ing with contrastive predictive coding. arXiv preprint arXiv:1807.03748,
-
[2022]
F., and Saffari, A
Baek, J., Aji, A. F., and Saffari, A. Knowledge- augmented language model prompting for zero-shot knowledge graph question answering. arXiv preprint arXiv:2306.04136,
-
[2023]
Collaborating with language models for embodied reasoning
Dasgupta, I., Kaeser-Chen, C., Marino, K., Ahuja, A., Babayan, S., Hill, F., and Fergus, R. Collaborating with language models for embodied reasoning. arXiv preprint arXiv:2302.00763,
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.