Author Response to Reviewer A4xM (1/3)
We sincerely appreciate your valuable and constructive feedback, which has greatly assisted us in enhancing the overall quality of our manuscript.
**Question 1.1**: Limited Improvement in R@1 for T2V Retrieval. The R@1 improvement over previous methods is relatively small, especially given the advances in MLLM models. In 2023, T2V retrieval methods like HBI and Cap4video on CLIP-ViT-32/16, R@1 have reached around 48/50 (e.g., Cap4Video, HBI).
**Answer**: Thank you for your observation. It is important to note that methods like HBI and Cap4video perform **full fine-tuning**, where the entire backbone is trained (as discussed in the Related Work section of our revised paper). In this paper, we focus on **parameter-efficient fine-tuning** (PEFT) methods, where the backbone remains frozen, and only minimal trainable parameters are used. Compared to previous SOTA methods, our TempMe achieve both superior performance and computational efficiency. Specifically, compared to VoP, we achieve a **1.4%** R@1 improvement with only **3.6%** trainable parameters and **60%** GFLOPs. Similarly, compared to DGL, we achieve a **1.5%** R@1 improvement with only **60%** trainable parameters and **52%** GFLOPs.
**Question 1.2**: I suspect the limited improvement may stem from TempMe still focusing on video merging within the encoder, without further optimization after obtaining the clip-level representation.
**Answer**: Thank you for your insightful observation. For fair comparisons, our TempMe is consistent with existing PEFT TVR methods in computing similarities based on clip-level representations without additional optimization. We recognize the potential benefits of further optimization after obtaining the clip-level representation. Due to limited time, we conduct preliminary experiments by incorporating a parameter-free Text-Frame Attention Encoder in [1] to enhance video features (denoted as PFSim). With PFSim, TempMe achieved a **0.5%** improvement in R@1 and a **1.2%** increase in R-Sum, which validates your suggestion. These results will be included in the final version. Thank you for highlighting this valuable perspective, which we plan to investigate further in our future research.
[1] Jin, P. et al., "DiffusionRet: Generative Text-Video Retrieval with Diffusion Model," ICCV, 2023.
### Table 1. Further optimization after backbone on MSRVTT with CLIP-ViT-32
|Text-to-Video|R@1|R@5|R@10|R-Sum|
|-|-|-|-|-|
|TempMe|46.1|71.8|80.7|198.6|
|TempMe+PFSim|**46.6**|**72.1**|**81.1**|**199.8**|
**Question 2**: Lack of Memory Usage Comparison. Efficiency is not solely about GFLOPS—memory usage for training and inference is also crucial. While TempMe provides training acceleration, memory optimization would be even more beneficial. In Table 5, the authors report memory usage for CLIP-ViT-16, but it would be helpful to see detailed comparisons for CLIP-ViT-32 as well, particularly relative to previous methods.
**Answer**: Thank you for raising this important point. In Table 2, we presents the memory useage during training and inference for CLIP-ViT-32. For all experiments, memory usage during training and inference are measured on 4 A100 GPUs, each processing a batch size of 32. These results will be included in the final version.
(1) Although our TempMe achieves lower GFLOPs, it exhibits comparable inference memory usage to ToMe. We speculate that this is partially influenced by the quadratic complexity of attention mechanisms, particularly the maximum token length processed (denoted as Attn Capacity). Specifically, ToMe’s Attn Capacity is 50 at layer 1, while our TempMe’s Attn Capacity is 118 at layer 11. Additionally, a similar trend in memory usage is observed in full fine-tuning with CLIP-ViT-16 in Table 5 of our revised paper. Despite comparable inference memory usage, our TempMe achieves a significant performance improvement, with a **3.2%** increase in R@1 and a **7.2%** increase in R-Sum, demonstrating its overall effectiveness.
(2) Compared to previous PEFT TVR methods such as VoP and DGL, our TempMe requires significantly less memory during training and inference, validating the efficiency of our memory optimization. Specifically, Our TempMe not only improves **1.4**% R@1 but also achieves greater efficiency in terms of both model complexity and memory usage.
### Table 2. Memory usage comparisons on MSRVTT with CLIP-ViT-32
|Text-to-Video|GFLOPs|Train Memory (MB)|Infer Memory (MB)|R@1|R-Sum|
|-|-|-|-|-|-|
|Prompt|58.2|16103|4941|40.3|184.0|
|Adapter|53.1|15291|4785|41.9|190.2|
|LoRA|53.0|16047|4783|43.7|193.0|
|VoP|58.0|18913|6275|44.7|194.4|
|DGL|67.4|18863|5203|44.6|194.8|
|ToMe|40.2|13701|4737|42.9|191.4|
|TempMe|**34.8**|**12381**|**4735**|**46.1**|**198.6**|