Views
No views yet
| Model | Size | AP50:95 | #Params | GFLOPs | Latency (ms) |
|---|---|---|---|---|---|
| ECDet-S | 640 | 51.7 | 10 | 26 | 5.41 |
| ECDet-M | 640 | 54.3 | 18 | 53 | 7.98 |
| ECDet-L | 640 | 57.0 | 31 | 101 | 10.49 |
| ECDet-X | 640 | 57.9 | 49 | 151 | 12.70 |
1# Create conda environment
2conda create -n ec python=3.11 -y
3conda activate ec
4
5# Install dependencies
6pip install -r requirements.txt1# 1. Download the pre-trained model (if not already present)
2# 2. Run PyTorch inference
3# Make sure to replace `path/to/your/image.jpg` with an actual image path
4python tools/inference/torch_inf.py -c configs/ecdet/ecdet_s.yml -r ecdet_s.pth -i path/to/your/image.jpg1@article{liu2026edgecrafter,
2 title={EdgeCrafter: Compact ViTs for Edge Dense Prediction via Task-Specialized Distillation},
3 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},
4 journal={arXiv},
5 year={2026}
6}