Add paper info, license, and pipeline tag
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,10 +1,46 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
tags:
|
| 3 |
- model_hub_mixin
|
| 4 |
- pytorch_model_hub_mixin
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pipeline_tag: keypoint-detection
|
| 4 |
+
library_name: pytorch
|
| 5 |
tags:
|
| 6 |
- model_hub_mixin
|
| 7 |
- pytorch_model_hub_mixin
|
| 8 |
+
- vision
|
| 9 |
+
- pose-estimation
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# EdgeCrafter (ECPose)
|
| 13 |
+
|
| 14 |
+
EdgeCrafter is a unified compact Vision Transformer (ViT) framework designed for edge dense prediction tasks like object detection, instance segmentation, and pose estimation. This specific checkpoint is for **ECPose**, a variant specialized for high-performance human pose estimation on resource-constrained devices.
|
| 15 |
+
|
| 16 |
+
- **Paper:** [EdgeCrafter: Compact ViTs for Edge Dense Prediction via Task-Specialized Distillation](https://arxiv.org/abs/2603.18739)
|
| 17 |
+
- **Code:** [GitHub Repository](https://github.com/Intellindust-AI-Lab/EdgeCrafter)
|
| 18 |
+
- **Project Page:** [EdgeCrafter Project Page](https://intellindust-ai-lab.github.io/projects/EdgeCrafter/)
|
| 19 |
+
|
| 20 |
+
## Model Description
|
| 21 |
+
Deploying high-performance dense prediction models on edge devices is challenging due to strict limits on computation and memory. EdgeCrafter addresses this gap using task-specific representation learning and a distilled compact backbone.
|
| 22 |
+
|
| 23 |
+
For pose estimation, the **ECPose-X** variant reaches **74.8 AP** on the COCO dataset, significantly outperforming YOLO-based architectures (e.g., YOLOv8-Pose-X at 71.6 AP) while maintaining an efficiency profile suitable for edge deployment.
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration.
|
| 27 |
+
|
| 28 |
+
For inference examples and detailed setup, please refer to the official [GitHub repository](https://github.com/Intellindust-AI-Lab/EdgeCrafter). A CLI inference example is provided below:
|
| 29 |
+
|
| 30 |
+
```bash
|
| 31 |
+
# Refer to GitHub for installation and config requirements
|
| 32 |
+
cd ecpose
|
| 33 |
+
python tools/inference/torch_inf.py -c configs/ecpose/ecpose_s_coco.yml -r ecpose_s.pth -i path/to/your/image.jpg
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
## Citation
|
| 37 |
+
If you find EdgeCrafter useful in your research, please consider citing:
|
| 38 |
+
|
| 39 |
+
```bibtex
|
| 40 |
+
@article{liu2026edgecrafter,
|
| 41 |
+
title={EdgeCrafter: Compact ViTs for Edge Dense Prediction via Task-Specialized Distillation},
|
| 42 |
+
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},
|
| 43 |
+
journal={arXiv},
|
| 44 |
+
year={2026}
|
| 45 |
+
}
|
| 46 |
+
```
|