Views
No views yet
object).swinb)pf_rpn_swinb_5p_coco_imagenet.pth) was trained on a combined dataset of COCO 2017 (5% subset) and ImageNet-1k (5% subset).object).| Method | Prompt Free | AR100 | AR300 | AR900 |
|---|---|---|---|---|
| GDINO‡ | ✓ | 54.7 | 57.8 | 61.6 |
| GenerateU | ✓ | 47.7 | 54.1 | 55.7 |
| PF-RPN (Ours) | ✓ | 60.7 | 65.3 | 68.2 |
| Method | Prompt Free | AR100 | AR300 | AR900 |
|---|---|---|---|---|
| GDINO‡ | ✓ | 69.1 | 70.9 | 72.4 |
| GenerateU | ✓ | 67.3 | 71.5 | 72.2 |
| PF-RPN (Ours) | ✓ | 76.5 | 78.6 | 79.8 |
object to simulate a prompt-free setting).1mkdir -p checkpoints
2
3# Download GroundingDINO base weights
4wget -O checkpoints/groundingdino_swinb_cogcoor_mmdet-55949c9c.pth \
5 https://download.openmmlab.com/mmdetection/v3.0/grounding_dino/groundingdino_swinb_cogcoor_mmdet-55949c9c.pth
6
7# Download PF-RPN weights
8wget -O checkpoints/pf_rpn_swinb_5p_coco_imagenet.pth \
9 https://huggingface.co/tangqh/PF-RPN/resolve/main/pf_rpn_swinb_5p_coco_imagenet.pth1python tools/test.py \
2 configs/pf-rpn/pf-rpn_coco-imagenet.py \
3 checkpoints/pf_rpn_swinb_5p_coco_imagenet.pth1@inproceedings{tang2026pf,
2 title={Prompt-Free Universal Region Proposal Network},
3 author={Tang, Qihong and Liu, Changhan and Zhang, Shaofeng and Li, Wenbin and Fan, Qi and Gao, Yang},
4 booktitle={CVPR},
5 year={2026}
6}