Views
No views yet
| File | Quant | Size (MB) | Recall @ IoU 0.5 | Recall @ IoU 0.95 | Mean mask IoU | Pixel agreement | Latency (median ms, T=8) |
|---|---|---|---|---|---|---|---|
rfdetr-seg-xlarge-f32.gguf | F32 | 141.9 | 0.9821 | 0.9821 | 0.9964 | 0.9999 | 1197.3 |
rfdetr-seg-xlarge-f16.gguf ← recommended | F16 | 76.7 | 0.9821 | 0.9821 | 0.9965 | 0.9999 | 1183.2 |
rfdetr-seg-xlarge-q8_0.gguf | Q8_0 | 46.1 | 1.0000 | 1.0000 | 0.9941 | 0.9998 | 1086.5 |
rfdetr-seg-xlarge-q4_K.gguf | Q4_K | 36.6 | 0.9049 | 0.6718 | 0.9726 | 0.9994 | 1157.5 |
rfdetr 1.9.0) on 7 images (000000000139.jpg, 000000000632.jpg, 000000039769.jpg, 000000087038.jpg, 000000252219.jpg, 000000397133.jpg, bus.jpg) at threshold 0.5. Latency is measured separately with rfdetr-cli bench (8 iters + 3 warmup) at T=8 threads on a single Intel Core i7-12800HX, on tests/fixtures/ci/test_image.jpg.ne[0] % 256 != 0 (the decoder's 128-dim MLP halves, 60 tensors) silently fall back to Q8_0 per ggml's quantizer logic — net compression is still ~3.8× over F32. Use only when the size budget is tight; expect a measurable Recall@0.95 drop relative to F16/Q8_0 (see file table above).rfdetr.preprocess.resize_mode = "bilinear_no_antialias", matching RF-DETR 1.9's antialias-free float bilinear resize (align_corners=false, half-pixel coordinates, no intermediate uint8 rounding). rf-detr.cpp treats this key as optional: GGUFs that predate this metadata (no resize_mode key) keep using the legacy stb-based resize path, so older files continue to produce their original outputs unchanged. An unrecognized resize_mode value is rejected rather than guessed.1# 1. Clone + build rfdetr.cpp
2git clone https://github.com/adithyab94/rf-detr.cpp
3cd rf-detr.cpp
4cmake -B build -DRFDETR_BUILD_CLI=ON && cmake --build build -j
5
6# 2. Download a quant (F16 recommended)
7hf download adithya-balaji/rfdetr-cpp-seg-xlarge rfdetr-seg-xlarge-f16.gguf --local-dir models/
8
9# 3. Run segmentation (writes per-detection PNG masks to /tmp/seg_masks/)
10build/bin/rfdetr-cli detect \
11 --model models/rfdetr-seg-xlarge-f16.gguf \
12 --input my_image.jpg \
13 --threshold 0.5 --threads 8 \
14 --masks /tmp/seg_masks \
15 --output detections.jsonrfdetr 1.9.0) on 7 images (000000000139.jpg, 000000000632.jpg, 000000039769.jpg, 000000087038.jpg, 000000252219.jpg, 000000397133.jpg, bus.jpg) at threshold 0.5. Each detection match uses greedy Hungarian-style assignment by IoU (≥ 0.5 lenient, ≥ 0.95 strict) with class equality required.benchmarks/results/accuracy_sweep.json for the full sweep across the (variant × quant) cells.rfdetr==1.9.0fbef9387bed3rfdetr-seg-xlarge weights (downloaded by the rfdetr package on first use)SHA256SUMS in this repo.77c3778b4421640ceb21d94f458dd85555bdc72f1e0c71c13b854d74292d01d1 rfdetr-seg-xlarge-f32.gguf
72b6210e255ebb89a8d471c06a6f4b5307205b1a34b9e4292de90d1488da4e26 rfdetr-seg-xlarge-f16.gguf
524baa285dd6329cd8a033d4ca575a9480370cc34ba9d2b5f2c58ae1b1a01348 rfdetr-seg-xlarge-q8_0.gguf
ffa159749aac5b9eb172b9a2fd62f66ed1f5adcafacafcb5bd010b847b641597 rfdetr-seg-xlarge-q4_K.gguf