REVIEW 3 major objections 5 minor 51 references
AdaVid: Adaptive Video-Language Pretraining
T0 review · 3 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read AdaVid makes a video encoder's hidden width adjustable at inference, so one pretrained model covers many compute budgets and beats its fixed-width baseline at matched cost.
desk verdict Solid adaptive-width video encoder, but the headline EgoVLP comparison needs a controlled finetuned baseline before it convinces. 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 adaptive transformer layer is the mechanism that carries the argument: each linear projection $y = Wx + b$ is restricted to the upper-left $d\times d$ submatrix $W[1:d,1:d]$ and the first $d$ bias entries, layer normalization uses the first $d$ scale and shift values, and multi-head attention uses $d/H$ heads instead of shrinking each head. Randomly sampling widths during pretraining forces a coarse-to-fine structure in the weights and activations, so the trained model can later be evaluated at any allowed width, and the paper finds this acts as a mild regularizer.
What would settle it
Train vanilla EgoVLP with the same recipe used for AdaVid-EgoVLP, meaning the same epoch count, batch size, and EgoVLP initialization but with fixed full width, and compare on EgoMCQ at equal FLOPs. If vanilla finetuning closes the gap, adaptive-width training is not the cause of the reported advantage; a further check is pretraining AdaVid-EgoVLP from scratch and measuring whether it still matches EgoVLP at half compute.
Extended reading notes
Core claim
The central claim is that the computational cost of a video transformer can be made adjustable without retraining or postprocessing by making the embedding dimension of every layer adaptive. During training the layer width is sampled randomly from the set $\{D, 3D/4, D/2, D/4\}$; at inference the model drops trailing dimensions and uses the corresponding leading submatrices of its weights, with attention using fewer heads rather than narrower heads. AdaVid-EgoVLP, pretrained on Ego4D with the EgoNCE objective, scores 90.8/59.5 on EgoMCQ inter/intra versus 90.6/57.2 for vanilla EgoVLP at full width, and retains most of that accuracy at half compute. On Diving-48, AdaVid-EgoVLP-FT at 128 frames and 285e10 FLOPs reaches 82.2%, ahead of TimeSformer-L at 96 frames and 714e10 FLOPs. The paper also claims that a decreasing-width schedule, with wide early layers and narrow deep layers, works better than the reverse.
Load-bearing premise
The comparison to vanilla EgoVLP assumes that AdaVid-EgoVLP's gains come from adaptive-width training rather than from its extra 10 epochs of finetuning and its initialization from already-trained EgoVLP weights; vanilla EgoVLP receives no equivalent finetuning.
Editorial extensions
If this is right
- At full width, AdaVid training acts as a regularizer: AdaVid-EgoVLP beats vanilla EgoVLP on EgoMCQ even though it is the same architecture trained with the same supervision.
- A fixed compute budget can be spent on more frames: AdaVid-EgoVLP-FT reaches 82.2% on Diving-48 with 128 frames and 285e10 FLOPs, where TimeSformer-L needs 714e10 FLOPs for 81.0%.
- Decreasing width across layers is the better design: decreasing configurations outperform increasing ones at matched FLOPs on EgoMCQ, consistent with deeper layers storing only high-level concepts.
- Long-video understanding inherits the same flexibility: AdaVid-Agg matches HierVL on SummaryMCQ and EgoSchema at full width and retains most of its accuracy at 0.25x compute.
- A single AdaVid model gives a smooth compute-accuracy operating curve, from about 0.06x to 1.0x of the reference model's FLOPs, so deployment can pick the width that fits the available device budget.
Reading between the lines
- Because the slicing mechanism is stated purely in terms of weight submatrices, it should transfer to other transformer-based encoders, including image-language models; the paper only demonstrates it on video.
- An untested but natural deployment pattern is two-stage retrieval: rank candidates with a narrow width and rerank the top few at full width, an approach the paper mentions as future work.
- A from-scratch training run would separate the regularization effect from the finetuning effect; if the equal-compute advantage survives, adaptive-width pretraining could become a standard recipe for contrastive video models rather than a special-purpose efficiency trick.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes AdaVid, an adaptive transformer framework that lets a single video encoder be evaluated at multiple hidden widths by slicing nested weight matrices, following the Matryoshka Representation Learning idea. The authors instantiate AdaVid-EgoVLP, an adaptive variant of EgoVLP trained on Ego4D video-narration pairs, and AdaVid-Agg, a lightweight aggregator for long videos. They evaluate on EgoMCQ, Diving-48, SummaryMCQ, LongVideoRetrieval, and EgoSchema, and report that AdaVid-EgoVLP matches or outperforms vanilla EgoVLP at half or equal compute, and that adaptive width lets the model process more frames within a fixed FLOP budget. The paper also studies whether embedding dimensions should decrease or increase across layers during training.
Significance. If the claims were established, the contribution would be practically significant: a single video-language encoder that serves multiple compute budgets at inference time, with no distillation or post-hoc pruning, and with a simple nested-weight design. The within-model compute-accuracy curves across d-768, d-576, d-384, and d-192 are a genuine strength and appear to support graceful accuracy degradation with reduced width. The FLOPs formulas in Appendix A are transparent and easy to check. However, the headline comparison to EgoVLP is not yet controlled, because AdaVid-EgoVLP is initialized from EgoVLP weights and additionally finetuned, while the EgoVLP baseline is not. The Diving-48 comparison with TimeSformer is also confounded by different pretraining data. The adaptive-width idea is plausible and the framework is simple, but the central attribution claim needs a control experiment before the reported advantages can be assigned to the method.
major comments (3)
- [Section 4.3, Table 2] The comparison of AdaVid-EgoVLP (90.8/59.5 on EgoMCQ) with vanilla EgoVLP (90.6/57.2) conflates the adaptive-width mechanism with two additional interventions. Section 4.3 states that AdaVid-EgoVLP is initialized from EgoVLP weights and finetuned for 10 epochs with a batch size of 160, whereas the EgoVLP baseline numbers appear to come from the original model without this additional finetuning. To support the abstract's claim that AdaVid "even outperforms EgoVLP when given equal computational resources," the authors must add a control that finetunes vanilla EgoVLP under the identical recipe (same epochs, batch size, initialization, hyperparameters, and EgoNCE loss) while keeping the embedding dimension fixed at 768. If that control reaches 90.8/59.5, the reported advantage is due to extra finetuning rather than to AdaVid; if it does not, the comparison still needs the control to attribute the gain. The statement in Section 3.3 that AdaVid-trained models "often outperform their vanilla counterparts despite identical training setups" is unsupported because no identical-training-setup vanilla model is evaluated.
- [Section 4.3, Table 3] The Diving-48 comparison is confounded. The text says TimeSformer shares the same architecture, "ensuring a fair comparison," but the table caption states that the baselines are pretrained on ImageNet-21K while the AdaVid models are pretrained on Ego4D; additionally, AdaVid-EgoVLP-FT starts from EgoVLP weights and is finetuned on Diving-48. Therefore the frame-count-versus-compute claim, for example 128 frames at 285e10 FLOPs reaching 82.2% versus TimeSformer-L at 714e10 FLOPs reaching 81.0%, does not isolate the adaptive-width contribution. At minimum, these results should be reworded as cross-paper comparisons rather than controlled experiments, and an apples-to-apples control with the same pretraining data and finetuning recipe, using a non-adaptive baseline, should be run if the "more frames within limited compute" claim is to be attributed to the method.
- [Section 3.3 / Section 4.3] The dimension sampling strategy is underspecified, which blocks reproduction of the dec-versus-inc finding. Section 3.3 says a dimension is "chosen randomly or based on some strategy" from {D, 3D/4, D/2, D/4}, but the paper never specifies the sampling distribution, whether each layer is sampled independently per iteration, how the decreasing or increasing constraint is enforced within a step, or whether the schedule changes over the 10 epochs. The claims that "gradually decreasing embedding dimension sizes across layers yields better performance" and that the opposite strategy "bottlenecks the information at early layers" depend on this exact procedure. Please provide the full sampling algorithm, including the random seed policy, or release code; without this, the central training recipe is not precisely defined.
minor comments (5)
- [Section 2] There is a typo in "compute-contrained" which should be "compute-constrained."
- [Table 3] The TimeSformer citations are inconsistent: the table cites [2] (Frozen in Time) where [5] (TimeSformer) is presumably intended.
- [Section 4.3, Table 2] The source of the EgoVLP baseline numbers should be stated explicitly, namely whether they are taken from the original paper or re-evaluated with the same evaluation code, and confidence intervals or repeated-seed variance for EgoMCQ would help interpret the 0.2-point inter and 2.3-point intra gaps.
- [Section 4.2] The LongVideoRetrieval benchmark is newly curated in this paper, but no dataset URL or release instructions are given; please include this information for reproducibility.
- [Section 4.4, Table 5] There is a typo in the table caption: "signficantly" should be "significantly."
Circularity Check
No construction-level circularity; the EgoVLP-initialization and finetuning choice is a fairness confound for the benchmark comparison, but no derivation reduces to its own inputs.
full rationale
AdaVid is an empirical architecture paper: the adaptive transformer layer is defined constructively (upper-left d x d weight slicing, bias and LayerNorm slicing, head reduction for multi-head attention), and all reported results are measured on fixed external benchmarks (EgoMCQ, Diving-48, SummaryMCQ, EgoSchema, LongVideoRetrieval) rather than produced by fitting an equation to the quantity being reported. The paper's citations to EgoVLP, HierVL, TimeSformer, MRL, FlexViT, and SHARCS are to external prior work with no author overlap, and no load-bearing premise depends on a self-citation. The main self-referential element is experimental: Section 4.3 states "we initialize our model with EgoVLP weights and finetune it with adaptive embedding dimensions" at batch size 160 versus EgoVLP's 512, while the EgoVLP baseline numbers come from the original EgoVLP checkpoint, so the claim that AdaVid-EgoVLP "outperforms EgoVLP" at equal compute conflates initialization, 10 extra epochs, and the adaptive mechanism; Section 3.3's phrase "despite identical training setups" is therefore inaccurate. This is a genuine control deficiency and a correctness risk, but it is not circularity under the rubric: no reported accuracy is equal to, or forced by, an input parameter by construction. The Diving-48 comparison is similarly confounded by different pretraining data (ImageNet-21K versus Ego4D) and by the EgoVLP initialization, but again this is a benchmarking fairness issue rather than a derivation-level circular step.
Assumptions & free parameters
free parameters (5)
- Allowed embedding dimension ratios =
{1, 0.75, 0.5, 0.25} of D=768
- Dimension scheduling strategy =
decreasing (d-dec); selected after comparing variants on EgoMCQ
- AdaVid-Agg segment count and frame count =
S=16, T=64
- Number of aggregator transformer layers =
12
- Training epochs and batch sizes =
10 epochs; batch 160 (AdaVid-EgoVLP), 256 (AdaVid-Agg)
assumptions (6)
- standard math Space-time attention (TimeSformer/EgoVLP) is a suitable base video encoder, and the complexity formulas in Appendix A are correct.
- domain assumption Dropping trailing dimensions of weights and activations, and halving heads, after adaptive training preserves the semantic information needed for downstream tasks.
- domain assumption A coarse-to-fine structure, where deeper layers use smaller embedding dimensions, is beneficial.
- domain assumption Ego4D narration and summary supervision transfers to EgoMCQ, SummaryMCQ, EgoSchema, Diving-48, and LongVideoRetrieval.
- domain assumption Hierarchical late fusion, encoding short clips and then aggregating, captures long-video semantics.
- domain assumption FLOPs are an accurate proxy for the computational footprint on edge devices.
Cite this review
Pith. "Pith review of AdaVid: Adaptive Video-Language Pretraining." pith.science (2026). https://pith.science/paper/4V5IGLPO
@misc{pith2026250412513,
author = {Pith},
title = {Pith review of: AdaVid: Adaptive Video-Language Pretraining},
year = {2026},
howpublished = {\url{https://pith.science/paper/4V5IGLPO}},
note = {Machine review of arXiv:2504.12513}
}
read the original abstract
Contrastive video-language pretraining has demonstrated great success in learning rich and robust video representations. However, deploying such video encoders on compute-constrained edge devices remains challenging due to their high computational demands. Additionally, existing models are typically trained to process only short video clips, often limited to 4 to 64 frames. In this paper, we introduce AdaVid, a flexible architectural framework designed to learn efficient video encoders that can dynamically adapt their computational footprint based on available resources. At the heart of AdaVid is an adaptive transformer block, inspired by Matryoshka Representation Learning, which allows the model to adjust its hidden embedding dimension at inference time. We show that AdaVid-EgoVLP, trained on video-narration pairs from the large-scale Ego4D dataset, matches the performance of the standard EgoVLP on short video-language benchmarks using only half the compute, and even outperforms EgoVLP when given equal computational resources. We further explore the trade-off between frame count and compute on the challenging Diving48 classification benchmark, showing that AdaVid enables the use of more frames without exceeding computational limits. To handle longer videos, we also propose a lightweight hierarchical network that aggregates short clip features, achieving a strong balance between compute efficiency and accuracy across several long video benchmarks.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[1]
Hiervl: Learning hierarchical video-language embeddings
Kumar Ashutosh, Rohit Girdhar, Lorenzo Torresani, and Kris- ten Grauman. Hiervl: Learning hierarchical video-language embeddings. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 23066–23078, 2023. 2, 3, 5, 6, 7, 11
work page 2023
-
[2]
Frozen in time: A joint video and image encoder for end-to- end retrieval
Max Bain, Arsha Nagrani, Gül Varol, and Andrew Zisserman. Frozen in time: A joint video and image encoder for end-to- end retrieval. In IEEE International Conference on Computer Vision, 2021. 1, 2, 3, 7
work page 2021
-
[3]
Mem- ory consolidation enables long-context video understanding
Ivana Balaževi´c, Yuge Shi, Pinelopi Papalampidi, Rahma Chaabouni, Skanda Koppula, and Olivier J Hénaff. Mem- ory consolidation enables long-context video understanding. arXiv preprint arXiv:2402.05861, 2024. 2, 3, 7
arXiv 2024
-
[4]
Long- former: The long-document transformer
Iz Beltagy, Matthew E Peters, and Arman Cohan. Long- former: The long-document transformer. arXiv preprint arXiv:2004.05150, 2020. 1, 2
arXiv 2004
-
[5]
Is space-time attention all you need for video understanding? In ICML, page 4, 2021
Gedas Bertasius, Heng Wang, and Lorenzo Torresani. Is space-time attention all you need for video understanding? In ICML, page 4, 2021. 1, 2, 3, 4, 7, 11
work page 2021
-
[6]
Flexivit: One model for all patch sizes
Lucas Beyer, Pavel Izmailov, Alexander Kolesnikov, Mathilde Caron, Simon Kornblith, Xiaohua Zhai, Matthias Min- derer, Michael Tschannen, Ibrahim Alabdulmohsin, and Filip Pavetic. Flexivit: One model for all patch sizes. In Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 14496–14506, 2023. 2
work page 2023
-
[7]
Once-for-all: Train one network and specialize it for efficient deployment
Han Cai, Chuang Gan, Tianzhe Wang, Zhekai Zhang, and Song Han. Once-for-all: Train one network and specialize it for efficient deployment. arXiv preprint arXiv:1908.09791,
arXiv 1908
-
[8]
Emerg- ing properties in self-supervised vision transformers
Mathilde Caron, Hugo Touvron, Ishan Misra, Hervé Jégou, Julien Mairal, Piotr Bojanowski, and Armand Joulin. Emerg- ing properties in self-supervised vision transformers. In Pro- ceedings of the IEEE/CVF international conference on com- puter vision, pages 9650–9660, 2021. 3
work page 2021
Show all 51 references
-
[9]
Vision transformer slimming: Multi-dimension searching in continuous optimiza- tion space
Arnav Chavan, Zhiqiang Shen, Zhuang Liu, Zechun Liu, Kwang-Ting Cheng, and Eric P Xing. Vision transformer slimming: Multi-dimension searching in continuous optimiza- tion space. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 4931–4941,
-
[10]
To- wards the limit of network quantization
Yoojin Choi, Mostafa El-Khamy, and Jungwon Lee. To- wards the limit of network quantization. arXiv preprint arXiv:1612.01543, 2016. 2
2016 arXiv
-
[11]
Bert: Pre-training of deep bidirectional transformers for language understanding
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. 2
2018 arXiv
-
[12]
Matformer: Nested transformer for elastic inference
Fnu Devvrit, Sneha Kudugunta, Aditya Kusupati, Tim Dettmers, Kaifeng Chen, Inderjit S Dhillon, Yulia Tsvetkov, Hannaneh Hajishirzi, Sham M Kakade, Ali Farhadi, et al. Matformer: Nested transformer for elastic inference. In Work- shop on Advancing Neural Network Training: Compu...
2023
-
[13]
Slowfast networks for video recognition
Christoph Feichtenhofer, Haoqi Fan, Jitendra Malik, and Kaiming He. Slowfast networks for video recognition. In Proceedings of the IEEE/CVF international conference on computer vision, pages 6202–6211, 2019. 3, 7
2019
-
[14]
Ego4d: Around the world in 3,000 hours of egocentric video
Kristen Grauman, Andrew Westbury, Eugene Byrne, Zachary Chavis, Antonino Furnari, Rohit Girdhar, Jackson Hamburger, Hao Jiang, Miao Liu, Xingyu Liu, et al. Ego4d: Around the world in 3,000 hours of egocentric video. In Proceedings of the IEEE/CVF Conference on Computer Vision ...
2022
-
[15]
Ego4d: Around the world in 3,000 hours of egocentric video
Kristen Grauman, Andrew Westbury, Eugene Byrne, Zachary Chavis, Antonino Furnari, Rohit Girdhar, Jackson Hamburger, Hao Jiang, Miao Liu, Xingyu Liu, et al. Ego4d: Around the world in 3,000 hours of egocentric video. In Proceedings of the IEEE/CVF Conference on Computer Vision ...
2022
-
[16]
Dynamic convnets on tiny devices via nested sparsity
Matteo Grimaldi, Luca Mocerino, Antonio Cipolletta, and Andrea Calimera. Dynamic convnets on tiny devices via nested sparsity. IEEE Internet of Things Journal, 10(6):5073– 5082, 2022. 2
2022
-
[17]
Transkimmer: Transformer learns to layer-wise skim
Yue Guan, Zhengyi Li, Jingwen Leng, Zhouhan Lin, and Minyi Guo. Transkimmer: Transformer learns to layer-wise skim. arXiv preprint arXiv:2205.07324, 2022. 1, 2
2022 arXiv
-
[18]
Distill- ing the knowledge in a neural network
Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distill- ing the knowledge in a neural network. arXiv preprint arXiv:1503.02531, 2015. 2
2015 arXiv
-
[19]
Training compute-optimal large language models
Jordan Hoffmann, Sebastian Borgeaud, Arthur Mensch, Elena Buchatskaya, Trevor Cai, Eliza Rutherford, Diego de Las Casas, Lisa Anne Hendricks, Johannes Welbl, Aidan Clark, et al. Training compute-optimal large language models. arXiv preprint arXiv:2203.15556, 2022. 11
2022 arXiv
-
[20]
Dynabert: Dynamic bert with adaptive width and depth
Lu Hou, Zhiqi Huang, Lifeng Shang, Xin Jiang, Xiao Chen, and Qun Liu. Dynabert: Dynamic bert with adaptive width and depth. Advances in Neural Information Processing Sys- tems, 33:9782–9793, 2020. 2
2020
-
[21]
Long movie clip classification with state-space video models
Md Mohaiminul Islam and Gedas Bertasius. Long movie clip classification with state-space video models. In European Conference on Computer Vision , pages 87–104. Springer,
-
[22]
Video re- cap: Recursive captioning of hour-long videos
Md Mohaiminul Islam, Ngan Ho, Xitong Yang, Tushar Na- garajan, Lorenzo Torresani, and Gedas Bertasius. Video re- cap: Recursive captioning of hour-long videos. arXiv preprint arXiv:2402.13250, 2024. 6
2024 arXiv
-
[23]
Perceiver io: A general architecture for structured inputs & outputs
Andrew Jaegle, Sebastian Borgeaud, Jean-Baptiste Alayrac, Carl Doersch, Catalin Ionescu, David Ding, Skanda Kop- pula, Daniel Zoran, Andrew Brock, Evan Shelhamer, et al. Perceiver io: A general architecture for structured inputs & outputs. arXiv preprint arXiv:2107.14795, 2021. 1, 2
2021 arXiv
-
[24]
Matryoshka representation learning
Aditya Kusupati, Gantavya Bhatt, Aniket Rege, Matthew Wallingford, Aditya Sinha, Vivek Ramanujan, William Howard-Snyder, Kaifeng Chen, Sham Kakade, Prateek Jain, et al. Matryoshka representation learning. In Advances in Neural Information Processing Systems, 2022. 2, 5, 8
2022
-
[25]
Block pruning for faster transformers
François Lagunas, Ella Charlaix, Victor Sanh, and Alexan- der M Rush. Block pruning for faster transformers. arXiv preprint arXiv:2109.04838, 2021. 2
2021 arXiv
-
[26]
Resound: Towards action recognition without representation bias
Yingwei Li, Yi Li, and Nuno Vasconcelos. Resound: Towards action recognition without representation bias. InProceedings of the European Conference on Computer Vision (ECCV) , pages 513–528, 2018. 2, 5 9
2018
-
[27]
Egocentric video-language pretraining
Kevin Qinghong Lin, Alex Jinpeng Wang, Mattia Soldan, Michael Wray, Rui Yan, Eric Zhongcong Xu, Difei Gao, Rongcheng Tu, Wenzhe Zhao, Weijie Kong, et al. Egocentric video-language pretraining. arXiv preprint arXiv:2206.01670,
-
[28]
Egocentric video-language pretraining
Kevin Qinghong Lin, Jinpeng Wang, Mattia Soldan, Michael Wray, Rui Yan, Eric Z Xu, Difei Gao, Rong-Cheng Tu, Wen- zhe Zhao, Weijie Kong, et al. Egocentric video-language pretraining. Advances in Neural Information Processing Sys- tems, 35:7575–7586, 2022. 3
2022
-
[29]
Rethinking the value of network pruning
Zhuang Liu, Mingjie Sun, Tinghui Zhou, Gao Huang, and Trevor Darrell. Rethinking the value of network pruning. arXiv preprint arXiv:1810.05270, 2018. 2, 3
2018 arXiv
-
[30]
Decoupled weight decay regularization
Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017. 7
2017 arXiv
-
[31]
Univl: A unified video and language pre-training model for multimodal understanding and generation
Huaishao Luo, Lei Ji, Botian Shi, Haoyang Huang, Nan Duan, Tianrui Li, Jason Li, Taroon Bharti, and Ming Zhou. Univl: A unified video and language pre-training model for multimodal understanding and generation. arXiv preprint arXiv:2002.06353, 2020. 3
2002 arXiv
-
[32]
Egoschema: A diagnostic benchmark for very long- form video language understanding
Karttikeya Mangalam, Raiymbek Akshulakov, and Jitendra Malik. Egoschema: A diagnostic benchmark for very long- form video language understanding. Advances in Neural Information Processing Systems, 36, 2024. 5, 6, 8
2024
-
[33]
Howto100m: Learning a text-video embedding by watching hundred mil- lion narrated video clips
Antoine Miech, Dimitri Zhukov, Jean-Baptiste Alayrac, Makarand Tapaswi, Ivan Laptev, and Josef Sivic. Howto100m: Learning a text-video embedding by watching hundred mil- lion narrated video clips. In Proceedings of the IEEE/CVF international conference on computer vision , pag...
2019
-
[34]
End-to-end learn- ing of visual representations from uncurated instructional videos
Antoine Miech, Jean-Baptiste Alayrac, Lucas Smaira, Ivan Laptev, Josef Sivic, and Andrew Zisserman. End-to-end learn- ing of visual representations from uncurated instructional videos. In Proceedings of the IEEE/CVF conference on com- puter vision and pattern recognition, page...
2020
-
[35]
A sim- ple recipe for contrastively pre-training video-first encoders beyond 16 frames
Pinelopi Papalampidi, Skanda Koppula, Shreya Pathak, Justin Chiu, Joe Heyward, Viorica Patraucean, Jiajun Shen, Antoine Miech, Andrew Zisserman, and Aida Nematzdeh. A sim- ple recipe for contrastively pre-training video-first encoders beyond 16 frames. In Proceedings of the IE...
2024
-
[36]
Learning transferable visual models from natural language supervi- sion
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 supervi- sion. In International conference on machine learning, ...
2021
-
[37]
Sharcs: Efficient trans- formers through routing with dynamic width sub-networks
Mohammadreza Salehi, Sachin Mehta, Aditya Kusupati, Ali Farhadi, and Hannaneh Hajishirzi. Sharcs: Efficient trans- formers through routing with dynamic width sub-networks. arXiv preprint arXiv:2310.12126, 2023. 3, 4, 6
2023 arXiv
-
[38]
Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter
Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter. arXiv preprint arXiv:1910.01108, 2019. 1, 2, 4
1910 arXiv
-
[39]
Q- bert: Hessian based ultra low precision quantization of bert
Sheng Shen, Zhen Dong, Jiayu Ye, Linjian Ma, Zhewei Yao, Amir Gholami, Michael W Mahoney, and Kurt Keutzer. Q- bert: Hessian based ultra low precision quantization of bert. In Proceedings of the AAAI Conference on Artificial Intelligence, pages 8815–8821, 2020. 2
2020
-
[40]
Training data-efficient image transformers & distillation through atten- tion
Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Hervé Jégou. Training data-efficient image transformers & distillation through atten- tion. In International conference on machine learning, pages 10347–10357. PMLR, 2021. 2
2021
-
[41]
Attention is all you need
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszko- reit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. Advances in neural information processing systems, 30, 2017. 2, 5
2017
-
[42]
Deformable video trans- former
Jue Wang and Lorenzo Torresani. Deformable video trans- former. In Proceedings of the IEEE/CVF conference on com- puter vision and pattern recognition , pages 14053–14062,
-
[43]
Videoagent: Long-form video understanding with large language model as agent
Xiaohan Wang, Yuhui Zhang, Orr Zohar, and Serena Yeung- Levy. Videoagent: Long-form video understanding with large language model as agent. arXiv preprint arXiv:2403.10517,
-
[44]
Internvideo: General video foundation models via generative and discriminative learning
Yi Wang, Kunchang Li, Yizhuo Li, Yinan He, Bingkun Huang, Zhiyu Zhao, Hongjie Zhang, Jilan Xu, Yi Liu, Zun Wang, et al. Internvideo: General video foundation models via generative and discriminative learning. arXiv preprint arXiv:2212.03191,
-
[45]
Memvit: Memory-augmented multiscale vision transformer for efficient long-term video recognition
Chao-Yuan Wu, Yanghao Li, Karttikeya Mangalam, Haoqi Fan, Bo Xiong, Jitendra Malik, and Christoph Feichtenhofer. Memvit: Memory-augmented multiscale vision transformer for efficient long-term video recognition. In Proceedings of the IEEE/CVF Conference on Computer Vision and P...
2022
-
[46]
Videoclip: Contrastive pre-training for zero-shot video-text understanding
Hu Xu, Gargi Ghosh, Po-Yao Huang, Dmytro Okhonko, Armen Aghajanyan, Florian Metze, Luke Zettlemoyer, and Christoph Feichtenhofer. Videoclip: Contrastive pre-training for zero-shot video-text understanding. arXiv preprint arXiv:2109.14084, 2021. 1, 2, 3
2021 arXiv
-
[47]
Slimmable neural networks
Jiahui Yu, Linjie Yang, Ning Xu, Jianchao Yang, and Thomas Huang. Slimmable neural networks. arXiv preprint arXiv:1812.08928, 2018. 2
2018 arXiv
-
[48]
Self-chained image-language model for video localization and question answering
Shoubin Yu, Jaemin Cho, Prateek Yadav, and Mohit Bansal. Self-chained image-language model for video localization and question answering. Advances in Neural Information Processing Systems, 36, 2024. 7
2024
-
[49]
Poa: Pre-training once for models of all sizes
Yingying Zhang, Xin Guo, Jiangwei Lao, Lei Yu, Lixiang Ru, Jian Wang, Guo Ye, Huimei He, Jingdong Chen, and Ming Yang. Poa: Pre-training once for models of all sizes. In European Conference on Computer Vision, pages 131–148. Springer, 2024. 3
2024
-
[50]
Mgsampler: An explainable sampling strategy for video ac- tion recognition
Yuan Zhi, Zhan Tong, Limin Wang, and Gangshan Wu. Mgsampler: An explainable sampling strategy for video ac- tion recognition. In Proceedings of the IEEE/CVF Inter- national conference on Computer Vision, pages 1513–1522,
-
[2021]
FLOPs computation A.1
3 10 AdaVid: Adaptive Video-Language Pretraining Supplementary Material A. FLOPs computation A.1. Multi-Head Self-Attention We follow [ 19] for calculating the total FLOPs of Multi- head self attention as 8ND 2 + 4N 2D, whereN represents the number of tokens andD denotes the t...
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.