Views
No views yet
Model/
├── baseline/ # Baseline model weights
│ ├── VisDrone2019/
│ ├── UAVDT/
│ ├── TinyPerson/
│ └── DOTAv1/
└── DER_improved/ # DER-enhanced model weights
├── VisDrone2019/
├── UAVDT/
├── TinyPerson/
└── DOTAv1/.pth (PyTorch).pdparams (PaddlePaddle)ModelName-Scale-Dataset.extPP-PicoDet-l-VisDrone2019.pdparamsRTMDet-R2-tiny-UAVDT.pth1from huggingface_hub import hf_hub_download
2
3# Download PP-PicoDet baseline weights
4weight_path = hf_hub_download(
5 repo_id="Nahuyiur/DER",
6 filename="PP-PicoDet/baseline/VisDrone2019/PP-PicoDet-l-VisDrone2019.pdparams"
7)
8
9# Download RTMDet-R2 DER-improved weights
10weight_path = hf_hub_download(
11 repo_id="Nahuyiur/DER",
12 filename="RTMDet-R2/DER_improved/TinyPerson/RTMDet-R2-small-TinyPerson.pth"
13)