Improve model card and add metadata

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +46 -4
README.md CHANGED
@@ -1,10 +1,52 @@
1
  ---
 
 
2
  tags:
3
  - model_hub_mixin
4
  - pytorch_model_hub_mixin
 
 
 
5
  ---
6
 
7
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
- - Code: https://github.com/Intellindust-AI-Lab/EdgeCrafter
9
- - Paper: https://arxiv.org/abs/2603.18739
10
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ pipeline_tag: object-detection
4
  tags:
5
  - model_hub_mixin
6
  - pytorch_model_hub_mixin
7
+ - vision
8
+ - vit
9
+ - edge-ai
10
  ---
11
 
12
+ # EdgeCrafter: ECDet-S
13
+
14
+ EdgeCrafter is a unified compact Vision Transformer (ViT) framework for edge dense prediction, introduced in the paper [EdgeCrafter: Compact ViTs for Edge Dense Prediction via Task-Specialized Distillation](https://arxiv.org/abs/2603.18739).
15
+
16
+ **ECDet-S** is an object detection model within this framework, featuring a distilled compact backbone and an edge-friendly encoder-decoder design. On the COCO dataset, it achieves **51.7 AP** with fewer than **10M parameters** using only COCO annotations.
17
+
18
+ - **Paper:** [arXiv:2603.18739](https://arxiv.org/abs/2603.18739)
19
+ - **GitHub Repository:** [Intellindust-AI-Lab/EdgeCrafter](https://github.com/Intellindust-AI-Lab/EdgeCrafter)
20
+ - **Project Page:** [EdgeCrafter Project Page](https://intellindust-ai-lab.github.io/projects/EdgeCrafter/)
21
+
22
+ ## Model Description
23
+ Deploying high-performance dense prediction models on resource-constrained edge devices is challenging. EdgeCrafter addresses this by using task-specialized distillation to enhance task-specific representation learning in small-scale ViTs. This approach allows compact ViTs to achieve accuracy-efficiency trade-offs competitive with traditional CNN-based architectures like YOLO.
24
+
25
+ ## Sample Usage (Inference)
26
+
27
+ To run inference on a sample image using the provided scripts in the official repository:
28
+
29
+ ```bash
30
+ # 1. Clone the repository and install dependencies
31
+ git clone https://github.com/Intellindust-AI-Lab/EdgeCrafter
32
+ cd EdgeCrafter
33
+ pip install -r requirements.txt
34
+
35
+ # 2. Run PyTorch inference
36
+ cd ecdetseg
37
+ # Replace `path/to/your/image.jpg` with an actual image path
38
+ python tools/inference/torch_inf.py -c configs/ecdet/ecdet_s.yml -r ecdet_s.pth -i path/to/your/image.jpg
39
+ ```
40
+
41
+ This model was pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration.
42
+
43
+ ## Citation
44
+
45
+ ```bibtex
46
+ @article{liu2026edgecrafter,
47
+ title={EdgeCrafter: Compact ViTs for Edge Dense Prediction via Task-Specialized Distillation},
48
+ author={Liu, Longfei and Hou, Yongjie and Li, Yang and Wang, Qirui and Sha, Youyang and Yu, Yongjun and Wang, Yinzhi and Ru, Peizhe and Yu, Xuanlong and Shen, Xi},
49
+ journal={arXiv},
50
+ year={2026}
51
+ }
52
+ ```