REVIEW 2 major objections 7 minor 1 cited by
Enhancing Visual Planning with Auxiliary Tasks and Multi-token Prediction
T0 review · 2 major / 7 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read This paper claims that a 7B-parameter video-language model, trained on auxiliary goal tasks and multi-token prediction, achieves state-of-the-art visual planning results on COIN and CrossTask and is competitive on Ego4D long-term action…
desk verdict A solid, practical MLLM recipe for visual planning; the GMA leak is real but tested, and the paper deserves a conditional accept with variance checks. 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
Two mechanisms carry the argument. Auxiliary Task Augmentation builds extra training tasks from existing annotations: Goal Prediction asks the model to output the user's goal given the observation as video, image, or generated text of object states, and Goal Modality Augmentation changes the goal input from text to an image or removes it entirely. Multi-Token Prediction adds K parallel output heads, with K=4 in the paper, that each predict a future token conditioned on the same hidden state; the paper's variant reuses the frozen pre-trained unembedding matrix as each head and differentiates heads only by LoRA adapters, adding 11M parameters instead of the 80M of the original linear-layer design. At inference the extra heads are discarded and the model generates autoregressively, so MTP acts as a regularizer that makes the trunk reason about future tokens without changing the final decoding procedure.
What would settle it
Train a VideoPlan variant whose Goal Modality Augmentation goal image is the last observed frame before the first future action instead of the final frame of the final future action, keeping all other data and settings fixed; if the COIN T=3 success rate does not drop below 29.1%, the paper's claimed transfer from future-state goals is called into question, and if it drops sharply the reported GMA gain is leakage rather than generalizable goal understanding.
Extended reading notes
Core claim
The paper's central claim is that two modifications to standard MLLM training address the two obstacles that keep large models from planning well in instructional videos. Auxiliary Task Augmentation converts the same annotations into extra supervision: the model must predict the user's goal from video, image, or text observations, and it must plan from goals given in different modalities, including a goal image that is the final frame of the last future action. Multi-Token Prediction adds extra decoded heads that predict tokens one, two, three, and four positions ahead during training, so the shared trunk learns to treat the closed action vocabulary as a structured sequence rather than free-form language. VideoPlan combines both and reports 29.1% success rate on COIN and 15.4% on CrossTask for predicting three future actions, the highest among compared methods; the authors attribute the gains to the two mechanisms, not to the visual encoder, since the same-gain pattern holds when the encoder is held fixed.
Load-bearing premise
The Goal Modality Augmentation task trains the model with the final frame of the last future action as the goal image, and at test time that frame does not exist; the paper assumes the model learns transferable goal knowledge rather than exploiting the leaked future frame.
Editorial extensions
If this is right
- On COIN, predicting three future actions, VideoPlan reaches 29.1% success rate, 7.3 percentage points above the prior best; with the same visual encoder as the prior best, the gain is 3.8 points.
- On CrossTask, the model reaches 15.4% success rate for three-step planning, 3.4 points above the prior best, and again improves across all metrics when the visual encoder is fixed.
- Ablation results indicate that Auxiliary Task Augmentation and Multi-Token Prediction are additive: each improves the T=3 baseline success rate alone, and together they add 3.4 points to the full model.
- Replacing MTP's linear heads with the frozen-unembedding-plus-LoRA heads improves all metrics while cutting head parameters from 80M to 11M.
- On Ego4D long-term action anticipation, VideoPlan posts the best verb edit distance among the compared methods and is competitive on noun and action edit distance despite not being pretrained on egocentric video.
Reading between the lines
- A testable extension the paper does not run: replace the Goal Modality Augmentation goal image with a frame available at inference time, such as the last observed frame, to separate genuine goal comprehension from leakage of the future final frame; this would settle whether GMA's 1.0-point gain transfers.
- If MTP's advantage comes from weighting consequential token transitions, the same unembedding-matrix-plus-LoRA head design should transfer to other small-vocabulary structured generation tasks, such as constrained tool-use or recipe generation, where multi-token heads are cheap to add; this is an editorial extrapolation.
- Because VideoPlan also works on Ego4D LTA where no goal text is given, a natural decomposition is to ablate the goal on VPA; if success rate holds without it, the model's gain may owe more to temporal structure modeling than to goal conditioning.
- The fact that a 7B model beats 70B baselines suggests scale is not the main driver in this low-data regime; testing VideoPlan on a larger closed action vocabulary would show whether the advantage persists as the label space grows.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes VideoPlan, a multimodal large language model for Visual Planning for Assistance (VPA) and Long-term Action Anticipation (LTA). To address the scarcity of procedural annotations, it introduces Auxiliary Task Augmentation (ATA) with two task types: Goal Modality Augmentation (GMA), which varies how the goal is specified (text, image, or discarded), and Goal Prediction (GP). To better capture the structured action space, it adapts Multi-token Prediction (MTP) by reusing the pretrained unembedding matrix with per-head LoRA modules. The model is trained in three stages: feature alignment, auxiliary-task pretraining, and primary-task finetuning. Experiments on COIN and CrossTask report state-of-the-art Success Rate (e.g., +7.3% at T=3 on COIN with a MetaCLIP encoder), and on Ego4D LTA the method is competitive without egocentric pretraining. The paper includes same-encoder comparisons and ablations on ATA, MTP, head architecture, and partial MTP.
Significance. If the results hold, the paper offers a practical and efficient recipe for improving MLLM-based planners under limited supervision: the final model uses a 7B LLM whereas prior VPA methods use 70B models, and the same-encoder comparisons (VideoCLIP variants) partially isolate the benefit of the proposed training strategies. The ablation suite is well structured, covering each auxiliary task, the MTP head design, and a partial-MTP control for the role of cross-action token transitions. The main caveats are that the GMA auxiliary task trains on the future goal frame, which is unavailable at test time, and that all results are single runs without error bars, leaving small margins (e.g., 1.0% on CrossTask same-encoder T=4) of unknown reliability.
major comments (2)
- [Section 3.3, Appendix 7.3, Table 6] The GMA auxiliary task constructs the goal image as the last frame of the last future action segment to be predicted, as stated in Appendix 7.3. During standard VPA inference the goal is provided only as text, so the model never receives this future frame. The ablation in Table 6 attributes 1.0% SR (T=3) and 0.9% SR (T=4) on COIN to GMA, but the paper does not rule out that this gain is a training-time shortcut from seeing the exact future visual state. The post-hoc explanation that GMA teaches cross-modal goal dependencies is plausible but untested. Please add a control experiment in which the goal image is replaced by a frame that is not the true future state, e.g., the last frame of the input observation or a frame from a different clip, and report whether the GMA gain persists. If feasible, also compare text-goal versus oracle-image-goal test performance to diagnose reliance on the image.
- [Tables 2-8] All experimental results are reported from a single run, without error bars, confidence intervals, or significance tests. Several key comparisons are small: the same-encoder CrossTask T=4 SR margin over VidAssist is 1.0% (Table 3), and the GMA ablation drop is 1.0% (Table 6). These differences could plausibly be within run-to-run noise, which matters for the claims that GMA helps and that VideoPlan outperforms prior methods on that setting. Please report means and standard deviations over at least three seeds for the main comparisons and ablations, and state the number of seeds used.
minor comments (7)
- [Section 4.2] The text says VideoPlan achieves +7.4% and +5.7% higher Success Rate than VidAssist on COIN, but Table 2 shows +7.3% and +6.7%. Please correct the numbers.
- [Section 4.3 (Role of MTP)] The text states that MTP outperforms partial-MTP by 3.9% and 1.2% in Success Rate, but Table 8 shows differences of 1.0% (T=3) and 0.5% (T=4). Please correct the textual numbers to match the table.
- [Abstract and Conclusion] The headline gains of 7.3% and 3.4% are obtained with the MetaCLIP visual encoder, which is not the encoder used by the prior methods compared. Although the same-encoder VideoCLIP comparisons appear in Section 4.2, the abstract and conclusion should explicitly state that the headline margins use the stronger encoder, so that the method-only contribution is not overstated.
- [Section 4.3 (Auxiliary Task Analysis)] The cross-modal goal dependency explanation for GMA is presented as a hypothesis without supporting evidence; please label it as a hypothesis and connect it to the proposed control experiment from the major comment.
- [Section 3.4, Table 7] The head architecture comparison would be more interpretable if the LoRA rank and alpha for the MTP heads were specified separately from the backbone LoRA configuration, since the parameter count advantage depends on this choice.
- [Section 7.1] The sentence "We train our model for 1 epoch with a batch size of 1024" is ambiguous because the next sentences distinguish the auxiliary pretraining stage (1 epoch) from the VPA finetuning stage (4 epochs). Please rephrase to make the stage reference explicit.
- [Section 3.4, Eq. (3)] The notation is inconsistent: Eq. (1)-(2) use lowercase x_t, while Eq. (3) uses uppercase X_t. Please unify the notation.
Circularity Check
No significant circularity: the paper's SOTA claims are empirical results from training and evaluation, not derivations that reduce to fitted inputs or self-citations.
full rationale
I walked the claimed derivation chain and found no step where a prediction or first-principles result is equivalent to its inputs by construction. The main components are Auxiliary Task Augmentation (GMA and GP) and Multi-token Prediction; both are empirical training strategies evaluated with ablations on COIN and CrossTask. GMA uses the last frame of the last future action segment as a goal image during auxiliary training (Section 7.3), which is a potential information-leak/shortcut concern for the 1.0% SR ablation gain, but the paper does not define any measured result in terms of that frame, and the central VPA evaluation uses text goals only; this is a validity risk, not circularity. The MTP head reuses the unembedding matrix with LoRA; this is an architectural modification with an independent head-architecture ablation (Table 7). The paper cites prior work with overlapping authors (VidAssist, VLaMP), but only as external benchmarks, and the comparisons are straightforward and not used to justify the paper's premises. No fitted parameter is renamed as a prediction, and no uniqueness or ansatz is imported via self-citation. The paper is self-contained against external benchmarks, so the circularity score is 0.
Assumptions & free parameters
free parameters (3)
- number of multi-token prediction heads =
4
- LoRA rank =
64
- frames sampled per video =
100
assumptions (4)
- domain assumption Multi-token prediction improves long-horizon generation in language models
- domain assumption Sentence-BERT embeddings reliably match free-form action text to the closed action vocabulary
- domain assumption The visual encoder features (MetaCLIP or VideoCLIP) capture sufficient state information for planning
- ad hoc to paper Training with a goal image of the final state transfers to text-only goal inference
Cite this review
Pith. "Pith review of Enhancing Visual Planning with Auxiliary Tasks and Multi-token Prediction." pith.science (2026). https://pith.science/paper/SVFN2ZJZ
@misc{pith2026250715130,
author = {Pith},
title = {Pith review of: Enhancing Visual Planning with Auxiliary Tasks and Multi-token Prediction},
year = {2026},
howpublished = {\url{https://pith.science/paper/SVFN2ZJZ}},
note = {Machine review of arXiv:2507.15130}
}
read the original abstract
Visual Planning for Assistance (VPA) aims to predict a sequence of user actions required to achieve a specified goal based on a video showing the user's progress. Although recent advances in multimodal large language models (MLLMs) have shown promising results in video understanding, long-horizon visual planning remains a challenging problem. We identify two challenges in training large MLLMs for video-based planning tasks: (1) scarcity of procedural annotations, limiting the model's ability to learn procedural task dynamics effectively, and (2) inefficiency of next-token prediction objective to explicitly capture the structured action space for visual planning when compared to free-form, natural language. To tackle data scarcity, we introduce Auxiliary Task Augmentation. We design and train our model on auxiliary tasks relevant to long-horizon video-based planning (e.g., goal prediction) to augment the model's planning ability. To more explicitly model the structured action space unique to visual planning tasks, we leverage Multi-token Prediction, extending traditional next-token prediction by using multiple heads to predict multiple future tokens during training. Our approach, VideoPlan, achieves state-of-the-art VPA performance on the COIN and CrossTask datasets, surpassing prior methods by 7.3% and 3.4%, respectively, when predicting 3 future actions. We further extend our method to the challenging Ego4D Long-term Action Anticipation task, and show that it is on par with the state-of-the-art approaches despite not using specialized egocentric features. Code will be made available.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 1 Pith paper
-
GeoWorld: Geometric World Models
GeoWorld applies hyperbolic geometry to JEPA world models and introduces geometric reinforcement learning, reporting modest success-rate gains of ~3% and ~2% on 3- and 4-step planning tasks versus V-JEPA 2.
Reference graph
Works this paper leans on
-
[1]
When will you do what?-anticipating temporal occurrences of activities
Yazan Abu Farha, Alexander Richard, and Juergen Gall. When will you do what?-anticipating temporal occurrences of activities. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 5343–5352,
-
[2]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ah- mad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774 ,
-
[3]
Flamingo: a visual language model for few-shot learning
Jean-Baptiste Alayrac, Jeff Donahue, Pauline Luc, Antoine Miech, Iain Barr, Yana Hasson, Karel Lenc, Arthur Men- sch, Katherine Millican, Malcolm Reynolds, et al. Flamingo: a visual language model for few-shot learning. Advances in neural information processing systems, 35:23716–23736,
-
[4]
Hiervl: Learning hierarchical video- language embeddings
Kumar Ashutosh, Rohit Girdhar, Lorenzo Torresani, and Kristen Grauman. Hiervl: Learning hierarchical video- language embeddings. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 23066–23078, 2023. 3
work page 2023
-
[5]
Procedure planning in instructional videos
Chien-Yi Chang, De-An Huang, Danfei Xu, Ehsan Adeli, Li Fei-Fei, and Juan Carlos Niebles. Procedure planning in instructional videos. In European Conference on Computer Vision, pages 334–350. Springer, 2020. 2, 3, 6
work page 2020
-
[6]
Spatialvlm: Endow- ing vision-language models with spatial reasoning capabili- ties
Boyuan Chen, Zhuo Xu, Sean Kirmani, Brain Ichter, Dorsa Sadigh, Leonidas Guibas, and Fei Xia. Spatialvlm: Endow- ing vision-language models with spatial reasoning capabili- ties. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition , pages 14455–14465,
-
[7]
Egoplan-bench: Benchmarking egocentric embodied plan- ning with multimodal large language models
Yi Chen, Yuying Ge, Yixiao Ge, Mingyu Ding, Bohao Li, Rui Wang, Ruifeng Xu, Ying Shan, and Xihui Liu. Egoplan-bench: Benchmarking egocentric embodied plan- ning with multimodal large language models. arXiv preprint arXiv:2312.06722, 2023. 3
arXiv 2023
-
[8]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020. 5
arXiv 2010
Show all 62 references
-
[9]
Better & faster large language models via multi-token prediction
Fabian Gloeckle, Badr Youbi Idrissi, Baptiste Rozi`ere, David Lopez-Paz, and Gabriel Synnaeve. Better & faster large language models via multi-token prediction. arXiv preprint arXiv:2404.19737, 2024. 2, 4, 5, 7, 8
2024 arXiv
-
[10]
Ego4d: Around the world in 3,000 hours of egocentric video
Kristen Grauman, Andrew Westbury, Eugene Byrne, Zachary Chavis, Antonino Furnari, Rohit Girdhar, Jackson Hamburger, Hao Jiang, Miao Liu, Xingyu Liu, et al. Ego4d: Around the world in 3,000 hours of egocentric video. InPro- ceedings of the IEEE/CVF Conference on Computer Vision...
2022
-
[11]
Reasoning with language model is planning with world model
Shibo Hao, Yi Gu, Haodi Ma, Joshua Jiahua Hong, Zhen Wang, Daisy Zhe Wang, and Zhiting Hu. Reasoning with language model is planning with world model. arXiv preprint arXiv:2305.14992, 2023. 2
2023 arXiv
-
[12]
Lora: Low-rank adaptation of large language models
Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen- Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. Lora: Low-rank adaptation of large language models. arXiv preprint arXiv:2106.09685, 2021. 5, 1
2021 arXiv
-
[13]
Vtimellm: Empower llm to grasp video moments
Bin Huang, Xin Wang, Hong Chen, Zihan Song, and Wenwu Zhu. Vtimellm: Empower llm to grasp video moments. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 14271–14280, 2024. 2, 5
2024
-
[14]
Language models as zero-shot planners: Extract- ing actionable knowledge for embodied agents
Wenlong Huang, Pieter Abbeel, Deepak Pathak, and Igor Mordatch. Language models as zero-shot planners: Extract- ing actionable knowledge for embodied agents. In Interna- tional Conference on Machine Learning , pages 9118–9147. PMLR, 2022. 2, 6
2022
-
[15]
Propose, assess, search: Harnessing llms for goal- oriented planning in instructional videos
Md Mohaiminul Islam, Tushar Nagarajan, Huiyu Wang, Fu-Jen Chu, Kris Kitani, Gedas Bertasius, and Xitong Yang. Propose, assess, search: Harnessing llms for goal- oriented planning in instructional videos. arXiv preprint arXiv:2409.20557, 2024. 2, 3, 6
2024 arXiv
-
[16]
Palm: Predicting actions through language models
Sanghwan Kim, Daoji Huang, Yongqin Xian, Otmar Hilliges, Luc Van Gool, and Xi Wang. Palm: Predicting actions through language models. In European Conference on Computer Vision, pages 140–158. Springer, 2025. 3, 6, 7
2025
-
[17]
Llava-onevision: Easy visual task transfer
Bo Li, Yuanhan Zhang, Dong Guo, Renrui Zhang, Feng Li, Hao Zhang, Kaichen Zhang, Yanwei Li, Ziwei Liu, and Chunyuan Li. Llava-onevision: Easy visual task transfer. arXiv preprint arXiv:2408.03326, 2024. 2, 5
2024 arXiv
-
[18]
Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models
Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi. Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models. In In- ternational conference on machine learning , pages 19730– 19742. PMLR, 2023. 2, 5
2023
-
[19]
Videochat: Chat-centric video understanding
KunChang Li, Yinan He, Yi Wang, Yizhuo Li, Wenhai Wang, Ping Luo, Yali Wang, Limin Wang, and Yu Qiao. Videochat: Chat-centric video understanding. arXiv preprint arXiv:2305.06355, 2023. 2
2023 arXiv
-
[20]
Mvbench: A comprehensive multi-modal video understand- ing benchmark
Kunchang Li, Yali Wang, Yinan He, Yizhuo Li, Yi Wang, Yi Liu, Zun Wang, Jilan Xu, Guo Chen, Ping Luo, et al. Mvbench: A comprehensive multi-modal video understand- ing benchmark. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 22195–...
2024
-
[21]
Llama-vid: An image is worth 2 tokens in large language models
Yanwei Li, Chengyao Wang, and Jiaya Jia. Llama-vid: An image is worth 2 tokens in large language models. In European Conference on Computer Vision, pages 323–340. Springer, 2025. 2, 5
2025
-
[22]
Skip-plan: Procedure plan- ning in instructional videos via condensed action space learn- ing
Zhiheng Li, Wenjia Geng, Muheng Li, Lei Chen, Yansong Tang, Jiwen Lu, and Jie Zhou. Skip-plan: Procedure plan- ning in instructional videos via condensed action space learn- ing. In Proceedings of the IEEE/CVF International Confer- ence on Computer Vision, pages 10297–10306, 2023. 3
2023
-
[23]
Video-llava: Learning united visual rep- resentation by alignment before projection
Bin Lin, Yang Ye, Bin Zhu, Jiaxi Cui, Munan Ning, Peng Jin, and Li Yuan. Video-llava: Learning united visual rep- resentation by alignment before projection. arXiv preprint arXiv:2311.10122, 2023. 2, 5
2023 arXiv
-
[24]
Llm+ p: Empower- ing large language models with optimal planning proficiency
Bo Liu, Yuqian Jiang, Xiaohan Zhang, Qiang Liu, Shiqi Zhang, Joydeep Biswas, and Peter Stone. Llm+ p: Empower- ing large language models with optimal planning proficiency. arXiv preprint arXiv:2304.11477, 2023. 2
2023 arXiv
-
[25]
Visual instruction tuning
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning. Advances in neural information processing systems, 36, 2024. 2, 3, 4
2024
-
[26]
A language-first approach for procedure planning
Jiateng Liu, Sha Li, Zhenhailong Wang, Manling Li, and Heng Ji. A language-first approach for procedure planning. In Findings of the Association for Computational Linguis- tics: ACL 2023, pages 1941–1954, 2023. 3, 2
2023
-
[27]
Intention-conditioned long-term human egocentric action anticipation
Esteve Valls Mascar ´o, Hyemin Ahn, and Dongheui Lee. Intention-conditioned long-term human egocentric action anticipation. In Proceedings of the IEEE/CVF Winter Con- ference on Applications of Computer Vision , pages 6048– 6057, 2023. 3
2023
-
[28]
Can’t make an omelette without breaking some eggs: Plausible action anticipation using large video- language models
Himangi Mittal, Nakul Agarwal, Shao-Yuan Lo, and Kwon- joon Lee. Can’t make an omelette without breaking some eggs: Plausible action anticipation using large video- language models. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 1...
2024
-
[29]
Any- mal: An efficient and scalable any-modality augmented lan- guage model
Seungwhan Moon, Andrea Madotto, Zhaojiang Lin, Tushar Nagarajan, Matt Smith, Shashank Jain, Chun-Fu Yeh, Prakash Murugesan, Peyman Heidari, Yue Liu, et al. Any- mal: An efficient and scalable any-modality augmented lan- guage model. In Proceedings of the 2024 Conference on Emp...
2024
-
[30]
Embodiedgpt: Vision-language pre-training via embodied chain of thought
Yao Mu, Qinglong Zhang, Mengkang Hu, Wenhai Wang, Mingyu Ding, Jun Jin, Bin Wang, Jifeng Dai, Yu Qiao, and Ping Luo. Embodiedgpt: Vision-language pre-training via embodied chain of thought. Advances in Neural Information Processing Systems, 36, 2024. 2
2024
-
[31]
Ego-topo: Environment affordances from egocentric video
Tushar Nagarajan, Yanghao Li, Christoph Feichtenhofer, and Kristen Grauman. Ego-topo: Environment affordances from egocentric video. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognition, pages 163–172, 2020. 3
2020
-
[32]
Why not use your text- book? knowledge-enhanced procedure planning of instruc- tional videos
Kumaranage Ravindu Yasas Nagasinghe, Honglu Zhou, Malitha Gunawardhana, Martin Renqiang Min, Daniel Harari, and Muhammad Haris Khan. Why not use your text- book? knowledge-enhanced procedure planning of instruc- tional videos. In Proceedings of the IEEE/CVF Conference on Compu...
2024
-
[33]
Re- thinking learning approaches for long-term action anticipa- tion
Megha Nawhal, Akash Abdu Jyothi, and Greg Mori. Re- thinking learning approaches for long-term action anticipa- tion. In European Conference on Computer Vision , pages 558–576. Springer, 2022. 3
2022
-
[34]
Do pre-trained vision-language models en- code object states? arXiv preprint arXiv:2409.10488, 2024
Kaleb Newman, Shijie Wang, Yuan Zang, David Heffren, and Chen Sun. Do pre-trained vision-language models en- code object states? arXiv preprint arXiv:2409.10488, 2024. 1
2024 arXiv
-
[35]
Schema: State changes matter for pro- cedure planning in instructional videos
Yulei Niu, Wenliang Guo, Long Chen, Xudong Lin, and Shih-Fu Chang. Schema: State changes matter for pro- cedure planning in instructional videos. arXiv preprint arXiv:2403.01599, 2024. 3, 1
2024 arXiv
-
[36]
Pretrained language models as visual planners for human assistance
Dhruvesh Patel, Hamid Eghbalzadeh, Nitin Kamra, Michael Louis Iuzzolino, Unnat Jain, and Ruta Desai. Pretrained language models as visual planners for human assistance. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 15302–15314, 2023. 1, 2, 3, 6
2023
-
[37]
Egovideo: Exploring egocentric founda- tion model and downstream adaptation
Baoqi Pei, Guo Chen, Jilan Xu, Yuping He, Yicheng Liu, Kanghua Pan, Yifei Huang, Yali Wang, Tong Lu, Limin Wang, et al. Egovideo: Exploring egocentric founda- tion model and downstream adaptation. arXiv preprint arXiv:2406.18070, 2024. 6, 7
2024 arXiv
-
[38]
Sentence-bert: Sentence embeddings using siamese bert-networks
N Reimers. Sentence-bert: Sentence embeddings using siamese bert-networks. arXiv preprint arXiv:1908.10084 ,
1908 arXiv
-
[39]
Timechat: A time-sensitive multimodal large lan- guage model for long video understanding
Shuhuai Ren, Linli Yao, Shicheng Li, Xu Sun, and Lu Hou. Timechat: A time-sensitive multimodal large lan- guage model for long video understanding. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition, pages 14313–14323, 2024. 2
2024
-
[40]
Llm-planner: Few-shot grounded planning for embodied agents with large language models
Chan Hee Song, Jiaman Wu, Clayton Washington, Brian M Sadler, Wei-Lun Chao, and Yu Su. Llm-planner: Few-shot grounded planning for embodied agents with large language models. In Proceedings of the IEEE/CVF International Con- ference on Computer Vision, pages 2998–3009, 2023. 2
2023
-
[41]
Moviechat: From dense token to sparse memory for long video understanding
Enxin Song, Wenhao Chai, Guanhong Wang, Yucheng Zhang, Haoyang Zhou, Feiyang Wu, Haozhe Chi, Xun Guo, Tian Ye, Yanting Zhang, et al. Moviechat: From dense token to sparse memory for long video understanding. In Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pa...
2024
-
[42]
Coin: A large-scale dataset for comprehensive instructional video analysis
Yansong Tang, Dajun Ding, Yongming Rao, Yu Zheng, Danyang Zhang, Lili Zhao, Jiwen Lu, and Jie Zhou. Coin: A large-scale dataset for comprehensive instructional video analysis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 1207– 12...
2019
-
[43]
Learning object states from actions via large language models
Masatoshi Tateno, Takuma Yagi, Ryosuke Furuta, and Yoichi Sato. Learning object states from actions via large language models. arXiv preprint arXiv:2405.01090, 2024. 1
2024 arXiv
-
[44]
Llama 2: Open foundation and fine-tuned chat models.arXiv preprint arXiv:2307.09288, 2023
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine-tuned chat models.arXiv preprint arXiv:2307.09288, 2023. 2, 5, 6
2023 arXiv
-
[45]
User-in-the-loop evaluation of multimodal llms for activity assistance
Mrinal Verghese, Brian Chen, Hamid Eghbalzadeh, Tushar Nagarajan, and Ruta Desai. User-in-the-loop evaluation of multimodal llms for activity assistance. arXiv preprint arXiv:2408.03160, 2024. 2
2024 arXiv
-
[46]
Event-guided procedure planning from in- structional videos with text supervision
An-Lan Wang, Kun-Yu Lin, Jia-Run Du, Jingke Meng, and Wei-Shi Zheng. Event-guided procedure planning from in- structional videos with text supervision. In Proceedings of the IEEE/CVF International Conference on Computer Vi- sion, pages 13565–13575, 2023. 3
2023
-
[47]
Pdpp: Projected diffusion for procedure planning in instructional videos
Hanlin Wang, Yilu Wu, Sheng Guo, and Limin Wang. Pdpp: Projected diffusion for procedure planning in instructional videos. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 14836– 14845, 2023. 3
2023
-
[48]
Vamos: Versatile action models for video understanding
Shijie Wang, Qi Zhao, Minh Quan Do, Nakul Agar- wal, Kwonjoon Lee, and Chen Sun. Vamos: Versatile action models for video understanding. arXiv preprint arXiv:2311.13627, 2023. 3, 7
2023 arXiv
-
[49]
Learn- ing object state changes in videos: An open-world perspec- tive
Zihui Xue, Kumar Ashutosh, and Kristen Grauman. Learn- ing object state changes in videos: An open-world perspec- tive. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition , pages 18493–18503,
-
[50]
Octopus: Embodied vision- language programmer from environmental feedback, 2023
Jingkang Yang, Yuhao Dong, Shuai Liu, Bo Li, Ziyue Wang, Chencheng Jiang, Haoran Tan, Jiamu Kang, Yuanhan Zhang, Kaiyang Zhou, and Ziwei Liu. Octopus: Embodied vision- language programmer from environmental feedback, 2023. 2
2023
-
[51]
Rap: Retrieval-augmented planner for adaptive proce- dure planning in instructional videos
Ali Zare, Yulei Niu, Hammad Ayyubi, and Shih-fu Chang. Rap: Retrieval-augmented planner for adaptive proce- dure planning in instructional videos. arXiv preprint arXiv:2403.18600, 2024. 3
2024 arXiv
-
[52]
Object-centric video representation for long-term action anticipation
Ce Zhang, Changcheng Fu, Shijie Wang, Nakul Agarwal, Kwonjoon Lee, Chiho Choi, and Chen Sun. Object-centric video representation for long-term action anticipation. In Proceedings of the IEEE/CVF Winter Conference on Appli- cations of Computer Vision, pages 6751–6761, 2024. 3, 7
2024
-
[53]
Video-llama: An instruction-tuned audio-visual language model for video un- derstanding
Hang Zhang, Xin Li, and Lidong Bing. Video-llama: An instruction-tuned audio-visual language model for video un- derstanding. arXiv preprint arXiv:2306.02858, 2023. 2
2023 arXiv
-
[54]
P3iv: Prob- abilistic procedure planning from instructional videos with weak supervision
He Zhao, Isma Hadji, Nikita Dvornik, Konstantinos G Der- panis, Richard P Wildes, and Allan D Jepson. P3iv: Prob- abilistic procedure planning from instructional videos with weak supervision. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recognitio...
2022
-
[55]
Antgpt: Can large language models help long- term action anticipation from videos? arXiv preprint arXiv:2307.16368, 2023
Qi Zhao, Shijie Wang, Ce Zhang, Changcheng Fu, Minh Quan Do, Nakul Agarwal, Kwonjoon Lee, and Chen Sun. Antgpt: Can large language models help long- term action anticipation from videos? arXiv preprint arXiv:2307.16368, 2023. 3, 7
2023 arXiv
-
[56]
Towards learning a generalist model for embod- ied navigation
Duo Zheng, Shijia Huang, Lin Zhao, Yiwu Zhong, and Li- wei Wang. Towards learning a generalist model for embod- ied navigation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 13624– 13634, 2024. 2
2024
-
[57]
Judging llm-as-a-judge with mt-bench and chatbot arena.Advances in Neural Information Processing Systems, 36:46595–46623, 2023
Lianmin Zheng, Wei-Lin Chiang, Ying Sheng, Siyuan Zhuang, Zhanghao Wu, Yonghao Zhuang, Zi Lin, Zhuohan Li, Dacheng Li, Eric Xing, et al. Judging llm-as-a-judge with mt-bench and chatbot arena.Advances in Neural Information Processing Systems, 36:46595–46623, 2023. 2
2023
-
[58]
Minigpt-4: Enhancing vision-language understanding with advanced large language models
Deyao Zhu, Jun Chen, Xiaoqian Shen, Xiang Li, and Mo- hamed Elhoseiny. Minigpt-4: Enhancing vision-language understanding with advanced large language models. arXiv preprint arXiv:2304.10592, 2023. 2
2023 arXiv
-
[59]
Cross- task weakly supervised learning from instructional videos
Dimitri Zhukov, Jean-Baptiste Alayrac, Ramazan Gokberk Cinbis, David Fouhey, Ivan Laptev, and Josef Sivic. Cross- task weakly supervised learning from instructional videos. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 3537–3545, 2...
2019
-
[60]
before” with “after
Additional Experiments 6.1. Ablations on Visual Encoder Table 9 shows the performance of different visual encoders in our model. We use Llama2-7B as the LLM for all ex- periments. The results show that MetaCLIP as the visual encoder outperforms VideoCLIP across all metrics. Vi...
-
[61]
Training We train our model for 1 epoch with a batch size of 1024
Additional Implementation Details 7.1. Training We train our model for 1 epoch with a batch size of 1024. We set gradient accumulation step to 16 to reduce GPU memory usage. For all experiments, we use LoRA [12] for efficient fine-tuning. The LoRA parameters are set to r = 64a...
-
[62]
dough”, “container
Qualitative Analysis VPA. We visualize success cases and failure cases of our method in Figure 5. The predictions in the figure are raw outputs from our method with little post-processing. Al- though our method generates free-from text as outputs, the raw outputs still make va...
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.