REVIEW 5 major objections 6 minor 88 references
SnapViT claims that a single prunability ranking of any pretrained vision transformer yields accurate sub-networks across a continuum of compute budgets, without retraining or labels, in under five minutes.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-04 08:58 UTC pith:EQ724CRH
load-bearing objection Useful elastic-pruning method, but the Hessian story is not operational and the comparisons have some asymmetric baselines. the 5 major comments →
Elastic ViTs from Pretrained Models without Retraining
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The central claim is that the Hessian of the pruning objective can be decomposed into a local diagonal term—estimated from self-supervised gradients—and a global cross-block term approximated by the covariance of an exponential natural evolution strategy (xNES) search. Fusing the two into a single score P and ranking parameters once yields sub-networks at any desired sparsity; the evolutionary search is run once and every sparsity is read off the same ranking. The paper reports that this single-shot, label-free procedure matches or outperforms LAMP, LLM Surgeon, FPTP, SparseGPT, SNIP Magnitude, and NViT across sparsities from 10% to 60%, with a full run taking under five minutes on one A100
What carries the argument
The load-bearing object is the unified prunability score P = diag(local Hessian proxy) ⊙ (M c), where the local proxy is the dataset-averaged squared gradient norm of a self-supervised DINO-style loss, and c is a blockwise reweighting vector learned by xNES over functional units (feed-forward neurons and attention heads). The xNES covariance Σ is interpreted as approximating the inverse of the global inter-block Hessian—H^(g) ≈ αΣ^{-1}—so the learned block scalings are meant to encode which structures can be pruned jointly. Ranking P once produces masks for any sparsity, which is what makes the model elastic.
Load-bearing premise
The whole method rests on the assumption that the covariance learned by the evolutionary search (xNES) actually approximates the inverse Hessian of the pruning objective, so that the blockwise scalings encode true cross-block dependencies—yet the fitness is a non-quadratic cosine-similarity function and the final score uses only the single best sampled scaling vector, not the learned covariance.
What would settle it
Compute a small ViT where the true Hessian (or its block structure) of the pruning objective can be formed explicitly, run SnapViT, and compare the claimed H^(g) ≈ αΣ^{-1} to the empirically computed inverse block Hessian. If the off-diagonal patterns do not match, the correlation term is a heuristic; alternatively, compare pruning under the arg-max c against pruning under a score built from the covariance Σ directly—if the covariance adds nothing, the Hessian approximation is not doing the work.
If this is right
- Any pretrained ViT, including headless self-supervised encoders, can be served at many compute budgets from a single pruning run.
- Deployment pipelines no longer need to re-run a pruning method per target sparsity; one ranking covers 10–60% sparsity.
- Pruned sub-networks retain enough representation quality that linear probing, k-NN, and linear segmentation remain usable without fine-tuning; weight correction further recovers accuracy.
- Large supervised models (DeIT-III H/14) can be pruned to 50% with small loss, while heavily large-scale-pretrained models (SigLIPv2, DINOv3) tolerate less pruning before degrading.
- The method's cost scales sub-linearly with model size, making it applicable to billion-parameter encoders.
Where Pith is reading between the lines
- If the Hessian interpretation is set aside, the xNES search is still a black-box optimizer over block reweightings; the reported gains could be driven by the search itself rather than by principled curvature estimation, and a test isolating this is to compare the final score using only the arg-max c versus using the full covariance Σ^{-1}.
- The appendix's CKA-initialization result shows the evolutionary search's starting covariance matters a lot, hinting that the learned correlations partly inherit architecture-level similarity rather than discovering true Hessian curvature.
- The method could plausibly extend to other transformer families (language models, multimodal encoders) since the score only needs a self-supervised objective and block definitions, but that is an extrapolation beyond the paper.
- Because fitness is evaluated on a fixed 1000-image probe set with PCA-projected cosine similarity, the ranking is implicitly tuned to that probe set; generalization to very different test distributions is not guaranteed by the paper's claims alone.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SnapViT, a structured pruning method that turns any pretrained vision transformer into an elastic model: a single prunability score is computed once, then thresholded at arbitrary sparsity levels to produce sub-networks without retraining or labeled data. The score combines a diagonal, gradient-based local term computed with a DINO-style self-supervised loss and a blockwise rescaling vector c learned by xNES, which the paper interprets as an evolutionary approximation of the inverse global Hessian. Experiments on DINO, SigLIPv2, DeIT, and AugReg backbones, evaluated with k-NN, linear probing, and linear segmentation, claim state-of-the-art or competitive performance against LLM Surgeon, FPTP, NViT, SparseGPT, SNIP Magnitude, and LAMP, with runtimes claimed to be under five minutes on one A100 GPU.
Significance. If the empirical claims hold, the practical contribution is valuable: single-shot, label-free, retraining-free elastic pruning would let users derive many compute-adaptive sub-networks from existing pretrained ViTs with negligible overhead. The paper is unusually thorough on the experimental side: it provides code and pruned models, evaluates across several model families and tasks, includes large-model experiments, and reports a compute budget appendix. The ablations on CKA initialization, number of sparsities, and pruning-data choice are informative. However, the central scientific claim—that the xNES covariance approximates Hessian off-diagonal structure and that this structure drives the final score—is not supported by the algorithm as written. The final score uses only the best sampled c, not the covariance, so the method as implemented is a black-box search for blockwise reweightings. That distinction does not automatically invalidate the empirical results, but it removes the paper's stated theoretical basis for outperforming Hessian-aware baselines.
major comments (5)
- [§3.3, Eq. (7), Algorithm 1 (App. B.2)] The central theoretical claim is H^(g) ≈ α Σ^{-1}, but the algorithm does not use Σ in the final score. Algorithm 1 terminates with c_final = argmax_k F^(k) (line 16) and sets P = (M c_final) ⊙ s (line 17); Σ is used only inside the sampling loop and is discarded. The final score is therefore a blockwise rescaling of the local diagonal gradient score, with no off-diagonal term. Additionally, Eq. (6) is a non-quadratic fitness, so the quadratic-landscape results of [57, 1] do not apply. Unless the final score is changed to use Σ^{-1} (or μ), or the Hessian interpretation is removed, the contribution item 'evolutionary approximation of Hessian off-diagonal structures' is not supported by the method as written.
- [§4.1 and App. B.5] The baseline comparisons are asymmetric. LLM Surgeon is run with 5 shots instead of the recommended 40; NViT prunes 1024 structures per step instead of 32; FPTP uses 1000 samples instead of 2048; and NViT is evaluated on a different backbone (DeiT) from the AugReg backbone used for the other methods. These choices can favour the proposed method. The statement in B.5 that no significant differences were noticed for LLM Surgeon is not a substitute for sensitivity experiments. Please re-run at the recommended settings or provide ablations showing that the adjusted hyperparameters do not affect the baselines' accuracy.
- [Table 9 (App. C)] The statistical significance appendix reports substantial variance at high sparsity: at 50% sparsity, average k-NN std is 1.4 and linear std 1.2, with per-dataset std up to 5.3 (Pets). The main text claims improvements of 7% and 12.3% over SNIP and FPTP at 50% sparsity without error bars. These differences may be within noise. The main comparisons should include confidence intervals or error bars, or the high-sparsity claims should be tempered.
- [Sec. 3.3, Sec. 4.4, App. B.3] The blockwise vector c is fitted by maximizing the fitness F in Eq. (6), which directly measures post-pruning embedding cosine similarity at the same sparsity levels later used for ranking. Since the final masks are a deterministic function of c, the per-sparsity behavior is a fitted value, not an independent estimate of curvature. This does not by itself invalidate the method, but it means the 'global Hessian' label is an interpretation rather than a mechanism. At minimum, the authors should validate on held-out pruning data or compare against random/independent c to quantify overfitting; the data-alignment ablation in Fig. 11 already shows strong sensitivity to the choice of pruning data.
- [Abstract, Table 6, App. B.1] The abstract claims 'less than five minutes on a single A100 GPU' for generating elastic models, but Table 6 reports 11m4s for DeIT-III ViT-H/14 and 4m58s for ViT-L/16. The B.1 statement that the entire DeiT-III family is pruned in only a few minutes also conflicts with Table 6. Please correct the abstract and specify the model size for which the five-minute bound actually holds.
minor comments (6)
- [Sec. 2, last paragraph] 'can model intra-layer dependencies' appears to be a typo for 'inter-layer' or 'cross-block', since the method is intended to model correlations between functional blocks, not within a single layer.
- [Table 9] The caption says models pruned to 10, 20, and 30% sparsity, but the table columns are 10, 30, and 50%. The text should match the table.
- [References] References [75] and [76] are the same paper (Global Vision Transformer Pruning with Hessian-aware Saliency). One entry should be removed and citations reconciled.
- [Sec. 4.1] The text mentions 'DINOv2 ViT-B/16' in a comparison, but the surrounding section discusses DINOv3. Please reconcile the model name.
- [Fig. 2 caption] 'LLM Surgeon (5 Shot)' should be '5-shot' for consistency.
- [Eq. (2) and Sec. 3.2] The quantity in Eq. (2) is the squared gradient norm, not a Hessian estimate unless the model is at a stationary point. Calling this 'local Hessian' is potentially misleading; consider renaming it 'gradient-based sensitivity' or 'diagonal Fisher proxy'.
Circularity Check
No circularity: the final score is a fitted rescaling, but no prediction reduces to its input by construction; the Hessian-framing gap is a correctness issue, not circularity.
full rationale
The derivation chain is self-contained and non-circular. The local term (Eq. 2) is a standard gradient-norm diagonal proxy; the global term is learned by xNES optimizing a label-free embedding-cosine fitness (Eq. 6); the final prunability score (Eq. 8) combines them; masks (Eq. 9) are thresholded ranks. Nothing in this chain defines the output as its own input: the reported k-NN/linear accuracies are measured on held-out data, not the fitness itself, and the evolution is a direct optimization, not a prediction. The paper's main scientific weakness is that Eq. (7) (H^(g) ≈ αΣ^{-1}) is never operationalized: Algorithm 1 line 16 returns c_final = argmax_k F^(k), and line 17 builds P from c_final only, discarding Σ; hence the final score has no off-diagonal block-interaction term and the 'evolutionary approximation of Hessian off-diagonal structures' is unsupported. This is a correctness/novelty gap (and an internal-consistency issue: abstract '<5 minutes' vs Table 6's 11m4s for DeIT-III ViT-H/14), but it is not circularity: no equation reduces to another by construction, and no fitted parameter is renamed as a prediction of the quantity it was fit to. The xNES-inverse-Hessian relation is cited to external work [1,57], not to the authors' own prior results; the only self-citations ([47,48]) are for evaluation recipes and are not load-bearing. Therefore score 0.
Axiom & Free-Parameter Ledger
free parameters (6)
- blockwise rescaling vector c =
learned via xNES on 1000 ImageNet-1k images
- xNES iterations T =
50 (500 for DINOv3/SigLIPv2)
- target sparsity grid S =
10/30/50/60% (main) or 10-60% six levels
- number of pruning-data samples N_D =
1000 from ImageNet-1k training set
- per-block pruning caps =
at most 80% heads, 95% FFN neurons; min 2 heads and 154 neurons per block
- PCA dimension =
192
axioms (5)
- standard math Second-order Taylor expansion (Eq. 1) with vanishing first-order term (model near local minimum)
- domain assumption Evolution strategies adapt covariance to the inverse Hessian of a locally quadratic fitness landscape (Eq. 7)
- domain assumption Cosine similarity between PCA-compressed original and pruned embeddings faithfully proxies downstream task retention (Eq. 6)
- ad hoc to paper DINO self-supervised loss (Eq. 3) can be computed on arbitrary ViTs without a task head and yields gradients indicative of prunability
- domain assumption 1000 ImageNet-1k training images are a sufficient proxy for the deployment distribution
read the original abstract
Vision foundation models achieve remarkable performance but are only available in a limited set of pre-determined sizes, forcing sub-optimal deployment choices under real-world constraints. We introduce SnapViT: Single-shot network approximation for pruned Vision Transformers, a new post-pretraining structured pruning method that enables elastic inference across a continuum of compute budgets. Our approach efficiently combines gradient information with cross-network structure correlations, approximated via an evolutionary algorithm, does not require labeled data, generalizes to models without a classification head, and is retraining-free. Experiments on DINO, SigLIPv2, DeIT, and AugReg models demonstrate superior performance over state-of-the-art methods across various sparsities, requiring less than five minutes on a single A100 GPU to generate elastic models that can be adjusted to any computational budget. Our key contributions include an efficient pruning strategy for pretrained Vision Transformers, a novel evolutionary approximation of Hessian off-diagonal structures, and a self-supervised importance scoring mechanism that maintains strong performance without requiring retraining or labels. Code and pruned models are available at: https://elastic.ashita.nl/
Figures
Reference graph
Works this paper leans on
-
[1]
Bidirectional relation between cma-es and nes
Youhei Akimoto, Yu Nagata, Isao Ono, and Shigenobu Kobayashi. Bidirectional relation between cma-es and nes. InInternational Conference on Parallel Problem Solving from Nature (PPSN XI), 2010
2010
-
[2]
Structured pruning of deep convolutional neural networks.ACM J
Sajid Anwar, Kyuyeon Hwang, and Wonyong Sung. Structured pruning of deep convolutional neural networks.ACM J. Emerg. Technol. Comput. Syst., 13(3):32:1–32:18, 2017
2017
-
[3]
Towards in-context scene understanding.Advances in Neural Information Processing Systems, 36, 2024
Ivana Balazevic, David Steiner, Nikhil Parthasarathy, Relja Arandjelovi´c, and Olivier Henaff. Towards in-context scene understanding.Advances in Neural Information Processing Systems, 36, 2024
2024
-
[4]
Procedural image programs for representation learning.Advances in Neural Information Processing Systems, 35:6450–6462, 2022
Manel Baradad, Richard Chen, Jonas Wulff, Tongzhou Wang, Rogerio Feris, Antonio Torralba, and Phillip Isola. Procedural image programs for representation learning.Advances in Neural Information Processing Systems, 35:6450–6462, 2022
2022
-
[5]
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, 2019
Pith/arXiv arXiv 1908
-
[6]
Network augmentation for tiny deep learning
Han Cai, Chuang Gan, Ji Lin, and Song Han. Network augmentation for tiny deep learning. arXiv preprint arXiv:2110.08890, 2021
Pith/arXiv arXiv 2021
-
[7]
Mu Cai, Jianwei Yang, Jianfeng Gao, and Yong Jae Lee. Matryoshka multimodal models. CoRR, abs/2405.17430, 2024
Pith/arXiv arXiv 2024
-
[8]
Pruning convolutional neural networks with self-supervision.arXiv preprint arXiv:2001.03554, 2020
Mathilde Caron, Ari Morcos, Piotr Bojanowski, Julien Mairal, and Armand Joulin. Pruning convolutional neural networks with self-supervision.arXiv preprint arXiv:2001.03554, 2020
Pith/arXiv arXiv 2001
-
[9]
Emerging properties in self-supervised vision transformers
Mathilde Caron, Hugo Touvron, Ishan Misra, Hervé Jégou, Julien Mairal, Piotr Bojanowski, and Armand Joulin. Emerging properties in self-supervised vision transformers. InProceedings of the IEEE/CVF international conference on computer vision, pp. 9650–9660, 2021
2021
-
[10]
Transformer flops
Adam Casson. Transformer flops. https://www.adamcasson.com/posts/ transformer-flops, 2021. Accessed: 2025-09-24
2021
-
[11]
Describing textures in the wild
Mircea Cimpoi, Subhransu Maji, Iasonas Kokkinos, Sammy Mohamed, and Andrea Vedaldi. Describing textures in the wild. InCVPR, 2014
2014
-
[12]
Scaling vision transformers to 22 billion parameters
Mostafa Dehghani, Josip Djolonga, Basil Mustafa, Piotr Padlewski, Jonathan Heek, Justin Gilmer, Andreas Peter Steiner, Mathilde Caron, Robert Geirhos, Ibrahim Alabdulmohsin, et al. Scaling vision transformers to 22 billion parameters. InInternational Conference on Machine Learning, pp. 7480–7512. PMLR, 2023
2023
-
[13]
Imagenet: A large- scale hierarchical image database
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large- scale hierarchical image database. In2009 IEEE conference on computer vision and pattern recognition, pp. 248–255. Ieee, 2009
2009
-
[14]
Dhillon, Yulia Tsvetkov, Hanna Hajishirzi, Sham M
Devvrit, Sneha Kudugunta, Aditya Kusupati, Tim Dettmers, Kaifeng Chen, Inderjit S. Dhillon, Yulia Tsvetkov, Hanna Hajishirzi, Sham M. Kakade, Ali Farhadi, and Prateek Jain. Matformer: Nested transformer for elastic inference. InNeurIPS, 2024
2024
-
[15]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. InICLR, 2021. 11
2021
-
[16]
Susskind, and Armand Joulin
Alaaeldin El-Nouby, Michal Klein, Shuangfei Zhai, Miguel Ángel Bautista, Vaishaal Shankar, Alexander T Toshev, Joshua M. Susskind, and Armand Joulin. Scalable pre-training of large autoregressive image models. InProceedings of the 41st International Conference on Machine Learning, pp. 12371–12384, 2024
2024
-
[17]
Everingham, L
M. Everingham, L. Van Gool, C. K. I. Williams, J. Winn, and A. Zisserman. The pascal visual object classes (voc) challenge.IJCV, 2010
2010
-
[18]
Sparsegpt: Massive language models can be accurately pruned in one-shot
Elias Frantar and Dan Alistarh. Sparsegpt: Massive language models can be accurately pruned in one-shot. InInternational Conference on Machine Learning (ICML), 2023
2023
-
[19]
Exponential natural evolution strategies
Tobias Glasmachers, Tom Schaul, Sun Yi, Daan Wierstra, and Jürgen Schmidhuber. Exponential natural evolution strategies. InProceedings of the 12th annual conference on Genetic and evolutionary computation, pp. 393–400, 2010
2010
-
[20]
Dynamic convnets on tiny devices via nested sparsity.IEEE Internet of Things Journal, 10(6):5073–5082, 2022
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
2022
-
[21]
Susskind, and Navdeep Jaitly
Jiatao Gu, Shuangfei Zhai, Yizhe Zhang, Joshua M. Susskind, and Navdeep Jaitly. Matryoshka diffusion models. InICLR. OpenReview.net, 2024
2024
-
[22]
Learning both weights and connections for efficient neural network
Song Han, Jeff Pool, John Tran, and William Dally. Learning both weights and connections for efficient neural network. pp. 1135–1143, 2015
2015
-
[23]
Song Han, Jeff Pool, John Tran, and William J. Dally. Learning both weights and connections for efficient neural network. InNIPS, pp. 1135–1143, 2015
2015
-
[24]
Babak Hassibi and David G. Stork. Second order derivatives for network pruning: Optimal brain surgeon. InNIPS, pp. 164–171. Morgan Kaufmann, 1992
1992
-
[25]
Structured pruning for deep convolutional neural networks: A survey
Yang He and Lingao Xiao. Structured pruning for deep convolutional neural networks: A survey. IEEE Trans. Pattern Anal. Mach. Intell., 46(5):2900–2919, 2024
2024
-
[26]
Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification.JST-AEORS, 2019
Patrick Helber, Benjamin Bischke, Andreas Dengel, and Damian Borth. Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification.JST-AEORS, 2019
2019
-
[27]
Distilling the knowledge in a neural network
Geoffrey Hinton, Oriol Vinyals, and Jeffrey Dean. Distilling the knowledge in a neural network. 2015
2015
-
[28]
Rae, and Erich Elsen
Jordan Hoffmann, Sebastian Borgeaud, Arthur Mensch, Elena Buchatskaya, Trevor Cai, Eliza Rutherford, Diego de Las Casas, Lisa Anne Hendricks, Johannes Welbl, Aidan Clark, Tom Hen- nigan, Jacob Menick, Rewon Child, Adhiguna Kuncoro, Tomás Kociský, Phil Blunsom, Chris Dyer, Oriol Vinyals, Jack W. Rae, and Erich Elsen. Training compute-optimal large language...
2022
-
[29]
Dynabert: Dynamic bert with adaptive width and depth.Advances in Neural Information Processing Systems, 33: 9782–9793, 2020
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 Systems, 33: 9782–9793, 2020
2020
-
[30]
Matryoshka query transformer for large vision-language models
Wenbo Hu, Zi-Yi Dou, Liunian Harold Li, Amita Kamath, Nanyun Peng, and Kai-Wei Chang. Matryoshka query transformer for large vision-language models. InNeurIPS, 2024
2024
-
[31]
Single-shot pruning for pre-trained models: Rethinking the importance of magnitude pruning
Hirokazu Kohama, Hiroaki Minoura, Tsubasa Hirakawa, Takayoshi Yamashita, and Hironobu Fujiyoshi. Single-shot pruning for pre-trained models: Rethinking the importance of magnitude pruning. InProceedings of the IEEE/CVF International Conference on Computer Vision, pp. 1433–1442, 2023
2023
-
[32]
Similarity of neural network representations revisited
Simon Kornblith, Mohammad Norouzi, Honglak Lee, and Geoffrey Hinton. Similarity of neural network representations revisited. InInternational conference on machine learning, pp. 3519–3529. PMLR, 2019. 12
2019
-
[33]
Learning multiple layers of features from tiny images
Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009
2009
-
[34]
Kakade, Prateek Jain, and Ali Farhadi
Aditya Kusupati, Gantavya Bhatt, Aniket Rege, Matthew Wallingford, Aditya Sinha, Vivek Ramanujan, William Howard-Snyder, Kaifeng Chen, Sham M. Kakade, Prateek Jain, and Ali Farhadi. Matryoshka representation learning. InNeurIPS, 2022
2022
-
[35]
Mahoney, Joseph Hassoun, Kurt Keutzer, and Amir Gholami
Woosuk Kwon, Sehoon Kim, Michael W. Mahoney, Joseph Hassoun, Kurt Keutzer, and Amir Gholami. A fast post-training pruning framework for transformers. InNeurIPS, 2022
2022
-
[36]
A fast post-training pruning framework for transformers.Advances in Neural Information Processing Systems, 35:24101–24116, 2022
Woosuk Kwon, Sehoon Kim, Michael W Mahoney, Joseph Hassoun, Kurt Keutzer, and Amir Gholami. A fast post-training pruning framework for transformers.Advances in Neural Information Processing Systems, 35:24101–24116, 2022
2022
-
[37]
Optimal brain damage.Advances in neural information processing systems, 2, 1989
Yann LeCun, John Denker, and Sara Solla. Optimal brain damage.Advances in neural information processing systems, 2, 1989
1989
-
[38]
Layer-adaptive sparsity for the magnitude-based pruning
Jaeho Lee, Sejun Park, Sangwoo Mo, Sungsoo Ahn, and Jinwoo Shin. Layer-adaptive sparsity for the magnitude-based pruning. InICLR. OpenReview.net, 2021
2021
-
[39]
Pruning filters for efficient convnets
Hao Li, Asim Kadav, Igor Durdanovic, Hanan Samet, and Hans Peter Graf. Pruning filters for efficient convnets. 2017
2017
-
[40]
Sgdr: Stochastic gradient descent with warm restarts.arXiv preprint arXiv:1608.03983, 2016
Ilya Loshchilov and Frank Hutter. Sgdr: Stochastic gradient descent with warm restarts.arXiv preprint arXiv:1608.03983, 2016
Pith/arXiv arXiv 2016
-
[41]
S. Maji, J. Kannala, E. Rahtu, M. Blaschko, and A. Vedaldi. Fine-grained visual classification of aircraft. Technical report, 2013
2013
-
[42]
Importance estimation for neural network pruning, 2019
Pavlo Molchanov, Arun Mallya, Stephen Tyree, Iuri Frosio, and Jan Kautz. Importance estimation for neural network pruning, 2019. URLhttps://arxiv.org/abs/1906.10771
Pith/arXiv arXiv 2019
-
[43]
Morcos, Haonan Yu, Michela Paganini, and Yuandong Tian
Ari S. Morcos, Haonan Yu, Michela Paganini, and Yuandong Tian. One ticket to win them all: generalizing lottery ticket initializations across datasets and optimizers. InNeurIPS, pp. 4933–4943, 2019
2019
-
[44]
Exploring sparsity in recurrent neural networks
Sharan Narang, Greg Diamos, Shubho Sengupta, and Erich Elsen. Exploring sparsity in recurrent neural networks. InICLR (Poster). OpenReview.net, 2017
2017
-
[45]
Sosp: Efficiently capturing global correlations by second-order structured pruning
Max Nonnenmacher, Thomas Pfeil, Ingo Steinwart, and Dominik Reeb. Sosp: Efficiently capturing global correlations by second-order structured pruning. InInternational Conference on Learning Representations (ICLR), 2022. URL https://openreview.net/forum?id= H1B8bA9tvr
2022
-
[46]
Stitchable neural networks
Zizheng Pan, Jianfei Cai, and Bohan Zhuang. Stitchable neural networks. InCVPR, 2023
2023
-
[47]
Hummingbird evaluation for vision encoders, 4 2024
Valentinos Pariza, Mohammadreza Salehi, and Yuki Asano. Hummingbird evaluation for vision encoders, 4 2024. URLhttps://github.com/vpariza/open-hummingbird-eval
2024
-
[48]
Near, far: Patch-ordering enhances vision foundation models’ scene understand- ing
Valentinos Pariza, Mohammadreza Salehi, Gertjan J Burghouts, Francesco Locatello, and Yuki M Asano. Near, far: Patch-ordering enhances vision foundation models’ scene understand- ing. InThe Thirteenth International Conference on Learning Representations, 2025
2025
-
[49]
Cats and dogs
Omkar M Parkhi, Andrea Vedaldi, Andrew Zisserman, and CV Jawahar. Cats and dogs. In CVPR, 2012
2012
-
[50]
Pedregosa, G
F. Pedregosa, G. Varoquaux, A. Gramfort, V . Michel, B. Thirion, O. Grisel, M. Blondel, P. Prettenhofer, R. Weiss, V . Dubourg, J. Vanderplas, A. Passos, D. Cournapeau, M. Brucher, M. Perrot, and E. Duchesnay. Scikit-learn: Machine learning in Python.JMLR, 2011
2011
-
[51]
Design- ing network design spaces
Ilija Radosavovic, Raj Prateek Kosaraju, Ross Girshick, Kaiming He, and Piotr Dollár. Design- ing network design spaces. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp. 10428–10436, 2020. 13
2020
-
[52]
Xnor-net: Imagenet classification using binary convolutional neural networks
Mohammad Rastegari, Vicente Ordonez, Joseph Redmon, and Ali Farhadi. Xnor-net: Imagenet classification using binary convolutional neural networks. pp. 525–542. Springer, 2016
2016
-
[53]
Scaling vision with sparse mixture of experts
Carlos Riquelme, Joan Puigcerver, Basil Mustafa, Maxim Neumann, Rodolphe Jenatton, André Susano Pinto, Daniel Keysers, and Neil Houlsby. Scaling vision with sparse mixture of experts. Advances in Neural Information Processing Systems, 34:8583–8595, 2021
2021
-
[54]
High- resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. High- resolution image synthesis with latent diffusion models. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp. 10684–10695, 2022
2022
-
[55]
Imagenet large scale visual recognition challenge.IJCV, 2015
Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual recognition challenge.IJCV, 2015
2015
-
[56]
Victor Sanh, Thomas Wolf, and Alexander M. Rush. Movement pruning: Adaptive sparsity by fine-tuning. InNeurIPS, 2020
2020
-
[57]
Shir and Amir Yehudayoff
Ofer M. Shir and Amir Yehudayoff. Covariance matrix adaptation and inverse hessian on convex quadratic functions. InProceedings of the 15th ACM/SIGEVO Conference on F oundations of Genetic Algorithms (FOGA), 2019
2019
-
[58]
Matmamba: A matryoshka state space model.CoRR, abs/2410.06718, 2024
Abhinav Shukla, Sai Vemprala, Aditya Kusupati, and Ashish Kapoor. Matmamba: A matryoshka state space model.CoRR, abs/2410.06718, 2024
Pith/arXiv arXiv 2024
-
[59]
Oriane Siméoni, Huy V V o, Maximilian Seitzer, Federico Baldassarre, Maxime Oquab, Cijo Jose, Vasil Khalidov, Marc Szafraniec, Seungeun Yi, Michaël Ramamonjisoa, et al. Dinov3. arXiv preprint arXiv:2508.10104, 2025
Pith/arXiv arXiv 2025
-
[60]
Girshick, Rohit Girdhar, and Ishan Misra
Mannat Singh, Quentin Duval, Kalyan Vasudev Alwala, Haoqi Fan, Vaibhav Aggarwal, Aaron Adcock, Armand Joulin, Piotr Dollár, Christoph Feichtenhofer, Ross B. Girshick, Rohit Girdhar, and Ishan Misra. The effectiveness of MAE pre-pretraining for billion-scale pretraining. In ICCV, pp. 5461–5471. IEEE, 2023
2023
-
[61]
Andreas Steiner, Alexander Kolesnikov, Xiaohua Zhai, Ross Wightman, Jakob Uszkoreit, and Lucas Beyer. How to train your vit? data, augmentation, and regularization in vision transformers.arXiv preprint arXiv:2106.10270, 2021
Pith/arXiv arXiv 2021
-
[62]
Zico Kolter
Mingjie Sun, Zhuang Liu, Anna Bair, and J. Zico Kolter. A simple and effective pruning approach for large language models. InICLR. OpenReview.net, 2024
2024
-
[63]
Faster gaze prediction with dense networks and fisher pruning.CoRR, abs/1801.05787, 2018
Lucas Theis, Iryna Korshunova, Alykhan Tejani, and Ferenc Huszár. Faster gaze prediction with dense networks and fisher pruning.CoRR, abs/1801.05787, 2018
Pith/arXiv arXiv 2018
-
[64]
Training data-efficient image transformers & distillation through attention
Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Hervé Jégou. Training data-efficient image transformers & distillation through attention. In International conference on machine learning, pp. 10347–10357. PMLR, 2021
2021
-
[65]
Deit iii: Revenge of the vit
Hugo Touvron, Matthieu Cord, and Hervé Jégou. Deit iii: Revenge of the vit. InEuropean conference on computer vision, pp. 516–533. Springer, 2022
2022
-
[66]
Michael Tschannen, Alexey Gritsenko, Xiao Wang, Muhammad Ferjad Naeem, Ibrahim Alab- dulmohsin, Nikhil Parthasarathy, Talfan Evans, Lucas Beyer, Ye Xia, Basil Mustafa, et al. Siglip 2: Multilingual vision-language encoders with improved semantic understanding, localization, and dense features.arXiv preprint arXiv:2502.14786, 2025
Pith/arXiv arXiv 2025
-
[67]
Tycho F. A. van der Ouderaa, Markus Nagel, Mart van Baalen, and Tijmen Blankevoort. The LLM surgeon. InICLR. OpenReview.net, 2024
2024
-
[68]
EigenDamage: Struc- tured pruning in the Kronecker-factored eigenbasis
Chaoqi Wang, Roger Grosse, Sanja Fidler, and Guodong Zhang. EigenDamage: Struc- tured pruning in the Kronecker-factored eigenbasis. InProceedings of the 36th Interna- tional Conference on Machine Learning, volume 97, pp. 6566–6575. PMLR, 2019. URL http://proceedings.mlr.press/v97/wang19g.html. 14
2019
-
[69]
Eigendamage: Structured pruning in the kronecker-factored eigenbasis
Chaoqi Wang, Guodong Zhang, Shunhua Fidler, and Roger Grosse. Eigendamage: Structured pruning in the kronecker-factored eigenbasis. InInternational Conference on Machine Learning (ICML), 2019. URLhttps://proceedings.mlr.press/v97/wang19e.html
2019
-
[70]
Hanrui Wang, Zhanghao Wu, Zhijian Liu, Han Cai, Ligeng Zhu, Chuang Gan, and Song Han. Hat: Hardware-aware transformers for efficient natural language processing.arXiv preprint arXiv:2005.14187, 2020
Pith/arXiv arXiv 2005
-
[71]
Structured probabilistic pruning for convolutional neural network acceleration
Huan Wang, Qiming Zhang, Yuehai Wang, and Haoji Hu. Structured probabilistic pruning for convolutional neural network acceleration. InBMVC, pp. 149. BMV A Press, 2018
2018
-
[72]
Zijie J Wang, Evan Montoya, David Munechika, Haoyang Yang, Benjamin Hoover, and Duen Horng Chau. Diffusiondb: A large-scale prompt gallery dataset for text-to-image genera- tive models.arXiv preprint arXiv:2210.14896, 2022
Pith/arXiv arXiv 2022
-
[73]
Pytorch image models
Ross Wightman. Pytorch image models. https://github.com/rwightman/ pytorch-image-models, 2019
2019
-
[74]
Lpvit: Low-power semi-structured pruning for vision transformers
Kaixin Xu, Zhe Wang, Chunyun Chen, Xue Geng, Jie Lin, Xulei Yang, Min Wu, Xiaoli Li, and Weisi Lin. Lpvit: Low-power semi-structured pruning for vision transformers. InEuropean Conference on Computer Vision, pp. 269–287. Springer, 2024
2024
-
[75]
Global vision transformer pruning with hessian-aware saliency
Huanrui Yang, Hongxu Yin, Maying Shen, Pavlo Molchanov, Hai Li, and Jan Kautz. Global vision transformer pruning with hessian-aware saliency. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp. 18547–18557, June 2023
2023
-
[76]
Global vision transformer pruning with hessian-aware saliency
Huanrui Yang, Hongxu Yin, Maying Shen, Pavlo Molchanov, Hai Li, and Jan Kautz. Global vision transformer pruning with hessian-aware saliency. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp. 18547–18557, 2023
2023
-
[77]
Gradient-based intra-attention pruning on pre-trained language models
Ziqing Yang, Yiming Cui, Xin Yao, and Shijin Wang. Gradient-based intra-attention pruning on pre-trained language models. InACL (1), pp. 2775–2790. Association for Computational Linguistics, 2023
2023
-
[78]
Universally slimmable networks and improved training techniques
Jiahui Yu and Thomas S Huang. Universally slimmable networks and improved training techniques. InProceedings of the IEEE/CVF international conference on computer vision, pp. 1803–1811, 2019
2019
-
[79]
Slimmable neural networks.arXiv preprint arXiv:1812.08928, 2018
Jiahui Yu, Linjie Yang, Ning Xu, Jianchao Yang, and Thomas Huang. Slimmable neural networks.arXiv preprint arXiv:1812.08928, 2018
Pith/arXiv arXiv 2018
-
[80]
Fit: A metric for model sensitivity, 2022
Ben Zandonati, Adrian Alan Pol, Maurizio Pierini, Olya Sirkin, and Tal Kopetz. Fit: A metric for model sensitivity, 2022
2022
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.