Improve model card: add pipeline tag, license, and project links

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +27 -4
README.md CHANGED
@@ -1,10 +1,33 @@
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: keypoint-detection
4
  tags:
5
  - model_hub_mixin
6
  - pytorch_model_hub_mixin
7
  ---
8
 
9
+ # EdgeCrafter: ECPose
10
+
11
+ EdgeCrafter is a unified framework for compact Vision Transformers (ViTs) designed for high-performance dense prediction on resource-constrained edge devices. This specific checkpoint is for **ECPose**, a model specialized for pose estimation (keypoint detection).
12
+
13
+ - **Project Page:** [EdgeCrafter](https://intellindust-ai-lab.github.io/projects/EdgeCrafter/)
14
+ - **Paper:** [EdgeCrafter: Compact ViTs for Edge Dense Prediction via Task-Specialized Distillation](https://arxiv.org/abs/2603.18739)
15
+ - **Code:** [GitHub Repository](https://github.com/Intellindust-AI-Lab/EdgeCrafter)
16
+
17
+ ## Model Description
18
+ The EdgeCrafter framework addresses the challenge of deploying Vision Transformers on edge devices through task-specialized distillation and edge-aware encoder-decoder designs. ECPose models achieve a strong accuracy-efficiency trade-off, often outperforming CNN-based architectures like YOLO while maintaining low latency on edge hardware.
19
+
20
+ This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration.
21
+
22
+ ## Citation
23
+
24
+ If you find this work useful, please consider citing:
25
+
26
+ ```bibtex
27
+ @article{liu2026edgecrafter,
28
+ title={EdgeCrafter: Compact ViTs for Edge Dense Prediction via Task-Specialized Distillation},
29
+ 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},
30
+ journal={arXiv},
31
+ year={2026}
32
+ }
33
+ ```