REVIEW 2 major objections 5 minor 47 references
SIMPLER: Efficient Foundation Model Adaptation via Similarity-Guided Layer Pruning for Earth Observation
T0 review · 2 major / 5 minor · reviewed 2026-07-13 · grok-4.5
Pith's one-line read Pre-trained vision transformers have redundant deep layers that representation similarity on unlabeled task data can remove before any fine-tuning.
desk verdict Solid pre-adaptation depth selection for EO ViTs: useful engineering with honest limits, not a new theory of pruning. 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
SIMPLER’s cutoff score: partition the CKA similarity matrix at candidate depth c into a top-left (kept) block and bottom-right (pruned) block, compute each block’s mean absolute consecutive-row difference, and choose c that maximizes diversity of the kept block minus stability of the pruned block—no thresholds or tuning.
What would settle it
On a new EO task, fully fine-tune both the CKA-selected shallow model and the full model (and a same-size random or magnitude-chosen depth); if the CKA model loses far more accuracy than the alternatives while deeper, highly similar layers still improve linear probes or fine-tuning, the claim that pre-trained similarity predicts post-adaptation redundancy fails.
Extended reading notes
Core claim
Layer-wise representation similarity computed on a small set of unlabeled downstream samples from a frozen pre-trained vision transformer predicts which deep layers will be redundant after fine-tuning. An automated score on the similarity matrix therefore selects an effective model depth before any adaptation begins, delivering simultaneous training and inference savings while retaining most of the full model’s task performance.
Load-bearing premise
High similarity between consecutive deep layers on a few hundred unlabeled task images is assumed to mean those layers stay redundant after fine-tuning, and a simple block-difference score is assumed to pick a near-best depth without task-specific tuning.
Editorial extensions
If this is right
- A foundation model can be thinned for a target EO task before fine-tuning starts, cutting GPU hours and deployment latency together.
- Depth selection plus LoRA compounds: fewer layers and fewer trainable parameters in one pipeline.
- One large pre-training plus SIMPLER-style reduction can outperform training several smaller foundation models independently.
- When progressive representation stabilization is present, the same pre-fine-tuning selection applies to multispectral EO and RGB ViTs.
- The output is a dense shorter model that runs on ordinary frameworks, without sparse-inference libraries.
Reading between the lines
- If the same pre-fine-tuning similarity signal holds for language or other multimodal transformers, architecture selection could become a default first step before any PEFT method.
- Models with explicit collapse-prevention (oscillating CKA, no deep stabilization) mark a clear boundary: pre-training recipe, not just architecture, decides whether deep redundancy is exploitable this way.
- On-board satellite and edge pipelines could treat a SIMPLER-style cutoff as a per-mission capacity dial, trading a few accuracy points for large memory and power savings.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SIMPLER, a pre-fine-tuning depth-selection method for vision-transformer foundation models in Earth Observation. It computes a layer-wise CKA similarity matrix on a small unlabeled task sample set from the frozen pre-trained model, partitions the matrix at candidate cutoffs, and selects the cutoff maximizing score(c)=Δ_TL−Δ_BR (mean absolute consecutive-row difference of the retained vs. pruned CKA blocks). The reduced architecture is then fine-tuned (optionally with LoRA). On Prithvi-EO-2 the method reports up to ~79% parameter reduction while retaining ~94% of baseline mIoU on MADOS, with simultaneous training and inference speedups; similar compression–performance trade-offs are shown on BigEarthNetv2 and Sen4Map, and the approach is validated on TerraMind (L/S/T) and ImageNet-pretrained ViT-MAE/CIFAR-100. Ablations cover similarity metrics, from-scratch capacity, random-noise controls, sample-size stability, and linear probing; Appendix C notes failure on DINOv3-style models without progressive stabilization.
Significance. If the central claim holds, SIMPLER fills a genuine gap: PEFT reduces training cost but not inference depth, while structured pruning is post-hoc and requires full fine-tuning first. A pre-adaptation, gradient-free, hyperparameter-light depth selector that simultaneously cuts training and deployment cost is practically valuable for EO edge/satellite settings. Strengths include multi-task and multi-model evaluation, 5-run statistics, from-scratch and noise ablations, linear-probe corroboration, public code, and an explicit applicability check (CKA heatmap / DINOv3 counter-example). The contribution is primarily empirical and systems-oriented rather than a new theoretical guarantee, but the experimental package is substantial for the EO foundation-model efficiency literature.
major comments (2)
- §3.3 and Alg. S1: the automated score score(c)=Δ_TL−Δ_BR is load-bearing for the “no hyperparameter tuning / optimal depth” claim, yet it is not compared to other pre-adaptation selectors that use the same CKA matrix (e.g., first consecutive-CKA threshold, argmax of Δ_TL alone, cumulative-similarity knee, or the linear-probe peak depth, which Appendix E places at Block 6 vs SIMPLER’s Block 5). Tab. 5 only shows CKA vs Jaccard/SVCCA under this fixed score. Without that comparison, “near-optimal automated selection” is established only relative to other metrics and to post-hoc magnitude pruning, not relative to the space of pre-adaptation depth criteria. A short ablation on MADOS (and one other task) would make the claim proportionate.
- §3.2–3.3 and Appendix C: the premise that high consecutive-layer CKA on unlabeled task samples implies post-adaptation redundancy is architecture-dependent (DINOv3 fails). The main claims and abstract present the method as generally applicable to “pre-trained vision transformers” / foundation models; the limitation is only in the discussion and appendix. The paper should state the applicability condition (clear block-diagonal deep-layer structure on ~500 task samples) up front and, if feasible, report one additional EO backbone that does or does not exhibit the pattern, so readers can judge scope without reading the supplement.
minor comments (5)
- Fig. 1a radar axes and normalization of “efficiency” (1/time scaled to [0,1]) should be stated explicitly in the caption so the plot is self-contained.
- Tables 2–4: clarify whether reported training times for post-hoc pruning include the full fine-tuning + prune + retrain pipeline (text says yes; table headers alone do not).
- §4.1 / Appendix F: sample size |S|=500 and Jaccard k=20 are free parameters; a one-sentence sensitivity note in the main text (beyond Fig. 3) would help reproducibility claims.
- Notation: score(c; S, F_pre) in Eq. (1) vs score(c)=Δ_TL−Δ_BR in §3.3; keep a single definition.
- Qualitative MADOS figures (S6–S9) are useful; a brief pointer in the main text to the oil-spill failure mode of magnitude pruning would strengthen the comparison to post-hoc methods.
Circularity Check
No circularity: pre-adaptation CKA scoring does not embed held-out task metrics; performance claims are independent empirical outcomes.
full rationale
SIMPLER’s load-bearing chain is: (i) extract pre-trained layer representations on unlabeled task samples S; (ii) form similarity matrix Z (CKA by default); (iii) choose cutoff c* = arg max_c (Δ_TL − Δ_BR) from Z alone (Eq. 1, §3.3, Alg. S1); (iv) fine-tune the truncated encoder; (v) report mIoU/mAP/accuracy on held-out labels. Step (v) is not a function of the score in (iii), so the reported retention (e.g., 94% mIoU on MADOS) is not forced by construction. The score uses only consecutive-row differences of CKA blocks and never fits to task labels, magnitude, or gradients. Ablations (from-scratch capacity, random-noise CKA collapse, linear probes peaking near but not identical to the CKA cutoff, DINOv3 failure mode) are independent checks rather than tautologies. Citations for CKA/stabilization (Kornblith, Raghu, etc.) and for the evaluated FMs (Prithvi, TerraMind, ViT-MAE) are external or model sources, not self-authored uniqueness theorems that forbid alternatives. Design choice of the particular score form is a methodological limitation, not circular reduction of prediction to input. The paper is self-contained against external benchmarks; no step reduces Eq. X to Eq. Y by definition or fit-as-prediction.
Assumptions & free parameters
free parameters (4)
- CKA sample size |S|
- Jaccard neighbor count k
- Cutoff search bounds {2,...,L-2}
- Scoring function form score(c)=Δ_TL−Δ_BR
assumptions (5)
- domain assumption Deep pre-trained ViT layers often produce highly similar representations on downstream inputs due to early global attention and residual propagation.
- ad hoc to paper High inter-layer representation similarity on unlabeled task data indicates redundancy for that task under subsequent gradient fine-tuning.
- domain assumption CKA (and related kernel/CCA/neighborhood similarities) are valid measures of representational redundancy for layer selection.
- domain assumption Fine-tuning only layers 1..c* with a task head is a valid adaptation of a pre-trained encoder for EO segmentation/classification/time-series tasks.
- standard math Linear algebra / kernel definitions of CKA, SVCCA, and Jaccard as stated in Appendix A.2 are correctly applied.
invented entities (2)
-
SIMPLER pre-fine-tuning depth-selection pipeline
independent evidence
-
Automated cutoff score Δ_TL − Δ_BR on CKA blocks
independent evidence
Cite this review
Pith. "Pith review of SIMPLER: Efficient Foundation Model Adaptation via Similarity-Guided Layer Pruning for Earth Observation." pith.science (2026). https://pith.science/paper/WFXECTBN
@misc{pith2026260319873,
author = {Pith},
title = {Pith review of: SIMPLER: Efficient Foundation Model Adaptation via Similarity-Guided Layer Pruning for Earth Observation},
year = {2026},
howpublished = {\url{https://pith.science/paper/WFXECTBN}},
note = {Machine review of arXiv:2603.19873}
}
read the original abstract
Fine-tuning foundation models for Earth Observation is computationally expensive, with high training time and memory demands for both training and deployment. Parameter-efficient methods reduce training cost but retain full inference complexity, while post-hoc compression optimizes inference only after costly full fine-tuning. We introduce SIMPLER, a pre-fine-tuning architecture selection method that reduces inference and deployment costs by identifying an effective model depth before adaptation. SIMPLER exploits stabilization of representations in deeper layers of pre-trained vision transformers: it computes layer-wise representation similarity on unlabeled task data and applies an automated scoring function to select redundant layers, with no gradients, magnitude heuristics, or hyperparameter tuning required. On Prithvi-EO-2, SIMPLER prunes up to 79% of parameters while retaining 94% of baseline performance, yielding a 2.1x training speedup and 2.6x inference speedup. The method generalizes to TerraMind (a multimodal EO foundation model) and ImageNet-pretrained ViT-MAE, demonstrating applicability across tasks, architectures, and spectral modalities. Code is available at https://gitlab.citius.gal/hpc4rs/simpler.
Figures
Reference graph
Works this paper leans on
-
[1]
arXiv preprint arXiv:1610.01644 (2016).https://doi.org/10.48550/ arXiv.1610.01644
Alain, G., Bengio, Y.: Understanding intermediate layers using linear classifier probes. arXiv preprint arXiv:1610.01644 (2016).https://doi.org/10.48550/ arXiv.1610.01644
arXiv 2016
-
[2]
Neural Networks153, 461–473 (2022)
Bakhtiarnia, A., Zhang, Q., Iosifidis, A.: Single-layer vision transformers for more accurate early exits with less overhead. Neural Networks153, 461–473 (2022). https://doi.org/10.1016/j.neunet.2022.06.038
-
[3]
arXiv preprint arXiv:2108.07258 (2021).https://doi.org/10.48550/arXiv.2108.07258
Bommasani, R., Hudson, D.A., Adeli, E., Altman, R., Arora, S., von Arx, S., et al.: On the opportunities and risks of foundation models. arXiv preprint arXiv:2108.07258 (2021).https://doi.org/10.48550/arXiv.2108.07258
-
[4]
In: IEEE/CVF International Conference on Computer Vision (ICCV)
Caron, M., Touvron, H., Misra, I., Jégou, H., Mairal, J., Bojanowski, P., Joulin, A.: Emerging properties in self-supervised vision transformers. In: IEEE/CVF International Conference on Computer Vision (ICCV). pp. 9650–9660 (2021). https://doi.org/10.1109/ICCV48922.2021.00951
-
[5]
Chen, S., Ge, C., Tong, Z., Wang, J., Song, Y., Wang, J., Luo, P.: AdaptFormer: Adapting vision transformers for scalable visual recognition. In: Advances in Neu- ral Information Processing Systems (NeurIPS) (2022),https://arxiv.org/abs/ 2205.13535
arXiv 2022
-
[6]
Clasen, K.N., Hackel, L., Burgert, T., Sumbul, G., Demir, B., Markl, V.: reBEN: Refined BigEarthNet dataset for remote sensing image analysis. In: IEEE Inter- national Geoscience and Remote Sensing Symposium (IGARSS) (2025).https: //doi.org/10.5281/zenodo.10891137
-
[7]
In: Proceedings of the 36th International Conference on Neural Information Processing Systems
Cong, Y., Khanna, S., Meng, C., Liu, P., Rozi, E., He, Y., Burke, M., Lobell, D.B.,Ermon,S.:Satmae:pre-trainingtransformersfortemporalandmulti-spectral satellite imagery. In: Proceedings of the 36th International Conference on Neural Information Processing Systems. NIPS ’22 (2022)
2022
-
[8]
In: International Conference on Learning Representations (ICLR) (2021),https: //openreview.net/forum?id=YicbFdNTTy
Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., Dehghani, M., Minderer, M., Heigold, G., Gelly, S., Uszkoreit, J., Houlsby, N.: An image is worth 16x16 words: Transformers for image recognition at scale. In: International Conference on Learning Representations (ICLR) (2021),https: //openreview.net/forum?id=YicbFdNTTy
2021
Show all 47 references
-
[9]
In: International Conference on Learning Representations (2020), https://openreview.net/forum?id=SylO2yStDr
Fan, A., Grave, E., Joulin, A.: Reducing transformer depth on demand with struc- tured dropout. In: International Conference on Learning Representations (2020), https://openreview.net/forum?id=SylO2yStDr
2020
-
[10]
In: IEEE/CVF Conference on Computer Vision and Pattern Recog- nition (CVPR)
Fang, G., Ma, X., Song, M., Mi, M.B., Wang, X.: DepGraph: Towards any struc- tural pruning. In: IEEE/CVF Conference on Computer Vision and Pattern Recog- nition (CVPR). pp. 16091–16101 (2023).https://doi.org/10.1109/CVPR52729. 2023.01544 16 V. Barreiro et al
2023 doi
-
[11]
In: International Conference on Learning Representations (ICLR) (2019),https://openreview.net/forum?id=rJl-b3RcF7
Frankle, J., Carbin, M.: The lottery ticket hypothesis: Finding sparse, trainable neural networks. In: International Conference on Learning Representations (ICLR) (2019),https://openreview.net/forum?id=rJl-b3RcF7
2019
-
[12]
In: IEEE/CVF Conference on Computer Vision and Pat- tern Recognition (CVPR)
He, K., Chen, X., Xie, S., Li, Y., Dollár, P., Girshick, R.: Masked autoencoders are scalable vision learners. In: IEEE/CVF Conference on Computer Vision and Pat- tern Recognition (CVPR). pp. 15979–15986 (2022).https://doi.org/10.1109/ CVPR52688.2022.01553
2022
- [13]
-
[14]
In: Chaudhuri, K., Salakhutdinov, R
Houlsby, N., Giurgiu, A., Jastrzebski, S., Morrone, B., De Laroussilhe, Q., Ges- mundo, A., Attariyan, M., Gelly, S.: Parameter-efficient transfer learning for NLP. In: Chaudhuri, K., Salakhutdinov, R. (eds.) Proceedings of the 36th International Conference on Machine Learning...
2019
-
[15]
In: International Conference on Learning Representations (ICLR) (2022),https://openreview.net/forum?id= nZeVKeeFYf9
Hu, E.J., Shen, Y., Wallis, P., Allen-Zhu, Z., Li, Y., Wang, S., Wang, L., Chen, W.: LoRA: Low-rank adaptation of large language models. In: International Conference on Learning Representations (ICLR) (2022),https://openreview.net/forum?id= nZeVKeeFYf9
2022
-
[16]
In: International Conference on Machine Learning (ICML) (2024), https://proceedings.mlr.press/v235/huh24a.html
Huh, M., Cheung, B., Wang, T., Isola, P.: Position: The platonic representation hypothesis. In: International Conference on Machine Learning (ICML) (2024), https://proceedings.mlr.press/v235/huh24a.html
2024
-
[17]
In: IEEE/CVF International Conference on Computer Vision (ICCV) (2025)
Jakubik, J., Yang, F., Blumenstiel, B., Scheurer, E., Sedona, R., Maurogiovanni, S., Bosmans, J., Dionelis, N., Marsocci, V., Kopp, N., et al.: TerraMind: Large- scale generative multimodality for earth observation. In: IEEE/CVF International Conference on Computer Vision (ICC...
2025
-
[18]
In: European Conference on Computer Vision (ECCV)
Jia, M., Tang, L., Chen, B.C., Cardie, C., Belongie, S., Hariharan, B., Lim, S.N.: Visual prompt tuning. In: European Conference on Computer Vision (ECCV). pp. 709–727. Springer (2022).https://doi.org/10.1007/978-3-031-19827-4_41
2022 doi
-
[19]
Kikaki, K., Kakogeorgiou, I., Hoteit, I., Karantzalos, K.: Detecting marine pol- lutants and sea surface features with deep learning in Sentinel-2 imagery. IS- PRS Journal of Photogrammetry and Remote Sensing210, 39–57 (2024).https: //doi.org/10.1016/j.isprsjprs.2024.02.017, m...
2024 doi
-
[20]
ACM Comput
Klabunde, M., Schumacher, T., Strohmaier, M., Lemmerich, F.: Similarity of neural network models: A survey of functional and representational measures. ACM Comput. Surv.57(9) (May 2025).https://doi.org/10.1145/3728458, https://doi.org/10.1145/3728458
2025 doi
-
[21]
In: Chaudhuri, K., Salakhutdinov, R
Kornblith, S., Norouzi, M., Lee, H., Hinton, G.: Similarity of neural network representations revisited. In: Chaudhuri, K., Salakhutdinov, R. (eds.) Proceed- ings of the 36th International Conference on Machine Learning. Proceedings of Machine Learning Research, vol. 97, pp. 3...
2019
-
[22]
In: Advances in Neural Information Pro- cessing Systems (NeurIPS) (2023),https://arxiv.org/abs/2306.03831
Lacoste, A., Lehmann, N., Rodriguez, P., Sherwin, E.D., Kerner, H., Lütjens, B., Irvin, J.A., Dao, D., Alemohammad, H., Drouin, A., et al.: GEO-Bench: Toward foundation models for earth monitoring. In: Advances in Neural Information Pro- cessing Systems (NeurIPS) (2023),https:...
2023 arXiv
-
[23]
In: Proceedings of the 2021 Conference on Empirical Methods SIMPLER 17 in Natural Language Processing
Lester, B., Al-Rfou, R., Constant, N.: The power of scale for parameter-efficient prompt tuning. In: Proceedings of the 2021 Conference on Empirical Methods SIMPLER 17 in Natural Language Processing. pp. 3045–3059. Association for Computational Linguistics, Online and Punta Ca...
2021 doi
-
[24]
In: International Conference on Learning Representations (2017), https://openreview.net/forum?id=rJqFGTslg
Li, H., Kadav, A., Durdanovic, I., Samet, H., Graf, H.P.: Pruning filters for effi- cient ConvNets. In: International Conference on Learning Representations (2017), https://openreview.net/forum?id=rJqFGTslg
2017
-
[25]
arXiv preprint arXiv:2101.00190 (2021),https://arxiv.org/abs/2101.00190
Li, X.L., Liang, P.: Prefix-tuning: Optimizing continuous prompts for generation. arXiv preprint arXiv:2101.00190 (2021),https://arxiv.org/abs/2101.00190
2021 arXiv
-
[26]
In: Advances in Neural Information Pro- cessing Systems (2022),https://proceedings.neurips.cc/paper_files/paper/ 2022/hash/deb921bff461a7b0a5c344a4871e7101-Abstract-Conference.html
Li, Y., Xu, S., Zhang, B., Cao, X., Gao, P., Guo, G.: Q-ViT: Accurate and fully quantized low-bit vision transformer. In: Advances in Neural Information Pro- cessing Systems (2022),https://proceedings.neurips.cc/paper_files/paper/ 2022/hash/deb921bff461a7b0a5c344a4871e7101-Abs...
2022
-
[27]
In: Raedt, L.D
Lin, Y., Zhang, T., Sun, P., Li, Z., Zhou, S.: FQ-ViT: Post-training quantization for fully quantized vision transformer. In: Raedt, L.D. (ed.) Proceedings of the Thirty-First International Joint Conference on Artificial Intelligence, IJCAI-22. pp. 1173–1179. International Joi...
2022 doi
-
[28]
Michel, P., Levy, O., Neubig, G.: Are sixteen heads really better than one? In: Advances in Neural Information Processing Systems (NeurIPS). pp. 14014–14024 (2019),https : / / proceedings . neurips . cc / paper / 2019 / hash / 2c601ad9d2ff9bc8b282670cdd54f69f-Abstract.html
2019
-
[29]
In: International Conference on Learning Representations (ICLR) (2021),https: //openreview.net/forum?id=KJNcAkY8tY4
Nguyen, T., Raghu, M., Kornblith, S.: Do wide and deep networks learn the same things? Uncovering how neural network representations vary with width and depth. In: International Conference on Learning Representations (ICLR) (2021),https: //openreview.net/forum?id=KJNcAkY8tY4
2021
-
[30]
In: Neural Information Processing Systems (2017).https://doi.org/10.48550/ arXiv.1706.05806
Raghu, M., Gilmer, J., Yosinski, J., Sohl-Dickstein, J.N.: SVCCA: Singular vec- tor canonical correlation analysis for deep learning dynamics and interpretability. In: Neural Information Processing Systems (2017).https://doi.org/10.48550/ arXiv.1706.05806
2017 arXiv
-
[31]
(eds.) Advances in Neural Information Processing Systems (2021),https://openreview.net/forum?id=Gl8FHfMVTZu
Raghu, M., Unterthiner, T., Kornblith, S., Zhang, C., Dosovitskiy, A.: Do vision transformers see like convolutional neural networks? In: Beygelzimer, A., Dauphin, Y., Liang, P., Vaughan, J.W. (eds.) Advances in Neural Information Processing Systems (2021),https://openreview.n...
2021
-
[32]
Research, F.: fvcore: A light-weight core library for pytorch.https://github.com/ facebookresearch/fvcore(2019), accessed: 2024
2019
-
[33]
IEEE Journal of Selected Topics in Ap- plied Earth Observations and Remote Sensing17, 13893–13907 (2024).https: //doi.org/10.1109/JSTARS.2024.3435081
Sharma, S., Sedona, R., Riedel, M., Cavallaro, G., Paris, C.: Sen4Map: Advanc- ing mapping with Sentinel-2 by providing detailed semantic descriptions and cus- tomizable land-use and land-cover data. IEEE Journal of Selected Topics in Ap- plied Earth Observations and Remote Se...
2024 doi
-
[34]
Siméoni, O., Vo, H.V., Seitzer, M., Baldassarre, F., Oquab, M., Jose, C., Khalidov, V., Szafraniec, M., Yi, S., Ramamonjisoa, M., Massa, F., Haziza, D., Wehrstedt, L., Wang, J., Darcet, T., Moutakanni, T., Sentana, L., Roberts, C., Vedaldi, A., Tolan, J., Brandt, J., Couprie, ...
2025 arXiv
-
[35]
arXiv preprint arXiv:1906.02243 (2019).https://doi.org/10
Strubell, E., Ganesh, A., McCallum, A.: Energy and policy considerations for deep learning in NLP. arXiv preprint arXiv:1906.02243 (2019).https://doi.org/10. 48550/arXiv.1906.02243, seminal work on carbon footprint of training large mod- els 18 V. Barreiro et al
1906 arXiv
-
[36]
Szwarcman, D., Roy, S., Fraccaro, P., Þorsteinn Elí Gíslason, Blumenstiel, B., Ghosal, R., de Oliveira, P.H., de Sousa Almeida, J.L., Sedona, R., Kang, Y., Chakraborty, S., Wang, S., Gomes, C., Kumar, A., Truong, M., Godwin, D., Lee, H., Hsu, C.Y., Asanjan, A.A., Mujeci, B., S...
2025
-
[37]
ACM Computing Surveys55(6), 1–28 (2022).https://doi.org/10.1145/3530811
Tay, Y., Dehghani, M., Bahri, D., Metzler, D.: Efficient transformers: A survey. ACM Computing Surveys55(6), 1–28 (2022).https://doi.org/10.1145/3530811
2022 doi
-
[38]
In: International Conference on Pattern Recognition (ICPR)
Teerapittayanon, S., McDanel, B., Kung, H.T.: BranchyNet: Fast inference via early exiting from deep neural networks. In: International Conference on Pattern Recognition (ICPR). pp. 2464–2469 (2016).https://doi.org/10.1109/ICPR. 2016.7900006
2016 doi
-
[39]
In: Meila, M., Zhang, T
Touvron, H., Cord, M., Douze, M., Massa, F., Sablayrolles, A., Jegou, H.: Training data-efficient image transformers and distillation through attention. In: Meila, M., Zhang, T. (eds.) Proceedings of the 38th International Conference on Machine Learning. Proceedings of Machine...
2021
-
[40]
In: European Conference on Computer Vision (ECCV)
Wu, K., Zhang, J., Peng, H., Liu, M., Xiao, B., Fu, J., Yuan, L.: TinyViT: Fast pretraining distillation for small vision transformers. In: European Conference on Computer Vision (ECCV). pp. 68–85. Springer (2022).https://doi.org/10. 1007/978-3-031-19803-8_5
2022
-
[41]
org/10.1109/MGRS.2025.3576766
Xiao, A., Xuan, W., Wang, J., Huang, J., Tao, D., Lu, S., Yokoya, N.: Foundation models for remote sensing and earth observation: A survey (2025).https://doi. org/10.1109/MGRS.2025.3576766
2025 doi
-
[42]
In: Proceedings of the 31st ACM International Conference on Multimedia
Xu, G., Hao, J., Shen, L., Hu, H., Luo, Y., Lin, H., Shen, J.: LGViT: Dynamic early exiting for accelerating vision transformer. In: Proceedings of the 31st ACM International Conference on Multimedia. p. 9103–9114. MM ’23, Association for Computing Machinery, New York, NY, USA...
2023
-
[43]
In: IEEE/CVF Conference on Com- puter Vision and Pattern Recognition (CVPR)
Yang, H., Yin, H., Shen, M., Molchanov, P., Li, H., Kautz, J.: Global vision trans- former pruning with hessian-aware saliency. In: IEEE/CVF Conference on Com- puter Vision and Pattern Recognition (CVPR). pp. 18547–18557 (June 2023)
2023
-
[44]
In: 2024 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW)
Yang,Z.,Li,Z.,Zeng,A.,Li,Z.,Yuan,C.,Li,Y.:ViTKD:Feature-basedknowledge distillation for vision transformers. In: 2024 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW). pp. 1379–1388 (2024). https://doi.org/10.1109/CVPRW63382.2024.00145
2024 doi
-
[45]
In: Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogni- tion (CVPR)
Yu, L., Xiang, W.: X-pruner: explainable pruning for vision transformers. In: Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogni- tion (CVPR). pp. 24355–24363 (June 2023)
2023
-
[46]
SIMPLER: Efficient Foundation Model Adaptation via Similarity-Guided Layer Pruning for Earth Observation
Yuan, Z., Xue, C., Chen, Y., Wu, Q., Sun, G.: PTQ4ViT: Post-training quan- tization for vision transformers with twin uniform quantization. In: European Conference on Computer Vision (ECCV). pp. 191–207. Springer (2022).https: //doi.org/10.1007/978-3-031-19775-8_12 Supplementa...
2022 doi
-
[47]
Strong augmentation (Mixup 0.8, CutMix 1.0, DropPath 0.1) with 300 epochs for from-scratch training
to compensate for limited depth; full models use conservative rates (2e-4). Strong augmentation (Mixup 0.8, CutMix 1.0, DropPath 0.1) with 300 epochs for from-scratch training. Post-hoc Pruning Baselines:Magnitude-based (L2 norm) pruning at 20%/40% compression on trained model...
Reviewed July 13, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.