Add pipeline tag and links to paper/repository/project page

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +26 -11
README.md CHANGED
@@ -1,33 +1,48 @@
1
  ---
2
  license: apache-2.0
 
3
  ---
4
 
5
- ****Model Card for LEAP distilled ViT-S and ViT-Tiny****
6
 
7
- This is the ViT-Tiny and ViT-S checkpoints(No Register) distilled from ViT-G DINOv2 on ImageNet-100 and ImageNet-1K, respectively.
8
- The knowledge distillation process follows the procedure proposed in "LEAP: Layer-skipping Efficiency via Adaptive
9
- Progression for Vision Transformer Distillation"
10
 
11
- ***Repository***: https://github.com/KevinZ0217/LEAP
12
 
13
- ***Paper***: LEAP: Layer-skipping Efficiency via Adaptive Progression for Vision Transformer Distillation
14
 
15
- ***Use cases***: the ViT model will output feature maps that can be used to a variety of downstream tasks(classification, image retrieval, semantic segmentation)
16
 
17
- ***Performance***:
 
 
 
 
18
 
19
- ImageNet-100:
 
 
20
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/MSp0sMCOEnXsdKry5wRvF.png)
21
 
22
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/wSlK06UTvnlRY5o4vvpN_.png)
23
 
24
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/36r7mqVc-Qwyd-B_gRJ9p.png)
25
 
26
- ImageNet-1K:
27
 
28
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/UwmTdXFTrmWeWl_33P2dP.png)
29
 
30
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/0grYPjq1UDpGv8zh6GCi3.png)
31
 
32
-
33
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/u9MVacA5A284XEgRGuKe5.png)
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ pipeline_tag: image-classification
4
  ---
5
 
6
+ # LEAP: Layer-skipping Efficiency via Adaptive Progression for Vision Transformer Distillation
7
 
8
+ [Paper](https://huggingface.co/papers/2606.19483) | [GitHub](https://github.com/KevinZ0217/LEAP) | [Project Page](https://kevinz0217.github.io/LEAP_page/)
 
 
9
 
10
+ This repository contains the ViT-Tiny and ViT-S checkpoints (No Register) distilled from ViT-G DINOv2 on ImageNet-100 and ImageNet-1K. The knowledge distillation process follows the procedure proposed in the paper **"LEAP: Layer-skipping Efficiency via Adaptive Progression for Vision Transformer Distillation"**.
11
 
12
+ ### Introduction
13
 
14
+ Vision Foundation Models (VFMs) with ViT backbones, such as DINOv2, are computationally demanding. LEAP (Layer-skipping Efficiency via Adaptive Progression) is a training curriculum for ViT feature-based knowledge distillation. Instead of supervising the student against a fixed teacher block, LEAP advances the supervisory target through the teacher's feature maps (shallow-to-deep) based on online CKA alignment. This allows the student to build a foundational representation before tackling higher-level abstractions.
15
 
16
+ ### Use cases
17
+ The ViT models output feature maps that can be used for a variety of downstream tasks, including:
18
+ - Image Classification
19
+ - Instance Retrieval
20
+ - Semantic Segmentation
21
 
22
+ ### Performance
23
+
24
+ #### ImageNet-100:
25
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/MSp0sMCOEnXsdKry5wRvF.png)
26
 
27
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/wSlK06UTvnlRY5o4vvpN_.png)
28
 
29
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/36r7mqVc-Qwyd-B_gRJ9p.png)
30
 
31
+ #### ImageNet-1K:
32
 
33
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/UwmTdXFTrmWeWl_33P2dP.png)
34
 
35
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/0grYPjq1UDpGv8zh6GCi3.png)
36
 
 
37
  ![image](https://cdn-uploads.huggingface.co/production/uploads/63d84d163130cadcaf8a976a/u9MVacA5A284XEgRGuKe5.png)
38
+
39
+ ### Citation
40
+
41
+ ```bibtex
42
+ @article{leap2024,
43
+ title={LEAP: Layer-skipping Efficiency via Adaptive Progression for Vision Transformer Distillation},
44
+ author={Zheng, Kevin and others},
45
+ journal={arXiv preprint arXiv:2606.19483},
46
+ year={2024}
47
+ }
48
+ ```