Downloads · 30 days
0
linzher/RefineRank
RefineRank is a object detection model from linzher. Use it when you need objects located in an image. It is set up for transformers. The card lists the license as cc-by-4.0.
Paper: RefineRank: Joint Box Refinement and Ranking for Surgical Spatio-Temporal Grounding
Downloads · 30 days
0
Access
Public
Updated Aug 26, 2026
Repo size
17.5 GB
Likes
0
Public
Click a slice to open those files.
.safetensors16.6 GB · 95%
From the Hugging Face model README
Paper: RefineRank: Joint Box Refinement and Ranking for Surgical Spatio-Temporal Grounding
Official checkpoints for the ECCV 2026 MedVidU Workshop paper RefineRank.
RefineRank couples two frozen backbones — a MedVLM (Qwen2.5-VL
architecture) and GroundingDINO — with a compact 1.25M-parameter trainable
module, RefineNet (QueryConditionedProposalAdapter). RefineNet uses
MedVLM language and regional features to predict coordinate corrections and
box-quality scores for GroundingDINO proposals; a parameter-free decoder then
returns the highest-scoring original or refined box.
This repo hosts the complete checkpoints/ tree expected by the code
repository — three flat folders, each holding its core files directly:
checkpoints/
├── vlm/ # frozen MedVLM, HF format (~16 GB)
│ ├── config.json, generation_config.json, tokenizer*, preprocessor_config.json, ...
│ └── model-00001..00004-of-00004.safetensors
├── grounding_dino/
│ └── groundingdino_swinb_cogcoor.pth # frozen GroundingDINO SwinB (~895 MB)
└── refinenet/ # trained RefineNet, this work (~5 MB)
├── proposal_adapter_full.pt # SHA-256: 932e479b…463d9b
└── deployment_manifest.json
refinenet/proposal_adapter_full.pt is the exact checkpoint behind the
paper's MedVidBench submission (run_iter132_submission). SHA-256:
932e479b854c3d5fbafee25a3fcf9e6481e864fe98a6867502d6ebff39463d9b.vlm/ and grounding_dino/ are third-party frozen weights
(uAI-NEXUS-MedVLM by UII-AI and
GroundingDINO by
IDEA-Research), mirrored here for one-stop reproducibility. They are never
fine-tuned by RefineRank; please follow their original licenses and cite the
original works.pip install "huggingface_hub[hf_transfer]" # hf_transfer optional, faster
hf download linzher/RefineRank --local-dir . # restores the checkpoints/ tree
git clone https://github.com/linzhe001/RefineRank
cd RefineRank
pip install -r requirements.txt
# place the downloaded checkpoints/ next to interface.py, then:
python interface.py predict # auto-discovers checkpoints/refinenet/
@inproceedings{jiang2026refinerank,
title = {RefineRank: Joint Box Refinement and Ranking for Surgical
Spatio-Temporal Grounding},
author = {Jiang, Linzhe and Huang, Jiayuan and Zhang, Changhao and
Jiang, Chunyang and Mao, Zhehua and
Garcia-Peraza-Herrera, Luis C. and Hoque, Mobarak I.},
booktitle = {ECCV Workshops (MedVidU)},
year = {2026}
}