ZH version is available. Content is displayed in original English for accuracy.
Advertisement
Advertisement
⚡ Community Insights
Discussion Sentiment
100% Positive
Analyzed from 191 words in the discussion.
Trending Topics
#segmentation#semantic#fine#seg#detection#here#real#framework#built#detr

Discussion (1 Comments)Read Original on HackerNews
The most recent part I built: the semantic seg head that outputs a dense mask, you can think of it as a per-pixel classification. No queries, no NMS, just a small conv neck + 1x1 classifier on full-frame features. It also exports to ONNX / TensorRT / OpenVINO / CoreML / LiteRT with a per-backend parity check.
On Cityscapes (TensorRT FP16, RTX 5070 Ti) it comes out ahead of YOLO26 and RF-DETR on detection/instance-segmentation F1 and takes the top mIoU on semantic segmentation, at real-time latency with 2–3x fewer params. I tried hard to make the benchmark difficult to game: every framework runs its own shipped inference code, each gets its own confidence threshold tuned for F1, and a single validator scores all of them against the same GT. Full protocol and every known asymmetry is public here: https://github.com/ArgoHA/cityscapes-benchmark.
It's not a fork - the detection core follows the D-FINE paper, but the segmentation heads, training, export and inference are implemented from scratch. You can take the code and train/finetune on your dataset.
Blog write-up on the semantic segmentation work: https://blog.agnify.ai/d-fine-seg-semantic-segmentation/. Happy to take criticism on the eval.