RF-DETR Seg-Large β GGUF for rfdetr.cpp
GGUF-format weights of Roboflow RF-DETR Seg-Large (segmentation variant) for use with rfdetr.cpp, a C++/ggml implementation that matches the upstream PyTorch model on CPU.
This repo contains all four standard quantizations of this variant. F16 is the recommended default β same accuracy as F32, 1.85Γ smaller, and typically the fastest on modern CPUs thanks to ggml's F32ΓF16 matmul fast path.
Available files
| File | Quant | Size (MB) | Recall @ IoU 0.5 | Recall @ IoU 0.95 | Mean mask IoU | Pixel agreement | Latency (median ms, T=8) |
|---|---|---|---|---|---|---|---|
rfdetr-seg-large-f32.gguf |
F32 | 134.6 | 0.9762 | 0.9762 | 0.9982 | 0.9999 | 647.4 |
rfdetr-seg-large-f16.gguf β recommended |
F16 | 72.3 | 0.9762 | 0.9762 | 0.9980 | 0.9999 | 638.4 |
rfdetr-seg-large-q8_0.gguf |
Q8_0 | 43.1 | 0.9881 | 0.9881 | 0.9943 | 0.9999 | 565.1 |
rfdetr-seg-large-q4_K.gguf |
Q4_K | 34.3 | 0.9643 | 0.6929 | 0.9730 | 0.9993 | 610.5 |
All accuracy numbers above are computed against the upstream PyTorch reference (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.
Architecture
- Backbone: DINOv2-small
- Input resolution: 504Γ504
- Patch size: 12
- Decoder layers: 5
- Object queries: 200
- Task: instance segmentation (boxes + per-query masks)
- Mask resolution: 126Γ126 per query (image_size / 4)
Quantization notes
- F32 β full-precision reference, ~120 MB. Bit-exact PyTorch parity.
- F16 β matmul-multiplicand weights only; LayerNorms, conv kernels, embeddings, biases, and layer-scale gammas stay F32. Lossless on this model and consistently the fastest variant on CPU.
- Q8_0 β best size/accuracy tradeoff under F16; ~3Γ smaller than F32 with effectively identical detections.
- Q4_K β smallest practical quant. Rows with
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).
Compatibility
These GGUFs stamp 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.
Keypoint-preview inference is not supported. rf-detr.cpp does not implement the keypoint output head; this repository only serves box detection + instance segmentation masks outputs.
Usage
# 1. Clone + build rfdetr.cpp
git clone https://github.com/adithyab94/rf-detr.cpp
cd rf-detr.cpp
cmake -B build -DRFDETR_BUILD_CLI=ON && cmake --build build -j
# 2. Download a quant (F16 recommended)
hf download adithya-balaji/rfdetr-cpp-seg-large rfdetr-seg-large-f16.gguf --local-dir models/
# 3. Run segmentation (writes per-detection PNG masks to /tmp/seg_masks/)
build/bin/rfdetr-cli detect \
--model models/rfdetr-seg-large-f16.gguf \
--input my_image.jpg \
--threshold 0.5 --threads 8 \
--masks /tmp/seg_masks \
--output detections.json
Accuracy methodology
All accuracy metrics are computed against the upstream PyTorch reference (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. Each detection match uses greedy Hungarian-style assignment by IoU (β₯ 0.5 lenient, β₯ 0.95 strict) with class equality required.
Mask metrics are pixel-wise IoU between binary masks at the original image resolution (not the network's working resolution), after sigmoid + bicubic upsample of the per-query mask logits. Pixel agreement is the fraction of pixels where the C++ and PyTorch binary masks match.
See BENCHMARK.md and benchmarks/results/accuracy_sweep.json for the full sweep across the (variant Γ quant) cells.
Provenance
- Source project: Roboflow RF-DETR
- Upstream package:
rfdetr==1.9.0 - Converted with rfdetr.cpp at commit
fbef9387bed3 - Checkpoint: official pretrained
rfdetr-seg-largeweights (downloaded by therfdetrpackage on first use)
Checksums (SHA-256)
Also available as SHA256SUMS in this repo.
bae628cd0b71532f352eeeabea2462fac5abf9f71077f04b425a228bcfa706e8 rfdetr-seg-large-f32.gguf
ffc631b8e6115b11bdbb8e876c77aaa3e3e5d8c41c00ce8417ebbf183b1e6404 rfdetr-seg-large-f16.gguf
6e24b08eae94b2ac2fbaa49d02ce3912bed11f574fafa19b258a45f1daeb8ecf rfdetr-seg-large-q8_0.gguf
8ac02a398f786631b7dbb7078fe7715b15aa97698052e9c5f7b2a770fd683041 rfdetr-seg-large-q4_K.gguf
License
Apache-2.0 β matches the upstream rfdetr license.
- Downloads last month
- 51
8-bit
16-bit
32-bit