REVIEW 4 major objections 5 minor 1 cited by
Enhancing Partially Relevant Video Retrieval with Robust Alignment Learning
T0 review · 4 major / 5 minor · reviewed 2026-08-05 · deepseek-v4-flash
Pith's one-line read A plug-in uncertainty module claims state-of-the-art partially relevant video retrieval by encoding queries and videos as Gaussian distributions and gating uninformative query words.
desk verdict Solid PRVR method with real gains, but a train/test mismatch around the query support set and test-set hyperparameter tuning need to be fixed before the numbers can be trusted. 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 mechanism is a pair of modules added to the frame-level branch of an existing PRVR model. Multimodal Semantic Robust Alignment (MSRA) estimates a mean and variance for each video and query through multi-granularity aggregation, treating the representations as multivariate Gaussians; the variance quantifies aleatoric uncertainty and enables proxy-level matching through a multi-instance InfoNCE loss and a KL distribution-alignment loss. Confidence-aware Set-to-Set Alignment (CSA) predicts a word-level confidence score with a small MLP and uses it to weight the word-frame similarity matrix, replacing the usual mean pooling over words. Together they convert a one-to-one determin
What would settle it
Evaluate a trained RAL model on TVR with the query support set disabled at inference so each query is scored alone; if SumR falls back toward the 189.1 GMMFormer v2 baseline, the gain is an artifact of training-time aggregation rather than a property of the Gaussian alignment. A second check: replace the learned confidence gate with fixed equal weights and measure the drop on high-uncertainty queries.
Extended reading notes
Core claim
The paper claims that the central obstacle in PRVR is not missing multi-scale clip features but spurious semantic correlations caused by two forms of data uncertainty: query ambiguity, where a query incompletely describes the target video and contains uninformative tokens, and partial video relevance, where untrimmed videos contain many query-irrelevant segments. RAL replaces deterministic pointwise query-clip matching with probabilistic alignment: video and query features are encoded as multivariate Gaussian distributions, a query support set aggregates all queries describing the same video to enrich the text distribution, sampled proxy embeddings supply multiple alignment candidates, and a
Load-bearing premise
The text distribution is estimated from a query support set that aggregates every training query attached to a video, and the paper marks that input 'Training only' without specifying how a single query forms its distribution at test time; the reported improvements may therefore depend on seeing multiple descriptions of the same video during training.
Editorial extensions
If this is right
- Adding RAL to MS-SL, GMMFormer, and GMMFormer v2 raises SumR on TVR by 6.7, 9.5, and 9.7 points respectively, so the mechanism transfers across clip-model architectures.
- The margin over GMMFormer v2 widens as query uncertainty increases; at extreme uncertainty the baseline's R@1 approaches zero while RAL remains near 20, implying the benefit is concentrated in the hardest ambiguous cases.
- When extra irrelevant segments are inserted into test videos, RAL shows the smallest SumR decline among compared methods, suggesting the distributional and confidence weighting make retrieval less sensitive to noise.
- On trimmed text-to-video retrieval with CLIP4Clip, RAL improves R@1 by about 6.1 points (ViT-B/32) and 6.6 points (ViT-B/16), indicating the mechanism is not restricted to PRVR.
- Ablations attribute roughly independent gains to MSRA (+5.7 SumR) and CSA (+5.4 SumR), with the full model reaching +9.7, so the two modules can be studied or reused separately.
Reading between the lines
- Beyond the paper: because Figure 2 labels the query support set 'Training only' and the authors never specify how a single query forms a text distribution at inference, the reported gains may partially depend on privileged multi-query information during training; a single-query test-time evaluation would settle how much of the improvement survives deployment.
- Beyond the paper: the confidence-gating idea is not inherently tied to words—the same learnable-weight mechanism could be applied to frames, clips, or sentence-level descriptions, and the ablations suggest it would act nearly additively with other alignment modules.
- Beyond the paper: the paper's own failure cases point to named-entity identity as the next bottleneck; an extension that couples textual character names to visual person-specific cues, e.g., clothing or appearance, is the natural follow-up and is testable on the same TVR split.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Robust Alignment Learning (RAL) for partially relevant video retrieval (PRVR). The method has two components: (1) Multimodal Semantic Robust Alignment (MSRA), which encodes video and text as multivariate Gaussians, uses a training-time query support set to form enriched text distributions, and optimizes distribution-alignment and proxy-matching losses; (2) Confidence-aware Set-to-Set Alignment (CSA), which weights word-level similarities by learned confidence scores. RAL is plugged into MS-SL, GMMFormer, and GMMFormer-v2 and evaluated on TVR and ActivityNet, reporting a new state-of-the-art SumR of 198.8 on TVR. The paper also reports transfer to trimmed T2VR on MSR-VTT.
Significance. If the reported gains are reproducible and transfer to the actual single-query inference setting, the probabilistic-alignment view of PRVR is a useful contribution. The plug-and-play nature across several backbones is attractive, and the component ablations and robustness analyses (noise, M/V ratio, uncertainty) are informative. The paper does not provide code, and the central novelty—query support sets for uncertainty modeling—raises a train/test specification gap that currently prevents the reader from verifying whether the headline gains are real in deployment. The method itself is mostly standard probabilistic embedding plus contrastive losses, but the empirical scope is broad and the reported improvements are large if valid.
major comments (4)
- [Section 3.2 / Eq. (5), Figure 2, Appendix Fig. 9, Table 4] The query support set is defined only for training. Eq. (5) sets X_q = Q_s by concatenating all queries associated with a training video, and Figure 2 and Appendix Fig. 9 explicitly label this 'Training only'. At inference, a test query has no associated query set, yet the paper never states what X_q is at test time. If the model receives a single query at inference, the text-distribution input differs from the training-time distribution, and L_DA/L_PM were optimized against a representation that encodes privileged multi-query information. If the support set is discarded at test, the method is under-specified. Table 4's first row shows that training with X_q=Q lowers SumR from 198.8 to 196.9, indicating the support set contributes to the reported gain. No experiment evaluates the Q_s-trained model on single-query inference. This must be resolved before the SOTA claim can be accepted.
- [Appendix B.2 / Section 4.1] The hyperparameters λ3 and λ4 appear to be selected on the TVR test set. Appendix B.2 reports SumR values for sweeps over λ3 and λ4 and chooses the optimum, but it does not state that a validation split was used. Since the final TVR numbers in Table 1 are test-set numbers, selecting hyperparameters on the test set would inflate the reported SOTA. Additionally, Section 4.1 states λ3=0.001 and λ4=0.004, while Appendix B.2 concludes that the optimum is λ3=0.004 and λ4=0.001. These values conflict and must be reconciled. The authors should specify the exact split used for hyperparameter selection and report the final configuration consistently.
- [Table 1 / Section 4.2] All reported numbers in Table 1 appear to come from single runs with no error bars or multiple-seed statistics. The central claim is a new state of the art by a 9.7 SumR margin over GMMFormer v2. Given typical run-to-run variance in retrieval training, the paper should report mean ± std over at least three seeds, or provide a statistical significance test, for at least the proposed method and the main baseline. Without this, the magnitude of the improvement and its robustness are not established.
- [Section 3.3 / Eq. (12)] The confidence weights g are defined as g = MLP(Q) with no stated activation or normalization constraint. As written, the MLP output is unconstrained, so the 'confidence' weights can be negative or arbitrarily large, and the final similarity S(q,v) = Σ g_i s_i is not a normalized weighted average. This undermines the interpretation of CSA as a confidence-weighting mechanism and may affect optimization. The authors should specify the activation (e.g., sigmoid or softmax) and any normalization used to map MLP outputs to valid confidence values.
minor comments (5)
- [Eq. (10)] The proxy matching loss reuses the index k for both text and video proxies in a confusing way. For each text proxy, the positive set contains all K video proxies, so the summation indices should be distinct (e.g., i over text proxies and j over video proxies). Please rewrite the formula to make the intended matching explicit.
- [Table 5] The two RAL variants on MSR-VTT are both labeled 'ViT-B/32'; one should presumably be ViT-B/16. Please correct the typo.
- [Appendix A] The appendix refers to the proposed framework as 'URAL' in several places (e.g., 'proposed URAL framework'), while the main text uses 'RAL'. Please unify the terminology.
- [Figure 3] The description of the uncertainty-level experiment is terse. Please specify how many query sets are formed, the size of each set, and how R@1 is averaged across sets. The claim that GMMFormer v2 'collapses' with R@1 near zero on one set would be more credible with the set sizes and error bars.
- [Section 4.5] The sentence 'T2VR can be viewed as a simple case of PRVR, where videos are trimmed to correspond to queries' is reasonable, but the support-set issue also applies to the MSR-VTT experiments: during training multiple captions per video are available, while at test only one query is given. Please state explicitly how the support set is handled in the T2VR transfer experiments.
Circularity Check
No significant circularity: RAL is an empirical plug-in model whose components are trained end-to-end on retrieval losses and evaluated on external benchmarks.
full rationale
The paper's derivation chain is empirical rather than formal: Eq. (3) estimates Gaussian parameters with learned MLPs from input features; Eqs. (8) and (10) define auxiliary training losses; Eq. (12) defines the final retrieval score using MLP-predicted word confidences. None of these quantities is defined in terms of the reported retrieval metric or of a fitted prediction renamed as a result. The query support set in Eq. (5) is explicitly labeled 'Training only' in Figure 2 and Appendix Figure 9, and it does not appear in the inference-time score Eq. (12). The ablation in Table 4 (X_q=Q drops SumR from 198.8 to 196.9) shows the support set contributes to training, but it is a training-time supervisory signal, not a circular redefinition of the target metric. The underspecified inference-time handling of the support set is a genuine train/test distribution concern, but it is not a circularity because the test ranker still consumes a single query. Self-citations (e.g., Dong et al. 2022/2023, Song et al. 2025) are used as baselines or task references, not as load-bearing authority for the core claim; no uniqueness theorem from the authors is invoked. The stated limitation about named entities is an empirical failure analysis, not a circular step. Therefore, no circularity is present.
Assumptions & free parameters
free parameters (6)
- λ1 (weight for Lnce) =
0.05
- λ2 (weight for Ltrip) =
1
- λ3 (weight for LDA) =
0.001 (main text) / 0.004 (appendix, claimed optimal)
- λ4 (weight for LPM) =
0.004 (main text) / 0.001 (appendix, claimed optimal)
- τ (temperature in LPM) =
not reported
- K (number of proxies) =
6
assumptions (4)
- domain assumption A diagonal Gaussian distribution N(μ, σ²I) adequately quantifies the aleatoric uncertainty of video and text embeddings for PRVR
- ad hoc to paper Using all queries associated with a video during training (query support set) yields a text distribution that transfers to single-query inference
- domain assumption Max word-frame similarity with learned confidence weights is a sufficient query-video scoring rule
- standard math The reparameterization trick provides valid and unbiased gradients for the proxy matching loss
Cite this review
Pith. "Pith review of Enhancing Partially Relevant Video Retrieval with Robust Alignment Learning." pith.science (2026). https://pith.science/paper/OJQIEN2B
@misc{pith2026250901383,
author = {Pith},
title = {Pith review of: Enhancing Partially Relevant Video Retrieval with Robust Alignment Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/OJQIEN2B}},
note = {Machine review of arXiv:2509.01383}
}
read the original abstract
Partially Relevant Video Retrieval (PRVR) aims to retrieve untrimmed videos partially relevant to a given query. The core challenge lies in learning robust query-video alignment against spurious semantic correlations arising from inherent data uncertainty: 1) query ambiguity, where the query incompletely characterizes the target video and often contains uninformative tokens, and 2) partial video relevance, where abundant query-irrelevant segments introduce contextual noise in cross-modal alignment. Existing methods often focus on enhancing multi-scale clip representations and retrieving the most relevant clip. However, the inherent data uncertainty in PRVR renders them vulnerable to distractor videos with spurious similarities, leading to suboptimal performance. To fill this research gap, we propose Robust Alignment Learning (RAL) framework, which explicitly models the uncertainty in data. Key innovations include: 1) we pioneer probabilistic modeling for PRVR by encoding videos and queries as multivariate Gaussian distributions. This not only quantifies data uncertainty but also enables proxy-level matching to capture the variability in cross-modal correspondences; 2) we consider the heterogeneous informativeness of query words and introduce learnable confidence gates to dynamically weight similarity. As a plug-and-play solution, RAL can be seamlessly integrated into the existing architectures. Extensive experiments across diverse retrieval backbones demonstrate its effectiveness.
Figures
Figures from the paper (10 more)
Forward citations
Cited by 1 Pith paper
-
Interpretable Representation via LLM-Driven Generative Disentanglement for Local-Life Service Recommendation
Disentangling LLM hidden states into attribute-aligned geo and semantic slots before dual-stream residual quantization cuts SID collisions and improves local-life recommendation AUC.
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]
Simion-Vlad Bogolin, Ioana Croitoru, Hailin Jin, Yang Liu, and Samuel Albanie. 2022. Cross modal retrieval with querybank normalisation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 5194--5205
work page 2022
-
[4]
Joao Carreira and Andrew Zisserman. 2017. Quo vadis, action recognition? a new model and the kinetics dataset. In proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 6299--6308
2017
-
[5]
Zhiguo Chen, Xun Jiang, Xing Xu, Zuo Cao, Yijun Mo, and Heng Tao Shen. 2023. Joint searching and grounding: Multi-granularity video content retrieval. In Proceedings of the 31st ACM International Conference on Multimedia , pages 975--983
work page 2023
-
[6]
Cheol-Ho Cho, WonJun Moon, Woojin Jun, MinSeok Jung, and Jae-Pil Heo. 2025. Ambiguity-restrained text-video representation learning for partially relevant video retrieval. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 39, pages 2500--2508
work page 2025
-
[7]
Sanghyuk Chun, Seong Joon Oh, Rafael Sampaio De Rezende, Yannis Kalantidis, and Diane Larlus. 2021. Probabilistic embeddings for cross-modal retrieval. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 8415--8424
work page 2021
-
[8]
Jianfeng Dong, Xianke Chen, Minsong Zhang, Xun Yang, Shujie Chen, Xirong Li, and Xun Wang. 2022. Partially relevant video retrieval. In Proceedings of the 30th ACM International Conference on Multimedia, pages 246--257
work page 2022
Show all 53 references
-
[9]
Jianfeng Dong, Xirong Li, Chaoxi Xu, Xun Yang, Gang Yang, Xun Wang, and Meng Wang. 2021. Dual encoding for video retrieval by text. IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(8):4065--4080
2021
-
[10]
Jianfeng Dong, Minsong Zhang, Zheng Zhang, Xianke Chen, Daizong Liu, Xiaoye Qu, Xun Wang, and Baolong Liu. 2023. Dual learning with dynamic knowledge distillation for partially relevant video retrieval. In Proceedings of the IEEE/CVF International Conference on Computer Vision...
2023
-
[11]
Bo Fang, Wenhao Wu, Chang Liu, Yu Zhou, Yuxin Song, Weiping Wang, Xiangbo Shu, Xiangyang Ji, and Jingdong Wang. 2023. Uatvr: Uncertainty-adaptive text-video retrieval. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 13723--13733
2023
-
[12]
Zixian Gao, Xun Jiang, Xing Xu, Fumin Shen, Yujie Li, and Heng Tao Shen. 2024. Embracing unimodal aleatoric uncertainty for robust multimodal fusion. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 26876--26885
2024
-
[13]
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. 2016. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 770--778
2016
-
[14]
Xun Jiang, Zhiguo Chen, Xing Xu, Fumin Shen, Zuo Cao, and Xunliang Cai. 2023. Progressive event alignment network for partial relevant video retrieval. In 2023 IEEE International Conference on Multimedia and Expo (ICME), pages 1973--1978
2023
-
[15]
Peng Jin, Jinfa Huang, Fenglin Liu, Xian Wu, Shen Ge, Guoli Song, David Clifton, and Jie Chen. 2022. Expectation-maximization contrastive learning for compact video-and-language representations. Advances in neural information processing systems, 35:30291--30306
2022
-
[16]
Peng Jin, Jinfa Huang, Pengfei Xiong, Shangxuan Tian, Chang Liu, Xiangyang Ji, Li Yuan, and Jie Chen. 2023. Video-text as game players: Hierarchical banzhaf interaction for cross-modal representation learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pa...
2023
-
[17]
Diederik P Kingma. 2013. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114
2013 arXiv
-
[18]
Ranjay Krishna, Kenji Hata, Frederic Ren, Li Fei-Fei, and Juan Carlos Niebles. 2017. Dense-captioning events in videos. In Proceedings of the IEEE International Conference on Computer Vision, pages 706--715
2017
-
[19]
Jie Lei, Licheng Yu, Tamara L Berg, and Mohit Bansal. 2020. Tvr: A large-scale dataset for video-subtitle moment retrieval. In European Conference on Computer Vision, pages 447--463
2020
-
[20]
Kunchang Li, Yali Wang, Yizhuo Li, Yi Wang, Yinan He, Limin Wang, and Yu Qiao. 2023. Unmasked teacher: Towards training-efficient video foundation models. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 19948--19960
2023
-
[21]
Pandeng Li, Chen-Wei Xie, Hongtao Xie, Liming Zhao, Lei Zhang, Yun Zheng, Deli Zhao, and Yongdong Zhang. 2024. Momentdiff: Generative video moment retrieval from random to real. Advances in neural information processing systems, 36
2024
-
[22]
Zhouhan Lin, Minwei Feng, C \' cero Nogueira dos Santos, Mo Yu, Bing Xiang, Bowen Zhou, and Yoshua Bengio. 2017. A structured self-attentive sentence embedding. In 5th International Conference on Learning Representations, ICLR
2017
-
[23]
Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettlemoyer, and Veselin Stoyanov. 2019. Roberta: A robustly optimized bert pretraining approach. arXiv preprint arXiv:1907.11692
2019 arXiv
-
[24]
Huaishao Luo, Lei Ji, Ming Zhong, Yang Chen, Wen Lei, Nan Duan, and Tianrui Li. 2022. Clip4clip: An empirical study of clip for end to end video clip retrieval and captioning. Neurocomputing, 508:293--304
2022
-
[25]
Antoine Miech, Jean-Baptiste Alayrac, Lucas Smaira, Ivan Laptev, Josef Sivic, and Andrew Zisserman. 2020. End-to-end learning of visual representations from uncurated instructional videos. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pa...
2020
-
[26]
Taichi Nishimura, Shota Nakada, and Masayoshi Kondo. 2023. Large-scale vision-language models learn super images for efficient and high-performance partially relevant video retrieval. arXiv preprint arXiv:2312.00414
2023 arXiv
-
[27]
Murphy, Jiyan Pan, Joseph Roth, Florian Schroff, and Andrew C
Seong Joon Oh, Kevin P. Murphy, Jiyan Pan, Joseph Roth, Florian Schroff, and Andrew C. Gallagher. 2019. Modeling uncertainty with hedged instance embeddings. In 7th International Conference on Learning Representations, ICLR , New Orleans, LA, USA, May 6-9, 2019
2019
-
[28]
Haowen Pan, Yixin Cao, Xiaozhi Wang, Xun Yang, and Meng Wang. 2024. Finding and editing multi-modal neurons in pre-trained transformers. In Findings of the Association for Computational Linguistics: ACL 2024, pages 1012--1037
2024
-
[29]
Peipei Song, Dan Guo, Xun Yang, Shengeng Tang, and Meng Wang. 2024 a . Emotional video captioning with vision-based emotion interpretation network. IEEE Transactions on Image Processing, 33:1122--1135
2024
-
[30]
Peipei Song, Long Zhang, Long Lan, Weidong Chen, Dan Guo, Xun Yang, and Meng Wang. 2025. Towards efficient partially relevant video retrieval with active moment discovering. IEEE Transactions on Multimedia, pages 1--12
2025
-
[31]
Peipei Song, Yuanen Zhou, Xun Yang, Daqing Liu, Zhenzhen Hu, Depeng Wang, and Meng Wang. 2024 b . Efficiently gluing pre-trained language and vision models for image captioning. ACM Transactions on Intelligent Systems and Technology, 15(6):1--16
2024
-
[32]
A Vaswani. 2017. Attention is all you need. Advances in Neural Information Processing Systems
2017
-
[33]
Jiamian Wang, Guohao Sun, Pichao Wang, Dongfang Liu, Sohail Dianat, Majid Rabbani, Raghuveer Rao, and Zhiqiang Tao. 2024 a . Text is mass: Modeling as stochastic embedding for text-video retrieval. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogn...
2024
-
[34]
Yi Wang, Conrad M Albrecht, Nassim Ait Ali Braham, Chenying Liu, Zhitong Xiong, and Xiao Xiang Zhu. 2024 b . Decoupling common and unique representations for multimodal self-supervised learning. In European Conference on Computer Vision, pages 286--303. Springer
2024
-
[35]
Yi Wang, Kunchang Li, Xinhao Li, Jiashuo Yu, Yinan He, Guo Chen, Baoqi Pei, Rongkun Zheng, Zun Wang, Yansong Shi, and 1 others. 2024 c . Internvideo2: Scaling foundation models for multimodal video understanding. In European Conference on Computer Vision, pages 396--416. Springer
2024
-
[36]
Yun Wang, Long Zhang, Jingren Liu, Jiaqi Yan, Zhanjie Zhang, Jiahao Zheng, Xun Yang, Dapeng Wu, Xiangyu Chen, and Xuelong Li. 2025. Episodic memory representation for long-form video understanding. arXiv preprint arXiv:2508.09486
2025
-
[37]
Yuting Wang, Jinpeng Wang, Bin Chen, Tao Dai, Ruisheng Luo, and Shu-Tao Xia. 2024 d . Gmmformer v2: An uncertainty-aware framework for partially relevant video retrieval. arXiv preprint arXiv:2405.13824
2024 arXiv
-
[38]
Yuting Wang, Jinpeng Wang, Bin Chen, Ziyun Zeng, and Shu-Tao Xia. 2024 e . Gmmformer: Gaussian-mixture-model based transformer for efficient partially relevant video retrieval. In Proceedings of the AAAI Conference on Artificial Intelligence, pages 5767--5775
2024
-
[39]
Ziyang Wang, Yi-Lin Sung, Feng Cheng, Gedas Bertasius, and Mohit Bansal. 2023. Unified coarse-to-fine alignment for video-text retrieval. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 2816--2827
2023
-
[40]
Wenhao Wu, Haipeng Luo, Bo Fang, Jingdong Wang, and Wanli Ouyang. 2023. Cap4video: What can auxiliary captions do for text-video retrieval? In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10704--10713
2023
-
[41]
Xun Yang, Tianyu Chang, Tianzhu Zhang, Shanshan Wang, Richang Hong, and Meng Wang. 2024 a . Learning hierarchical visual transformation for domain generalizable visual matching and recognition. International Journal of Computer Vision, 132(11):4823--4849
2024
-
[42]
Xun Yang, Fuli Feng, Wei Ji, Meng Wang, and Tat-Seng Chua. 2021. Deconfounded video moment retrieval with causal intervention. In Proceedings of the 44th International ACM SIGIR Conference on Research and Development in Information Retrieval, page 1–10
2021
-
[43]
Xun Yang, Shanshan Wang, Jian Dong, Jianfeng Dong, Meng Wang, and Tat-Seng Chua. 2022. Video moment retrieval with cross-modal neural architecture search. IEEE Transactions on Image Processing, 31:1204--1216
2022
-
[44]
Xun Yang, Jianming Zeng, Dan Guo, Shanshan Wang, Jianfeng Dong, and Meng Wang. 2024 b . Robust video question answering via contrastive cross-modality representation learning. Science China Information Sciences, 67(10):202104
2024
-
[45]
Shukang Yin, Sirui Zhao, Hao Wang, Tong Xu, and Enhong Chen. 2024. Exploiting instance-level relationships in weakly supervised text-to-video retrieval. ACM Transactions on Multimedia Computing, Communications and Applications, 20(10):1--21
2024
-
[46]
Biao Zhang and Peter Wonka. 2021. Point cloud instance segmentation using probabilistic embeddings. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 8883--8892
2021
-
[47]
Gengyuan Zhang, Jisen Ren, Jindong Gu, and Volker Tresp. 2023. Multi-event video-text retrieval. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 22113--22123
2023
-
[48]
Hao Zhang, Aixin Sun, Wei Jing, Guoshun Nan, Liangli Zhen, Joey Tianyi Zhou, and Rick Siow Mong Goh. 2021. Video corpus moment retrieval with contrastive learning. In Proceedings of the 44th International ACM SIGIR Conference on Research and Development in Information Retrieva...
2021
-
[49]
Jing Zhang, Dan Guo, Xun Yang, Peipei Song, and Meng Wang. 2024. Visual-linguistic-stylistic triple reward for cross-lingual image captioning. ACM Transactions on Multimedia Computing, Communications and Applications, 20(4):1--23
2024
-
[50]
Long Zhang, Peipei Song, Zhangling Duan, Shuo Wang, Xiaojun Chang, and Xun Yang. 2025 a . Video corpus moment retrieval with query-specific context learning and progressive localization. IEEE Transactions on Circuits and Systems for Video Technology, 35(6):5659--5670
2025
-
[51]
Qun Zhang, Chao Yang, Bin Jiang, and Bolin Zhang. 2025 b . Multi-grained alignment with knowledge distillation for partially relevant video retrieval. ACM Transactions on Multimedia Computing, Communications and Applications
2025
-
[52]
Sheng Zhou, Junbin Xiao, Qingyun Li, Yicong Li, Xun Yang, Dan Guo, Meng Wang, Tat-Seng Chua, and Angela Yao. 2025 a . Egotextvqa: Towards egocentric scene-text aware video question answering. In Proceedings of the Computer Vision and Pattern Recognition Conference, pages 3363--3373
2025
-
[53]
Sheng Zhou, Junbin Xiao, Xun Yang, Peipei Song, Dan Guo, Angela Yao, Meng Wang, and Tat-Seng Chua. 2025 b . Scene-text grounding for text-based video question answering. IEEE Transactions on Multimedia
2025
Reviewed August 5, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.