REVIEW 5 major objections 4 minor 7 cited by
Temporal Working Memory: Query-Guided Segment Refinement for Enhanced Multimodal Understanding
T0 review · 5 major / 4 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read This paper claims that adding a query-guided temporal working memory module, without retraining the backbone, improves nine multimodal models on audio-visual question answering, video captioning, and video-text retrieval.
desk verdict A useful engineering idea with broad evaluation, but the undefined scoring rule and missing random-selection baseline leave the central claim unproven. 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 query-guided neural search engine with scoring rule $S(v_i) = \alpha_1 D(v_i) + \alpha_2 R(v_i, q)$. It is trained with InfoNCE loss to align visual and audio embeddings with text-query embeddings, then iteratively selects the most relevant frames within a search window; the same routine, using visual embeddings as queries, maintains an auditory buffer. The mechanism also uses inter-segment and intra-segment attention over audio segments to model both long-range dependencies and fine-grained local changes.
What would settle it
Run each baseline with the same number of selected frames chosen uniformly at random instead of by the $S(v_i)$ score, keeping everything else fixed; if random selection matches TWM's gains, the query-guided scoring is not the active ingredient. Additionally, replacing $R(v_i,q)$ with a constant or with random relevance scores should change performance if query guidance matters.
Extended reading notes
Core claim
TWM alternates between search and update operations: it scores each video frame with $S(v_i) = \alpha_1 D(v_i) + \alpha_2 R(v_i, q)$, where $D$ measures distinctiveness and $R$ measures query relevance, and iteratively selects frames in a window around the highest-scoring midpoint while excluding already-selected frames. Audio is divided into segments, aligned to visual embeddings through InfoNCE-trained cross-modal similarity, and refined by inter-segment and intra-segment attention to capture both global and local temporal structure. The selected segments form a temporal memory buffer that replaces the full sequence as the MFM input. The paper reports that this mechanism yields accuracy and retrieval improvements across all nine baselines, with the largest gains in comparative audio-visual question answering and captioning coherence.
Load-bearing premise
The load-bearing premise is that the weighted sum of a frame's distinctiveness and its cosine-similarity relevance to the question, $S(v_i)=\alpha_1 D(v_i)+\alpha_2 R(v_i,q)$, is a reliable proxy for how much that frame or audio segment helps the downstream model, so if the proxy is wrong the gains could come from subsampling rather than from query-guided memory.
Editorial extensions
If this is right
- Adding TWM to an existing multimodal model improves audio-visual question answering accuracy, especially on comparative audio and audio-visual questions where several baselines gain 10 to 13 percentage points.
- Video captioning becomes more temporally coherent, with Git+TWM gaining 6.82 CIDEr points on MSR-VTT while using far fewer frames.
- Video-text retrieval improves across Recall@1, Recall@5, and Recall@10 for VINDLU, TESTA, and MovieSeq on the CMD benchmark.
- TWM reduces the number of frames processed per video, so it uses the model's limited capacity more efficiently without changing the backbone architecture.
- TWM can be applied to visual-only, audio-only, or audio-visual pipelines by omitting the auditory component when audio is not present.
Reading between the lines
- The reported gains may partly come from aggressive frame subsampling itself rather than from query-guided selection; a random-selection control with the same number of frames would separate these effects, and the paper does not report one.
- The scoring functions $D$ and $R$ are left unspecified, so a sharp test would be to define them precisely and ablate the query-relevance term; if performance is insensitive to $R(v_i,q)$, the query guidance is not the active ingredient.
- TWM resembles token-pruning and frame-sampling methods in video-language models, so connecting it to those established lines could clarify whether the working-memory framing adds predictive power beyond existing sampling techniques.
- If the mechanism works as claimed, a natural extension the authors leave implicit is online or streaming operation, where the memory buffer is updated as new frames and audio arrive rather than selected once from a fixed sequence.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Temporal Working Memory (TWM), a plug-and-play module for multimodal foundation models (MFMs) that selects a small number of query-relevant video frames and audio segments from long multimodal inputs. The module uses a query-guided scoring rule to iteratively fill visual and auditory buffers, which are then fed to the downstream MFM. The authors integrate TWM into nine existing MFMs and report accuracy/recall scores on MUSIC-AVQA v2.0, MSR-VTT, and CMD, claiming consistent performance improvements across all tasks and models. The paper also includes ablation studies, case-study visualizations, and a link to released code.
Significance. If the claimed gains are real, TWM would provide a lightweight, model-agnostic way to improve temporal reasoning in MFMs without changing the backbone or retraining it. The idea of using a query-guided memory buffer, analogous to human working memory, is plausible and timely, given the context-length limitations of current MFMs. The paper ships code and integrates with multiple open-source baselines, which is a strength. However, the current evidence does not conclusively isolate the effect of query-guided selection from the effect of subsampling itself, and the central scoring rule is not fully specified. These gaps are fixable with additional experiments and clarifications.
major comments (5)
- [Section 3.1.1, Eq. (1)] The functions D(vi) and R(vi, q) in Eq. (1) are never defined. The text calls them 'distinctiveness' and 'relevance to the query' but gives no formulas, no encoders, no input representations, and no computational details. Since Eq. (1) is the core scoring rule that drives the entire selection process, this omission prevents reproduction and makes it impossible to assess what the mechanism actually computes. Please specify D and R explicitly (e.g., as functions of the InfoNCE-aligned embeddings, maybe with normalization or margins), or at minimum provide a complete pseudocode for sim and select in Algorithm 1.
- [Section 4.1 and 4.2] No random or uniform frame/audio selection baseline is reported. The reported gains could arise from subsampling benefits (e.g., fewer tokens reducing noise or computational load) rather than from query-guided selection. Given that k, the number of iterations, and alpha1/alpha2 are tuned per dataset (Section 4.1), a control that keeps all hyperparameters identical but selects frames uniformly at random (or with D=0, R=0) is necessary to attribute the improvements to query-guided temporal memory. Please add this control for at least one or two representative baselines per task.
- [Table 1] Several per-category accuracies decrease even where the overall average improves. For example, LAVisH+TWM drops 4.60 on Audio Count and 8.24 on Audio-Visual Exist; DG-SCT+TWM drops 3.08 on Audio Count and 7.52 on Audio-Visual Temporal; LAST-Att+TWM drops 6.51 on Audio Count and 3.01 on Audio Average. The abstract and Section 4.2 claim 'significant performance improvements across all tasks', which is stronger than what the data show. Also, all tables report point estimates without error bars or significance tests, so it is unclear which of the positive gains are statistically reliable. Please temper the claim and add variance estimates or paired significance tests.
- [Appendix B] The ablations remove entire visual or auditory components (TWM w/o VWM, TWM w/o AWM), but they do not test whether the query-guided selection rule itself matters. A more informative ablation would keep the same memory size and iterative procedure but replace the relevance-based scoring in Eq. (1) with random selection, to isolate the contribution of query-guided scoring. As it stands, the ablations show that both visual and auditory components are needed, but not that the query-guided search is the reason for the gains.
- [Section 3.1.2] The training of the neural search engine is underspecified. It says a linear projection layer is trained with InfoNCE to align visual embeddings with text, but it does not state which dataset is used for this training, whether the projection is trained jointly with the downstream MFM or separately, or which text descriptions serve as positives/negatives for a given video. This affects reproducibility. Please clarify the training protocol, including the exact data source and the negative sampling scheme.
minor comments (4)
- [Section 3.2.1] Audio segmentation is described as 'typically 5-6 segments depending on video length', but the implementations section (Section 4.1) says 'Audio segments are extracted every 5 seconds, selecting the highest-scoring segment from a total of 12 segments'. Please reconcile these numbers and specify the segmentation strategy consistently.
- [Figure 6] The figure captions refer to Frame 0, Frame 72, etc., but the frames are not shown in chronological order in the first row (Frame 0, 72, 108, 116, 125, 148, 180, 249); please make the ordering explicit so readers can follow the temporal progression.
- [Section 4.2.1] The text says 'LAVisH+TWM improves by 12.40%' for audio-related comparative QA, but Table 1 shows the gain is +12.40 for Audio Compare; the percentage sign is redundant but not wrong. More importantly, the same paragraph says 'significant increases' without any significance testing; please replace 'significant' with 'numerical' unless a statistical test is provided.
- [References] There is an inconsistency in the references for LLaMA: both Touvron et al. 2023a and 2023b are listed with the same arXiv number (2302.13971); the LLaMA reference should be corrected to the actual model paper. Also, the 'Git' method is referred to as 'Git' in Table 2 but as 'Git (Wang et al., 2022)' in the text; please be consistent.
Circularity Check
No significant circularity: TWM's reported gains are empirical benchmark comparisons, not derived from fitted equations or from load-bearing self-citations.
full rationale
The paper's derivation chain is empirical rather than formal: TWM is defined as a query-guided segment selector (Eq. (1), Algorithm 1), and its contribution is measured by comparing nine MFMs with and without the module on MUSIC-AVQA v2.0, MSR-VTT, and CMD (Tables 1-3). Eq. (1) is an implementation rule for ranking segments, not a relation fitted to the reported outcome; D and R are underspecified (never given explicit formulas), and Algorithm 1's sim/select are placeholders, but the paper does not derive the benchmark gains from Eq. (1), so there is no equation-level identity between input and output. The InfoNCE losses in Eqs. (2)-(3) train the alignment used by the selector; because evaluation uses external benchmark test sets, the reported gains are not forced by the training objective. Self-citations (Zhang et al. 2024; Diao et al. 2024; Zhang et al. 2025) appear only in background and related-work context and are not load-bearing; no uniqueness claim or ansatz is imported from the authors' prior work. The undefined scoring functions, the absence of a random-selection control, and the possibility of per-dataset hyperparameter tuning are reproducibility and validity concerns, not circularity; the Limitations section itself flags only unexplored generalizability.
Assumptions & free parameters
free parameters (6)
- alpha1 (frame distinctiveness weight) =
0.2 (MUSIC-AVQA), 0.5 (MSR-VTT), 0.6 (CMD)
- alpha2 (query relevance weight) =
0.8 (MUSIC-AVQA), 0.5 (MSR-VTT), 0.4 (CMD)
- k (frames selected per search step) =
11 (MUSIC-AVQA), 3 (MSR-VTT), 5 (CMD)
- number of search iterations =
6 (MUSIC-AVQA), 3 (MSR-VTT), 7 (CMD)
- InfoNCE temperature tau =
not specified
- audio segment length and count =
5-second segments; best of 12 for MUSIC-AVQA; 5-6 segments typical otherwise
assumptions (4)
- domain assumption Cosine similarity between pretrained visual, language, and audio embeddings, after InfoNCE alignment, reflects how relevant a frame or audio segment is to the query.
- ad hoc to paper The functions D(vi) and R(vi,q) in Eq. (1) are well-defined and computable.
- domain assumption Aggressive subsampling, for example 8-9 frames from 210-630, preserves the information needed by the downstream MFM.
- domain assumption Baseline models are reproduced faithfully with open-source code and pretrained weights.
invented entities (1)
-
Temporal Working Memory (TWM) module with visual and auditory buffers
Cite this review
Pith. "Pith review of Temporal Working Memory: Query-Guided Segment Refinement for Enhanced Multimodal Understanding." pith.science (2026). https://pith.science/paper/K4WICMQW
@misc{pith2026250206020,
author = {Pith},
title = {Pith review of: Temporal Working Memory: Query-Guided Segment Refinement for Enhanced Multimodal Understanding},
year = {2026},
howpublished = {\url{https://pith.science/paper/K4WICMQW}},
note = {Machine review of arXiv:2502.06020}
}
read the original abstract
Multimodal foundation models (MFMs) have demonstrated significant success in tasks such as visual captioning, question answering, and image-text retrieval. However, these models face inherent limitations due to their finite internal capacity, which restricts their ability to process extended temporal sequences, a crucial requirement for comprehensive video and audio analysis. To overcome these challenges, we introduce a specialized cognitive module, temporal working memory (TWM), which aims to enhance the temporal modeling capabilities of MFMs. It selectively retains task-relevant information across temporal dimensions, ensuring that critical details are preserved throughout the processing of video and audio content. The TWM uses a query-guided attention approach to focus on the most informative multimodal segments within temporal sequences. By retaining only the most relevant content, TWM optimizes the use of the model's limited capacity, enhancing its temporal modeling ability. This plug-and-play module can be easily integrated into existing MFMs. With our TWM, nine state-of-the-art models exhibit significant performance improvements across tasks such as video captioning, question answering, and video-text retrieval. By enhancing temporal modeling, TWM extends the capability of MFMs to handle complex, time-sensitive data effectively. Our code is available at https://github.com/xid32/NAACL_2025_TWM.
Figures
Figures from the paper (9 more)
Forward citations
Cited by 7 Pith papers
-
Language-Guided Long Horizon Manipulation with LLM-based Planning and Visual Perception
A robot folds cloth from spoken language by decomposing instructions with GPT-4o and grounding each step with a SigLIP2-based pick-and-place perception module.
-
GDLLM: A Global Distance-aware Modeling Approach Based on Large Language Models for Event Temporal Relation Extraction
GDLLM improves event temporal relation extraction by feeding LLM-generated probability distributions into a graph attention network, achieving state-of-the-art micro-F1 scores on TB-Dense and MATRES.
-
FakeSV-VLM: Taming VLM for Detecting Fake Short-Video News via Progressive Mixture-Of-Experts Adapter
FakeSV-VLM reaches 90.22% and 89.30% accuracy on FakeSV and FakeTT by adding a two-stage MoE adapter and contrastive alignment to InternVL2.5-8B.
-
OpenVision 2: A Family of Generative Pretrained Visual Encoders for Multimodal Learning
OpenVision 2 shows that a caption-only generative objective can match contrastive learning for multimodal vision encoders at lower training cost, scaling to 1B parameters.
-
Learning Sparsity for Effective and Efficient Music Performance Question Answering
Sparsify reports state-of-the-art accuracy on Music AVQA benchmarks by borrowing three existing sparsification techniques, cutting training time by 28% and retaining 70-80% of accuracy on a 25% data subset.
-
A Multimodal Deep Learning Framework for Early Diagnosis of Liver Cancer via Optimized BiLSTM-AM-VMD Architecture
The paper claims a BiLSTM-AM-VMD model achieves AUC 0.963 for early HCC diagnosis, but the evidence is undermined by contradictory dataset descriptions and missing artifacts.
-
Multi-Modal Machine Learning Framework for Predicting Early Recurrence of Brain Tumors Using MRI and Clinical Biomarkers
XGBoost combining MRI radiomics and clinical biomarkers reportedly reaches C-index 0.782 for early brain tumor recurrence, but the paper's methods describe a liver-cancer cohort and no evaluation of its claimed tempor...
Reference graph
Works this paper leans on
-
[1]
online" 'onlinestring :=
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block STRING...
-
[2]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
Alan Baddeley. 2000. The episodic buffer: a new component of working memory? Trends in cognitive sciences
work page 2000
-
[4]
Max Bain, Arsha Nagrani, Andrew Brown, and Andrew Zisserman. 2020. Condensed movies: Story based retrieval with contextual embeddings. In Asian Conference on Computer Vision
work page 2020
-
[5]
Peng Chen, Yingying Zhang, Yunyao Cheng, Yang Shu, Yihang Wang, Qingsong Wen, Bin Yang, and Chenjuan Guo. 2024. Pathformer: Multi-scale transformers with adaptive pathways for time series forecasting. In International Conference on Learning Representations
work page 2024
-
[6]
Feng Cheng, Xizi Wang, Jie Lei, David Crandall, Mohit Bansal, and Gedas Bertasius. 2023. Vindlu: A recipe for effective video-and-language pretraining. In Conference on Computer Vision and Pattern Recognition
work page 2023
-
[7]
Xingjian Diao, Chunhui Zhang, Tingxuan Wu, Ming Cheng, Zhongyu Ouyang, Weiyi Wu, and Jiang Gui. 2024. Learning musical representations for music performance question answering. In Findings of the Association for Computational Linguistics: EMNLP 2024
work page 2024
-
[8]
Haoyi Duan, Yan Xia, Zhou Mingze, Li Tang, Jieming Zhu, and Zhou Zhao. 2023. Cross-modal prompts: Adapting large pre-trained models for audio-visual downstream tasks. In Advances in Neural Information Processing Systems
2023
Show all 47 references
-
[9]
Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. 2024. The llama 3 herd of models. arXiv preprint arXiv:2407.21783
2024 arXiv
-
[10]
Dongyu Gong, Xingchen Wan, and Dingmin Wang. 2024. Working memory capacity of chatgpt: An empirical study. In AAAI Conference on Artificial Intelligence
2024
-
[11]
Albert Gu, Karan Goel, and Christopher R \'e . 2022. Efficiently modeling long sequences with structured state spaces. In International Conference on Learning Representations
2022
-
[12]
Jiaming Han, Kaixiong Gong, Yiyuan Zhang, Jiaqi Wang, Kaipeng Zhang, Dahua Lin, Yu Qiao, Peng Gao, and Xiangyu Yue. 2024. Onellm: One framework to align all modalities with language. In Conference on Computer Vision and Pattern Recognition
2024
-
[13]
Bo He, Hengduo Li, Young Kyun Jang, Menglin Jia, Xuefei Cao, Ashish Shah, Abhinav Shrivastava, and Ser-Nam Lim. 2024. Ma-lmm: Memory-augmented large multimodal model for long-term video understanding. In Conference on Computer Vision and Pattern Recognition
2024
-
[14]
Willy Fitra Hendria, Vania Velda, Bahy Helmi Hartoyo Putra, Fikriansyah Adzaka, and Cheol Jeong. 2023. Action knowledge for video captioning with graph neural networks. Journal of King Saud University-Computer and Information Sciences
2023
-
[15]
Noureldien Hussein, Efstratios Gavves, and Arnold WM Smeulders. 2019. Timeception for complex action recognition. In Conference on Computer Vision and Pattern Recognition
2019
-
[16]
Md Mohaiminul Islam and Gedas Bertasius. 2022. Long movie clip classification with state-space video models. In European Conference on Computer Vision
2022
-
[17]
Yiren Jian, Tingkai Liu, Yunzhe Tao, Chunhui Zhang, Soroush Vosoughi, and Hongxia Yang. 2024. Expedited training of visual conditioned language generation via redundancy reduction. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics
2024
-
[18]
Byoungjip Kim, Dasol Hwang, Sungjun Cho, Youngsoo Jang, Honglak Lee, and Moontae Lee. 2024. Show think and tell: Thought-augmented fine-tuning of large language models for video captioning. In Conference on Computer Vision and Pattern Recognition
2024
-
[19]
Daliang Li, Ankit Singh Rawat, Manzil Zaheer, Xin Wang, Michal Lukasik, Andreas Veit, Felix Yu, and Sanjiv Kumar. 2023 a . Large language models with controllable working memory. In Findings of the Association for Computational Linguistics: ACL
2023
-
[20]
Guangyao Li, Yake Wei, Yapeng Tian, Chenliang Xu, Ji-Rong Wen, and Di Hu. 2022. Learning to answer questions in dynamic audio-visual scenarios. In Conference on Computer Vision and Pattern Recognition
2022
-
[21]
Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi. 2023 b . BLIP -2: Bootstrapping language-image pre-training with frozen image encoders and large language models. In International Conference on Machine Learning
2023
-
[22]
Kevin Qinghong Lin, Pengchuan Zhang, Difei Gao, Xide Xia, Joya Chen, Ziteng Gao, Jinheng Xie, Xuhong Xiao, and Mike Zheng Shou. 2024. Learning video context as interleaved multimodal sequences. In European Conference on Computer Vision
2024
-
[23]
Yan-Bo Lin, Yi-Lin Sung, Jie Lei, Mohit Bansal, and Gedas Bertasius. 2023. Vision transformers are parameter-efficient audio-visual learners. In Conference on Computer Vision and Pattern Recognition
2023
-
[24]
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. 2023. Visual instruction tuning. In Advances in Neural Information Processing Systems
2023
-
[25]
Nelson F Liu, Kevin Lin, John Hewitt, Ashwin Paranjape, Michele Bevilacqua, Fabio Petroni, and Percy Liang. 2024 a . Lost in the middle: How language models use long contexts. Transactions of the Association for Computational Linguistics
2024
-
[26]
Xiulong Liu, Zhikang Dong, and Peng Zhang. 2024 b . Tackling data bias in music-avqa: Crafting a balanced dataset for unbiased question-answering. In Winter Conference on Applications of Computer Vision
2024
-
[27]
Zheyuan Liu, Guangyao Dou, Eli Chien, Chunhui Zhang, Yijun Tian, and Ziwei Zhu. 2024 c . Breaking the trilemma of privacy, utility, and efficiency via controllable machine unlearning. In International World Wide Web Conference
2024
-
[28]
Zheyuan Liu, Guangyao Dou, Mengzhao Jia, Zhaoxuan Tan, Qingkai Zeng, Yongle Yuan, and Meng Jiang. 2024 d . Protecting privacy in multimodal large language models with mllmu-bench. arXiv preprint arXiv:2410.22108
2024 arXiv
-
[29]
Muhammad Maaz, Hanoona Rasheed, Salman Khan, and Fahad Khan. 2024. Video- C hat GPT : Towards detailed video understanding via large vision and language models. In Annual Meeting of the Association for Computational Linguistics
2024
-
[30]
Asmar Nadeem, Faegheh Sardari, Robert Dawes, Syed Sameed Husain, Adrian Hilton, and Armin Mustafa. 2024. Narrativebridge: Enhancing video captioning with causal-temporal narrative. arXiv preprint arXiv:2406.06499
2024 arXiv
-
[31]
Aaron van den Oord, Yazhe Li, and Oriol Vinyals. 2018. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748
2018 arXiv
-
[32]
Shuhuai Ren, Sishuo Chen, Shicheng Li, Xu Sun, and Lu Hou. 2023. TESTA : Temporal-spatial token aggregation for long-form video-language understanding. In Findings of the Association for Computational Linguistics: EMNLP
2023
-
[33]
Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timoth \'e e Lacroix, Baptiste Rozi \`e re, Naman Goyal, Eric Hambro, Faisal Azhar, et al. 2023 a . Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2302.13971
2023 arXiv
-
[34]
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. 2023 b . Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288
2023 arXiv
-
[35]
Jianfeng Wang, Zhengyuan Yang, Xiaowei Hu, Linjie Li, Kevin Lin, Zhe Gan, Zicheng Liu, Ce Liu, and Lijuan Wang. 2022. Git: A generative image-to-text transformer for vision and language. Transactions on Machine Learning Research
2022
-
[36]
Jue Wang, Wentao Zhu, Pichao Wang, Xiang Yu, Linda Liu, Mohamed Omar, and Raffay Hamid. 2023. Selective structured state-spaces for long-form video understanding. In Conference on Computer Vision and Pattern Recognition
2023
-
[37]
Chao-Yuan Wu and Philipp Krahenbuhl. 2021. Towards long-form video understanding. In Conference on Computer Vision and Pattern Recognition
2021
-
[38]
Penghao Wu and Saining Xie. 2024. V*: Guided visual search as a core mechanism in multimodal llms. In Conference on Computer Vision and Pattern Recognition
2024
-
[39]
Wulin Xie, Xiaohuan Lu, Yadong Liu, Jiang Long, Bob Zhang, Shuping Zhao, and Jie Wen. 2024. Uncertainty-aware pseudo-labeling and dual graph driven network for incomplete multi-view multi-label classification. In International Conference on Multimedia
2024
-
[40]
Wulin Xie, Lian Zhao, Jiang Long, Xiaohuan Lu, and Bingyan Nie. 2025. Multi-view factorizing and disentangling: A novel framework for incomplete multi-view multi-label classification. arXiv preprint arXiv:2501.06524
2025 arXiv
-
[41]
Jun Xu, Tao Mei, Ting Yao, and Yong Rui. 2016. Msr-vtt: A large video description dataset for bridging video and language. In Conference on Computer Vision and Pattern Recognition
2016
-
[42]
Jiawei Yao, Qi Qian, and Juhua Hu. 2024 a . Customized multiple clustering via multi-modal subspace proxy learning. In Advances in Neural Information Processing Systems
2024
-
[43]
Jiawei Yao, Qi Qian, and Juhua Hu. 2024 b . Multi-modal proxy learning towards personalized visual multiple clustering. In Conference on Computer Vision and Pattern Recognition
2024
-
[44]
Chunhui Zhang, Chao Huang, Youhuan Li, Xiangliang Zhang, Yanfang Ye, and Chuxu Zhang. 2022. Look twice as much as you say: Scene graph contrastive learning for self-supervised image caption generation. In International Conference on Information & Knowledge Management
2022
-
[45]
Chunhui Zhang, Yiren Jian, Zhongyu Ouyang, and Soroush Vosoughi. 2024. Scaling cognitive limits: Identifying working memory limits in llms. In Conference on Empirical Methods in Natural Language Processing
2024
-
[46]
Chunhui Zhang, Yiren Jian, Zhongyu Ouyang, and Soroush Vosoughi. 2025. Pretrained image-text models are secretly video captioners. In Annual Conference of the North American Chapter of the Association for Computational Linguistics
2025
-
[47]
Hang Zhang, Xin Li, and Lidong Bing. 2023. Video-llama: An instruction-tuned audio-visual language model for video understanding. In Conference on Empirical Methods in Natural Language Processing
2023
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.