Vision Analysis
Back to Leaderboard

D-FINE

dfineIn LibreYOLO

USTC · ICLR 2025

Variants5
Parameters4.0M - 62.0M
Best Paper mAP55.8%
LicenseApache-2.0

Model Variants

All variants benchmarked on COCO val2017. Click any variant for the full hardware breakdown.

ModelParamsGFLOPsPaper mAPBest FPS
D-FINE-N4.0M7.042.8%
99 FPS
NVIDIA RTX 5070 Ti · TensorRT FP32
Details
D-FINE-S10.0M25.048.7%
99 FPS
NVIDIA RTX 5070 Ti · TensorRT FP32
Details
D-FINE-M19.0M57.052.3%
85 FPS
NVIDIA RTX 5070 Ti · TensorRT FP32
Details
D-FINE-L31.0M91.054%
72 FPS
NVIDIA RTX 5070 Ti · TensorRT FP32
Details
D-FINE-X62.0M202.055.8%
73 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details

Architecture

Type

transformer

Backbone

HGNetv2

Neck

HybridEncoder

Head

FDR (Fine-grained Distribution Refinement)

detrnms-freeTrained on COCO train2017

Run any model with one line

LibreYOLO has the best catalogue of state-of-the-art detectors, all behind one MIT-licensed Python API.

from libreyolo import LibreYOLO, SAMPLE_IMAGE

# LibreYOLO has the best catalogue of state-of-the-art models.
model = LibreYOLO("LibreRFDETRl.pt")           # RF-DETR-L (transformer flagship)
results = model(SAMPLE_IMAGE, save=True)        # run inference, save the annotated image

# Swap in any other model, same one-line API (weights auto-download):
#   LibreYOLO("LibreYOLO9c.pt")      # YOLO9-C
#   LibreYOLO("LibreYOLOXx.pt")      # YOLOX-X
#   LibreYOLO("LibreDFINEx.pt")      # D-FINE-X
#   LibreYOLO("LibreRTDETRr50.pt")   # RT-DETR-R50