Views
No views yet
| Metric | Value |
|---|---|
| bbox_mAP | 0.0680 |
| bbox_mAP_50 | 0.1510 |
| bbox_mAP_75 | 0.0530 |
| bbox_mAP_s (small) | 0.0360 |
| bbox_mAP_m (medium) | 0.1260 |
| bbox_mAP_l (large) | 0.0640 |
1from mmdet.apis import init_detector, inference_detector
2
3config_file = 'faster_rcnn_rope_vit_tiny_coco.py'
4checkpoint_file = 'best_coco_bbox_mAP_epoch_12.pth'
5
6# Initialize the model
7model = init_detector(config_file, checkpoint_file, device='cuda:0')
8
9# Inference on an image
10result = inference_detector(model, 'demo.jpg')1@misc{rope-vit-detection,
2 author = {VLG IITR},
3 title = {Faster R-CNN with RoPE-ViT for Object Detection},
4 year = {2026},
5 publisher = {Hugging Face},
6}