Add/update model card for seg-large
Browse files
README.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
library_name: rfdetr.cpp
|
| 4 |
+
tags:
|
| 5 |
+
- object-detection
|
| 6 |
+
- rfdetr
|
| 7 |
+
- gguf
|
| 8 |
+
- ggml
|
| 9 |
+
- cpp-inference
|
| 10 |
+
- image-segmentation
|
| 11 |
+
- instance-segmentation
|
| 12 |
+
pipeline_tag: image-segmentation
|
| 13 |
+
base_model: roboflow/rfdetr
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# RF-DETR Seg-Large — GGUF for rfdetr.cpp
|
| 17 |
+
|
| 18 |
+
GGUF-format weights of [Roboflow RF-DETR Seg-Large](https://github.com/roboflow/rf-detr) (segmentation variant) for use with [rfdetr.cpp](https://github.com/mudler/rf-detr.cpp), a C++/ggml implementation that matches the upstream PyTorch model on CPU.
|
| 19 |
+
|
| 20 |
+
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.
|
| 21 |
+
|
| 22 |
+
## Available files
|
| 23 |
+
|
| 24 |
+
| File | Quant | Size (MB) |
|
| 25 |
+
|---|---|---:|
|
| 26 |
+
| `rfdetr-seg-large-f32.gguf` | F32 | 140.9 |
|
| 27 |
+
| `rfdetr-seg-large-f16.gguf` ← **recommended** | F16 | 75.7 |
|
| 28 |
+
| `rfdetr-seg-large-q8_0.gguf` | Q8_0 | 45.1 |
|
| 29 |
+
| `rfdetr-seg-large-q4_K.gguf` | Q4_K | 35.9 |
|
| 30 |
+
|
| 31 |
+
> Accuracy + latency for this variant haven't been added to the [BENCHMARK.md](https://github.com/mudler/rf-detr.cpp/blob/main/BENCHMARK.md) sweep yet; the C++ implementation is verified to load and run `rfdetr-cli detect` end-to-end on every quant. Run `scripts/sweep_accuracy.py --variant seg-large` locally for parity numbers.
|
| 32 |
+
|
| 33 |
+
All accuracy numbers are computed against the upstream PyTorch reference (`rfdetr 1.7.0`) on 7 COCO val2017 images at threshold 0.5. Latency is measured with `rfdetr-cli bench` (8 iters + 3 warmup) at T=8 threads on a single AMD Ryzen 9 9950X3D image (`coco_kitchen.jpg`, 640x427).
|
| 34 |
+
|
| 35 |
+
## Architecture
|
| 36 |
+
|
| 37 |
+
- Backbone: DINOv2-small
|
| 38 |
+
- Input resolution: 504×504
|
| 39 |
+
- Patch size: 12
|
| 40 |
+
- Decoder layers: 5
|
| 41 |
+
- Object queries: 200
|
| 42 |
+
- Task: instance segmentation (boxes + per-query masks)
|
| 43 |
+
- Mask resolution: 126×126 per query (image_size / 4)
|
| 44 |
+
|
| 45 |
+
## Quantization notes
|
| 46 |
+
|
| 47 |
+
- **F32** — full-precision reference, ~120 MB. Bit-exact PyTorch parity.
|
| 48 |
+
- **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.
|
| 49 |
+
- **Q8_0** — best size/accuracy tradeoff under F16; ~3× smaller than F32 with effectively identical detections.
|
| 50 |
+
- **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).
|
| 51 |
+
|
| 52 |
+
## Usage
|
| 53 |
+
|
| 54 |
+
```bash
|
| 55 |
+
# 1. Clone + build rfdetr.cpp
|
| 56 |
+
git clone https://github.com/mudler/rf-detr.cpp
|
| 57 |
+
cd rt-detr.cpp
|
| 58 |
+
cmake -B build -DRFDETR_BUILD_CLI=ON && cmake --build build -j
|
| 59 |
+
|
| 60 |
+
# 2. Download a quant (F16 recommended)
|
| 61 |
+
hf download mudler/rfdetr-cpp-seg-large rfdetr-seg-large-f16.gguf --local-dir models/
|
| 62 |
+
|
| 63 |
+
# 3. Run segmentation (writes per-detection PNG masks to /tmp/seg_masks/)
|
| 64 |
+
build/bin/rfdetr-cli detect \
|
| 65 |
+
--model models/rfdetr-seg-large-f16.gguf \
|
| 66 |
+
--input my_image.jpg \
|
| 67 |
+
--threshold 0.5 --threads 8 \
|
| 68 |
+
--masks /tmp/seg_masks \
|
| 69 |
+
--output detections.json
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
## Accuracy methodology
|
| 73 |
+
|
| 74 |
+
All accuracy metrics are computed against the upstream PyTorch reference (rfdetr 1.7.0) on 7 COCO val2017 images at threshold 0.5. Each detection match uses greedy Hungarian-style assignment by IoU (≥ 0.5 lenient, ≥ 0.95 strict) with class equality required.
|
| 75 |
+
|
| 76 |
+
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.
|
| 77 |
+
|
| 78 |
+
See [BENCHMARK.md](https://github.com/mudler/rf-detr.cpp/blob/main/BENCHMARK.md) and [`benchmarks/results/accuracy_sweep.json`](https://github.com/mudler/rf-detr.cpp/blob/main/benchmarks/results/accuracy_sweep.json) for the full sweep across the (variant × quant) cells.
|
| 79 |
+
|
| 80 |
+
## License
|
| 81 |
+
|
| 82 |
+
Apache-2.0 — matches the upstream [rfdetr](https://github.com/roboflow/rf-detr) license.
|