REVIEW 3 major objections 6 minor 1 cited by
Fostering Video Reasoning via Next-Event Prediction
T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper claims that training video-language models to predict unseen future events, using automatically generated captions as supervision, improves their temporal reasoning without degrading general video understanding.
desk verdict Useful new task and dataset, but the headline causal claim rests on a confounded comparison and a partially circular benchmark. 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 NEP task formulation: with a video split into past frames and future frames, the model sees only the past and must write a summary of the future. The task is made trainable by a four-stage pipeline — vision-language captioning of the full video, LLM-based scene and causal analysis to pick a split point, segmentation into input and target parts, and reasoning plus critique to generate and filter predictions — that yields V1-33K. FutureBench operationalizes the same skill by asking models to fill one to three missing future events (extrapolation) or to bridge between anchor events (interpolation). The reasoning-and-critique stage matters because predicted continuations are checked against the actual later caption, so training rewards futures that really happened, not merely plausible ones.
What would settle it
Train a control model on the same V1-33K segments but with the full video visible, asking it to caption the later part; if FutureBench and temporal-benchmark gains match NEP's, the temporal improvement comes from the extra caption data rather than from hiding the future. Conversely, randomizing past/future splits so the target is not a true continuation should show whether genuine causal ordering is what matters.
Extended reading notes
Core claim
The central claim is that next-event prediction is a better learning task than captioning or video question answering for teaching temporal reasoning, because it hides the answer from the model. Training on NEP requires the model to infer likely continuations from visual cues and stored world knowledge instead of extracting facts from visible frames; the paper reports that this deduction-style objective outperforms equal-size training on captioning, multiple-choice QA, open-ended QA, and previous-event prediction across TemporalBench, TempCompass, SeedBench-R1, and the new FutureBench. NEP training also preserves average performance on the general benchmarks VideoMME, MVBench, and LongVideoBench. The paper frames NEP as the video analogue of next-token prediction: a task whose supervision is automatically available, yet rich enough to require multi-step causal inference.
Load-bearing premise
That the gains come from the prediction task itself, not from differences between the V1-33K data pipeline and the LLaVA-Video-178K baselines — an assumption made fragile by the fact that FutureBench is built from the same pipeline as the training data.
Editorial extensions
If this is right
- NEP can be added to video instruction tuning as a drop-in task: on Qwen2.5-VL-7B it lifts the temporal-benchmark average from 49.7 to 53.5 while the general average stays at 60.9.
- Deduction (predicting the next event) beats induction (full-video QA) and abduction (previous-event prediction) at equal training size on temporal benchmarks, suggesting predictive extrapolation is a stronger reasoning exercise.
- Plain supervised fine-tuning on NEP gives most of the benefit; mixing SFT with critique and distillation data yields the best temporal average, but scaling beyond about 5K samples does not consistently improve and can degrade performance.
- Applying GRPO reinforcement learning to NEP-style multiple-choice questions improves in-distribution and out-of-distribution future-event prediction, including 3-hop and interpolation tasks, but lowers general-video scores and shows reward hacking, so SFT remains the more balanced recipe.
Reading between the lines
- FutureBench is generated with the same caption-splitting pipeline as V1-33K, so part of NEP's edge may reflect train/evaluation distribution overlap rather than a general leap in temporal reasoning; an independent, human-annotated future-event benchmark would settle that.
- The supervision ceiling is set by the model that writes the captions, so NEP inherits whatever biases that model has; the paper's limitation section acknowledges this and suggests diversifying annotation sources.
- A natural extension the paper tests separately but not jointly is combining next-event prediction with previous-event prediction, which would train both forward and backward causal inference in one model.
- The non-monotonic scaling curves imply NEP is best used as one component inside a larger instruction-mixture, not as a standalone large-scale objective.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes next-event prediction (NEP) as a learning task for video MLLMs: a video is split into past and future segments, and the model is trained to generate a caption-like summary of the unobserved future segment from the past frames. The authors introduce V1-33K, a roughly 33,000-sample dataset built with a four-stage automatic pipeline (fact translation, analysis, segmentation, reasoning/critique), and FutureBench, a 1,056-question multiple-choice benchmark with 1/2/3-hop extrapolation and interpolation settings. Experiments compare NEP against captioning, MCQA, and OEQA instruction tuning; compare SFT/CFT/Distill/Mix training strategies; and add a GRPO reinforcement-learning variant. The paper concludes that NEP significantly enhances temporal reasoning while preserving general video understanding.
Significance. The proposal is interesting, and the artifact release (code, dataset, and benchmark) is a useful community contribution. If the causal claim were cleanly established, NEP would be an attractive scalable alternative to human- or stronger-MLLM-annotated video reasoning data. The benchmark design with varying hop distances is thoughtful, and the GRPO experiment reports out-of-distribution transfer to 3-hop and interpolation tasks, as well as a candid discussion of reward hacking. The main weakness is that the central comparison (Table 1) confounds learning task with training data source, and FutureBench partially shares its construction pipeline and distribution with the NEP training data; the headline causal attribution is therefore not yet supported.
major comments (3)
- [§4.1, Table 1] The comparison in Table 1 is not matched: NEP is trained on V1-33K, while Captioning, MCQA, and OEQA are trained on LLaVA-Video-178K, with only sample count held equal (3K). The reported gains on TemporalBench, TempCompass, SeedBench-R1, and FutureBench therefore conflate the learning task with the training data source, annotation style, and the fact that baselines see the full video while NEP sees only the first part. A matched comparison—for example, captioning/MCQA/OEQA tasks derived from V1-33K, or NEP trained on LLaVA-Video-178K examples—is required to support the causal claim in the abstract and in Section 5. Without it, the central attribution that incorporating NEP significantly enhances temporal reasoning is not established.
- [§3.2, §B.2] FutureBench is generated with the same four-stage pipeline, the same captioning models, and the same video-source topology as V1-33K, and §3.1 explicitly describes the 1-hop extrapolation task as a standard NEP. Consequently, NEP-trained models are evaluated largely in-distribution on FutureBench, whereas baseline models trained on LLaVA-Video-178K are not. The large FutureBench gap (61.3 vs 52.6 for Instruct, Table 1) may reflect format and template familiarity rather than improved temporal coherence. Please report averages excluding FutureBench and add at least one independently constructed (ideally human-authored) benchmark before interpreting FutureBench as neutral evidence. Appendix F lists other limitations but not this evaluation-loop risk.
- [§4.3, Table 4] The GRPO experiment is the strongest piece of generalization evidence in the paper: 3-hop and interpolation gains over SFT show that the trained policy transfers beyond the 1-hop training task. However, the RL training set is itself a FutureBench-style QA set derived from V1-33K via the same pipeline, so the OOD claim is relative to hop count, not to the broader distribution shared with FutureBench. Moreover, the reward hacking reported in Section 4.3 shows that MCQA-format training can exploit lexical shortcuts; this cautions against reading the FutureBench numbers in Tables 1–3 as pure measures of temporal reasoning.
minor comments (6)
- [§3.2] In the sentence reporting the o4-mini text-only result, 'suggestion' should be 'suggesting'.
- [Appendix B.1, Appendix F] There are typos: 'pecifically' should be 'specifically' in Appendix B.1, and 'urrent state-of-the-art' should be 'current state-of-the-art' in Appendix F.
- [References] References [6] and [7] are identical (the SeedBench-R1 technical report); please merge or disambiguate them.
- [References] Reference [42] is cited for LLaVA-Video-178K, but the listed title is 'Video-LLaMA: An Instruction-tuned Audio-Visual Language Model for Video Understanding'; this appears to be a citation mismatch.
- [Figure 6] Figure 6 is hard to parse: the arrows for abduction and deduction both point to the same 'Answer SpanObservation' box, and the what-happened-before versus what-happens-next distinction is not visually clear; consider a clearer diagram of the past/future input partition.
- [Section 2.4, Appendix C] The training target is described in Section 2.1 as a summary of future frames, but Appendix C distinguishes SFT (ground-truth captions), CFT (critiques), and Distill (reasoning traces); please state explicitly which target each strategy uses for the language-modeling loss.
Circularity Check
FutureBench is built by the same pipeline as the NEP training set and its 1-hop task is explicitly 'a standard NEP', so the headline FutureBench gains are partly in-distribution; independent external benchmarks still provide partial support.
-
self definitional
[Section 3.1 (Future Event Prediction—Extrapolation), Section 3.2 (Question-Answer Generation), Appendix B.2]
"1-Hop: The model predicts a single future event that directly links the observed scenes to the final one. This corresponds to a standard NEP. ... we construct another distinct video dataset from V1-33K, following the same processing pipeline illustrated in Figure 4. ... the videos used in FutureBench have no overlap with V1-33K to ensure fair evaluation despite the same curation pipeline."
The NEP training target is exactly a textual summary of the future segment given the past segment. FutureBench 1-hop asks the model to fill in the single missing future event between the observed segment and the final scene, and the paper itself says this 'corresponds to a standard NEP.' FutureBench was additionally built from V1-33K videos using the same four-stage caption/segmentation/reasoning pipeline as the V1-33K training set (Figure 4), so its question format, caption style, and event decomposition match the training distribution. Thus the large FutureBench improvement (e.g., 61.3 vs 52.6 for Instruct) is to a substantial degree a held-out test of the very task on which the model was trained, not an independent probe of temporal-reasoning generalization.
full rationale
The paper's main causal claim is that NEP itself improves temporal reasoning. The evidence is mixed. FutureBench is a self-built benchmark, and Section 3.1 states that the 1-hop task 'corresponds to a standard NEP'; Section 3.2 states that FutureBench was built 'following the same processing pipeline' as V1-33K. Consequently, gains on FutureBench partly measure mastery of the same task and annotation distribution used in training, not purely transferable temporal reasoning. Appendix B.2 controls only video overlap, not task/distribution overlap. The GRPO experiment's 3-hop and interpolation results are genuine OOD tests, and the external temporal benchmarks (TemporalBench, TempCompass, SeedBench-R1) are not built by the authors, which provides some independent support. However, Table 1 compares NEP trained on V1-33K to other tasks trained on LLaVA-Video-178K, confounding task with data source; this is a methodological confound rather than a definitional circularity. We therefore flag one partial evaluation loop (score 6) but no fully circular derivation, and no load-bearing self-citation.
Assumptions & free parameters
assumptions (3)
- domain assumption Automatically generated captions for future video segments are accurate enough to serve as ground truth for training and evaluation.
- domain assumption The LLM-selected split point marks a boundary where the future is causally predictable from the past.
- domain assumption Temporal benchmark gains are caused by the task formulation rather than by data distribution and annotation style.
Cite this review
Pith. "Pith review of Fostering Video Reasoning via Next-Event Prediction." pith.science (2026). https://pith.science/paper/ZRT7EDYY
@misc{pith2026250522457,
author = {Pith},
title = {Pith review of: Fostering Video Reasoning via Next-Event Prediction},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZRT7EDYY}},
note = {Machine review of arXiv:2505.22457}
}
read the original abstract
Next-token prediction serves as the foundational learning task enabling reasoning in LLMs. But what should the learning task be when aiming to equip MLLMs with temporal reasoning capabilities over video inputs? Existing tasks such as video question answering often rely on annotations from humans or much stronger MLLMs, while video captioning tends to entangle temporal reasoning with spatial information. To address this gap, we propose next-event prediction (NEP), a learning task that harnesses future video segments as a rich, self-supervised signal to foster temporal reasoning. We segment each video into past and future frames: the MLLM takes the past frames as input and predicts a summary of events derived from the future frames, thereby encouraging the model to reason temporally in order to complete the task. To support this task, we curate V1-33K, a dataset comprising 33,000 automatically extracted video segments spanning diverse real-world scenarios. We further explore a range of video instruction-tuning strategies to study their effects on temporal reasoning. To evaluate progress, we introduce FutureBench to assess coherence in predicting unseen future events. Experiments validate that NEP offers a scalable and effective training paradigm for fostering temporal reasoning in MLLMs.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 1 Pith paper
-
FutureOmni: Evaluating Future Forecasting from Omni-Modal Context for Multimodal LLMs
FutureOmni, a 919-video, 1,034-question audio-visual future-forecasting benchmark, shows top MLLMs reach only 64.8% accuracy, and OFF tuning improves open models.
Reference graph
Works this paper leans on
-
[1]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023
arXiv 2023
-
[2]
Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xiaodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, et al. Qwen technical report. arXiv preprint arXiv:2309.16609, 2023
arXiv 2023
-
[3]
Shuai Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, Sibo Song, Kai Dang, Peng Wang, Shijie Wang, Jun Tang, Humen Zhong, Yuanzhi Zhu, Mingkun Yang, Zhaohai Li, Jianqiang Wan, Pengfei Wang, Wei Ding, Zheren Fu, Yiheng Xu, Jiabo Ye, Xi Zhang, Tianbao Xie, Zesen Cheng, Hang Zhang, Zhibo Yang, Haiyang Xu, and Junyang Lin. Qwen2.5-vl technical report. a...
arXiv 2025
-
[4]
Kristin Behfar and Gerardo A Okhuysen. Perspective—discovery within validation logic: Deliberately surfacing, complementing, and substituting abductive reasoning in hypothetico- deductive inquiry. Organization Science, 29(2):323–340, 2018
work page 2018
-
[5]
Temporalbench: Benchmarking fine-grained temporal understanding for multimodal video models
Mu Cai, Reuben Tan, Jianrui Zhang, Bocheng Zou, Kai Zhang, Feng Yao, Fangrui Zhu, Jing Gu, Yiwu Zhong, Yuzhang Shang, et al. Temporalbench: Benchmarking fine-grained temporal understanding for multimodal video models. arXiv preprint arXiv:2410.10818, 2024
-
[7]
Exploring the effect of reinforcement learning on video understanding: Insights from seed-bench-r1
Yi Chen, Yuying Ge, Rui Wang, Yixiao Ge, Lu Qiu, Ying Shan, and Xihui Liu. Exploring the effect of reinforcement learning on video understanding: Insights from seed-bench-r1. arXiv preprint arXiv:2503.24376, 2025
arXiv 2025
-
[8]
Inductive or deductive? rethinking the fundamental reasoning abilities of llms
Kewei Cheng, Jingfeng Yang, Haoming Jiang, Zhengyang Wang, Binxuan Huang, Ruirui Li, Shiyang Li, Zheng Li, Yifan Gao, Xian Li, et al. Inductive or deductive? rethinking the fundamental reasoning abilities of llms. arXiv preprint arXiv:2408.00114, 2024
arXiv 2024
-
[9]
Daniel Cores, Michael Dorkenwald, Manuel Mucientes, Cees G. M. Snoek, and Yuki M. Asano. Lost in time: A new temporal benchmark for videollms, 2025. URL https://arxiv.org/ abs/2410.07752
arXiv 2025
Show all 65 references
-
[10]
Abduction
Igor Douven. Abduction. In Edward N. Zalta, editor, The Stanford Encyclopedia of Philosophy. Metaphysics Research Lab, Stanford University, Summer 2021 edition, 2021. 10
2021
-
[11]
Video-mme: The first-ever comprehensive evaluation benchmark of multi-modal llms in video analysis
Chaoyou Fu, Yuhan Dai, Yongdong Luo, Lei Li, Shuhuai Ren, Renrui Zhang, Zihan Wang, Chenyu Zhou, Yunhang Shen, Mengdan Zhang, et al. Video-mme: The first-ever comprehensive evaluation benchmark of multi-modal llms in video analysis. arXiv preprint arXiv:2405.21075, 2024
2024 arXiv
-
[12]
Predicting the future: A jointly learnt model for action anticipation
Harshala Gammulle, Simon Denman, Sridha Sridharan, and Clinton Fookes. Predicting the future: A jointly learnt model for action anticipation. In Proceedings of the IEEE/CVF Interna- tional Conference on Computer Vision, pages 5562–5571, 2019
2019
-
[13]
Inductive and deductive reasoning
Usha Goswami. Inductive and deductive reasoning. The Wiley-Blackwell handbook of childhood cognitive development, pages 399–419, 2010
2010
-
[14]
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning
Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning. arXiv preprint arXiv:2501.12948, 2025
2025 arXiv
-
[15]
Large language models are reasoning teachers
Namgyu Ho, Laura Schmid, and Se-Young Yun. Large language models are reasoning teachers. arXiv preprint arXiv:2212.10071, 2022
2022 arXiv
-
[16]
Gpt-4o system card
Aaron Hurst, Adam Lerer, Adam P Goucher, Adam Perelman, Aditya Ramesh, Aidan Clark, AJ Ostrow, Akila Welihinda, Alan Hayes, Alec Radford, et al. Gpt-4o system card. arXiv preprint arXiv:2410.21276, 2024
2024 arXiv
-
[17]
A hierarchical representation for future action prediction
Tian Lan, Tsung-Chuan Chen, and Silvio Savarese. A hierarchical representation for future action prediction. In Computer Vision–ECCV 2014: 13th European Conference, Zurich, Switzerland, September 6-12, 2014, Proceedings, Part III 13, pages 689–704. Springer, 2014
2014
-
[18]
Llava-onevision: Easy visual task transfer
Bo Li, Yuanhan Zhang, Dong Guo, Renrui Zhang, Feng Li, Hao Zhang, Kaichen Zhang, Peiyuan Zhang, Yanwei Li, Ziwei Liu, et al. Llava-onevision: Easy visual task transfer. arXiv preprint arXiv:2408.03326, 2024
2024 arXiv
-
[19]
Llava-next-interleave: Tackling multi-image, video, and 3d in large multimodal models
Feng Li, Renrui Zhang, Hao Zhang, Yuanhan Zhang, Bo Li, Wei Li, Zejun Ma, and Chunyuan Li. Llava-next-interleave: Tackling multi-image, video, and 3d in large multimodal models. arXiv preprint arXiv:2407.07895, 2024
2024 arXiv
-
[20]
Mvbench: A comprehensive multi-modal video understanding 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 understanding benchmark. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 22195–2...
2024
-
[21]
A survey of multimodel large language models
Zijing Liang, Yanjie Xu, Yifan Hong, Penghui Shang, Qi Wang, Qiang Fu, and Ke Liu. A survey of multimodel large language models. In Proceedings of the 3rd International Conference on Computer, Artificial Intelligence and Control Engineering, pages 405–409, 2024
2024
-
[22]
Video-llava: Learning united visual representation by alignment before projection
Bin Lin, Yang Ye, Bin Zhu, Jiaxi Cui, Munan Ning, Peng Jin, and Li Yuan. Video-llava: Learning united visual representation by alignment before projection. arXiv preprint arXiv:2311.10122, 2023
2023 arXiv
-
[23]
Visual instruction tuning.Advances in neural information processing systems, 36:34892–34916, 2023
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning.Advances in neural information processing systems, 36:34892–34916, 2023
2023
-
[24]
Tempcompass: Do video llms really understand videos? arXiv preprint arXiv:2403.00476, 2024
Yuanxin Liu, Shicheng Li, Yi Liu, Yuxiang Wang, Shuhuai Ren, Lei Li, Sishuo Chen, Xu Sun, and Lu Hou. Tempcompass: Do video llms really understand videos? arXiv preprint arXiv:2403.00476, 2024
2024 arXiv
-
[25]
Training language models to follow instructions with human feedback
Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Carroll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. Training language models to follow instructions with human feedback. Advances in neural information processing systems, 35:2773...
2022
-
[26]
Learning transferable visual models from natural language supervision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervision. In International conference on machine learning, pa...
2021
-
[27]
Video (language) modeling: a baseline for generative models of natural videos
MarcAurelio Ranzato, Arthur Szlam, Joan Bruna, Michael Mathieu, Ronan Collobert, and Sumit Chopra. Video (language) modeling: a baseline for generative models of natural videos. arXiv preprint arXiv:1412.6604, 2014
2014 arXiv
-
[28]
Deepseekmath: Pushing the limits of mathematical reasoning in open language models
Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Xiao Bi, Haowei Zhang, Mingchuan Zhang, YK Li, Y Wu, et al. Deepseekmath: Pushing the limits of mathematical reasoning in open language models. arXiv preprint arXiv:2402.03300, 2024
2024 arXiv
-
[29]
Hybridflow: A flexible and efficient rlhf framework
Guangming Sheng, Chi Zhang, Zilingfeng Ye, Xibin Wu, Wang Zhang, Ru Zhang, Yanghua Peng, Haibin Lin, and Chuan Wu. Hybridflow: A flexible and efficient rlhf framework. arXiv preprint arXiv: 2409.19256, 2024
2024 arXiv
-
[30]
To cot or not to cot? chain- of-thought helps mainly on math and symbolic reasoning
Zayne Sprague, Fangcong Yin, Juan Diego Rodriguez, Dongwei Jiang, Manya Wadhwa, Prasann Singhal, Xinyu Zhao, Xi Ye, Kyle Mahowald, and Greg Durrett. To cot or not to cot? chain- of-thought helps mainly on math and symbolic reasoning. arXiv preprint arXiv:2409.12183, 2024
2024 arXiv
-
[31]
The wisdom of crowds: Temporal progressive attention for early action prediction
Alexandros Stergiou and Dima Damen. The wisdom of crowds: Temporal progressive attention for early action prediction. In IEEE/CVF Computer Vision and Pattern Recognition (CVPR), 2023
2023
-
[32]
Video understanding with large language models: A survey
Yunlong Tang, Jing Bi, Siting Xu, Luchuan Song, Susan Liang, Teng Wang, Daoan Zhang, Jie An, Jingyang Lin, Rongyi Zhu, et al. Video understanding with large language models: A survey. arXiv preprint arXiv:2312.17432, 2023
2023
-
[34]
Gemini: a family of highly capable multimodal models
Gemini Team, Rohan Anil, Sebastian Borgeaud, Jean-Baptiste Alayrac, Jiahui Yu, Radu Soricut, Johan Schalkwyk, Andrew M Dai, Anja Hauth, Katie Millican, et al. Gemini: a family of highly capable multimodal models. arXiv preprint arXiv:2312.11805, 2023
2023 arXiv
-
[35]
Generating videos with scene dynamics
Carl V ondrick, Hamed Pirsiavash, and Antonio Torralba. Generating videos with scene dynamics. Advances in neural information processing systems, 29, 2016
2016
-
[36]
Critique fine-tuning: Learning to critique is more effective than learning to imitate, 2025
Yubo Wang, Xiang Yue, and Wenhu Chen. Critique fine-tuning: Learning to critique is more effective than learning to imitate, 2025. URL https://arxiv.org/abs/2501.17703
2025 arXiv
-
[37]
Chain-of-thought prompting elicits reasoning in large language models
Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Fei Xia, Ed Chi, Quoc V Le, Denny Zhou, et al. Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems, 35:24824–24837, 2022
2022
-
[38]
Longvideobench: A benchmark for long- context interleaved video-language understanding
Haoning Wu, Dongxu Li, Bei Chen, and Junnan Li. Longvideobench: A benchmark for long- context interleaved video-language understanding. Advances in Neural Information Processing Systems, 37:28828–28857, 2024
2024
-
[39]
Next-qa: Next phase of question- answering to explaining temporal actions
Junbin Xiao, Xindi Shang, Angela Yao, and Tat-Seng Chua. Next-qa: Next phase of question- answering to explaining temporal actions. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 9777–9786, June 2021
2021
-
[40]
Tree of thoughts: Deliberate problem solving with large language models
Shunyu Yao, Dian Yu, Jeffrey Zhao, Izhak Shafran, Tom Griffiths, Yuan Cao, and Karthik Narasimhan. Tree of thoughts: Deliberate problem solving with large language models. Ad- vances in neural information processing systems, 36:11809–11822, 2023
2023
-
[41]
Rest-mcts*: Llm self-training via process reward guided tree search
Dan Zhang, Sining Zhoubian, Ziniu Hu, Yisong Yue, Yuxiao Dong, and Jie Tang. Rest-mcts*: Llm self-training via process reward guided tree search. arXiv preprint arXiv:2406.03816, 2024
2024 arXiv
-
[42]
Video-llama: An instruction-tuned audio-visual language model for video understanding
Hang Zhang, Xin Li, and Lidong Bing. Video-llama: An instruction-tuned audio-visual language model for video understanding. arXiv preprint arXiv:2306.02858, 2023
2023 arXiv
-
[43]
Lmms-eval: Reality check on the evaluation of large multimodal models, 2024
Kaichen Zhang, Bo Li, Peiyuan Zhang, Fanyi Pu, Joshua Adrian Cahyono, Kairui Hu, Shuai Liu, Yuanhan Zhang, Jingkang Yang, Chunyuan Li, and Ziwei Liu. Lmms-eval: Reality check on the evaluation of large multimodal models, 2024. URL https://arxiv.org/abs/2407.12772. 12
2024 arXiv
-
[44]
Video instruction tuning with synthetic data
Yuanhan Zhang, Jinming Wu, Wei Li, Bo Li, Zejun Ma, Ziwei Liu, and Chunyuan Li. Video instruction tuning with synthetic data. arXiv preprint arXiv:2410.02713, 2024
2024 arXiv
-
[45]
Llamafactory: Unified efficient fine-tuning of 100+ language models
Yaowei Zheng, Richong Zhang, Junhao Zhang, Yanhan Ye, Zheyan Luo, Zhangchi Feng, and Yongqiang Ma. Llamafactory: Unified efficient fine-tuning of 100+ language models. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 3: System ...
2024 arXiv
-
[46]
Achild…”},{Scene2:“Legsare…
Yaowei Zheng, Junting Lu, Shenzhi Wang, Zhangchi Feng, Dongdong Kuang, and Yuwen Xiong. Easyr1: An efficient, scalable, multi-modality rl training framework. https://github. com/hiyouga/EasyR1, 2025. 13 A Appendix: Related work Video Instruction-Tuning of MLLMs. The fusion of ...
2025
-
[47]
Identify and list the events ( scenes ) in the video in s e q u e n t i a l order ( e . g . , Scene 1 , Scene 2 , etc .)
-
[48]
events
For each scene , provide a d e s c r i p t i o n . Please return your answer in a valid JSON format exactly as follows ( with no extra text ) : { " events ": [ {" scene ": " Scene 1" , " d e s c r i p t i o n ": " Brief d e s c r i p t i o n of scene 1"} , {" scene ": " Scene ...
-
[49]
Analyze the causal r e l a t i o n s h i p s among these events
-
[50]
D et erm in e whether the video is suitable to be split into two parts for causal i nf er en ce ( i . e . , given the first part , can we predict what happens in the second part ?)
-
[51]
suitable
If it is suitable , specify the optimal split point ( for example , ’ between Scene A and Scene B ’) . Please provide your answer in a valid JSON format exactly as follows ( with no extra text ) : { " suitable ": " yes " or " no " , " o p t i m a l _ s p l i t _ p o i n t ": "...
-
[52]
d e s c r i p t i o n
** Replace r e f e r e n c e s to " d e s c r i p t i o n " or " caption "** with wording that r e f e r e n c e s **" the video ."** - For example , " The d e s c r i p t i o n says ..." could become " The video shows ..." - " The caption suggests ..." could become " The vide...
-
[53]
** Preserve all line breaks , punctuation , and spacing ** as much as possible , and make ** no a d d i t i o n a l edits ** outside of these r e p l a c e m e n t s
-
[54]
d e s c r i p t i o n
You should only output the r ew ri tt en content . Here is the input : { r e a s o n i n g _ c o n t e n t } Rewrite Prediction Prompt This prompt standardizes prediction text to explicitly mention the video rather than captions. Rewrite Prediction Prompt You will receive a sn...
-
[55]
d e s c r i p t i o n
** Replace r e f e r e n c e s to " d e s c r i p t i o n " or " caption "** with wording that r e f e r e n c e s **" the video ."** - For example , " The d e s c r i p t i o n says ..." could become " The video shows ..." - " The caption suggests ..." could become " The vide...
-
[56]
Analyze the p r e d i c t i o n and the r ea son in g provided , c o n s i d e r i n g how well they align with the ground truth
-
[57]
Note that a c c u r a t e l y p r e d i c t i n g future events is i n h e r e n t l y c h a l l e n g i n g ; allow for minor d i s c r e p a n c i e s and avoid overly strict j udg me nt s
-
[58]
Think step by step and provide a critique of the p r e d i c t i o n and its u n d e r l y i n g rea so ni ng
-
[59]
C o n c l u s i o n : right
Conclude your analysis by stating either " C o n c l u s i o n : right " if the p r e d i c t i o n aligns well , or " C o n c l u s i o n : wrong " if it does not . Output : Return your analysis in a valid JSON format exactly as shown below ( do not include any extra text ) :...
-
[60]
Question
Question Content : - Given the video with observed scenes ( scene 1 to k ) , the question should force the test model to predict future events ( scene k +1 to scene n ) and ask what i n t e r m e d i a t e events would be s up po si ng scene n is given and scene n is the p ot ...
-
[61]
- Ensure only one correct answer and that the r em ai nin g three options are wrong
Question Format : - Create one multiple - choice question with four answer options : A , B , C , and D . - Ensure only one correct answer and that the r em ai nin g three options are wrong . - Only output required question - answer pairs shown in the output s tru ct ur e . Out...
-
[62]
Question
Question Content : - Given the video with observed scenes ( scene 1 to k ) , the question should force the test model to predict future events ( scene k +1 to scene n ) and ask what i n t e r m e d i a t e events would be s up po si ng scene n is given and scene n is the p ot ...
-
[63]
- Ensure only one correct answer and that the r em ai nin g three options are wrong
Question Format : - Create one multiple - choice question with four answer options : A , B , C , and D . - Ensure only one correct answer and that the r em ai nin g three options are wrong . - Only output required question - answer pairs shown in the output s tru ct ur e . Out...
-
[64]
Question
Question Content : - Given the video with observed scenes ( scene 1 to k ) , the question should force the test model to predict future events ( scene k +1 to scene n ) and ask what i n t e r m e d i a t e events would be s up po si ng scene n is given and scene n is the p ot ...
-
[65]
- Ensure only one correct answer and that the r em ai nin g three options are wrong
Question Format : - Create one multiple - choice question with four answer options : A , B , C , and D . - Ensure only one correct answer and that the r em ai nin g three options are wrong . - Only output required question - answer pairs shown in the output s tru ct ur e . Out...
-
[66]
Question
Question Content : - Given the video with observed scenes ( scene 1 to k ) , the question should force the test model to predict future events ( scene k +1 to scene n ) and ask what i n t e r m e d i a t e events would be s up po si ng ( scene k + i and scene k + j are given ,...
-
[67]
- Answer options should be built upon the scenes after the observed scenes and before the last scene
Question Format : - Create one multiple - choice question with four answer options : A , B , C , and D . - Answer options should be built upon the scenes after the observed scenes and before the last scene . - Ensure only one correct answer and that the r em ai nin g three opt...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.