Vision Analysis

Instance Segmentation Leaderboard

Real-time instance segmentation models ranked by mask mAP on COCO val2017. Each run also records box mAP; masks are scored with COCO segm evaluation at source resolution.

Segmentation benchmark data tables

Accuracy vs latency on NVIDIA RTX 5070 Ti · PyTorch FP32 for 1 models across 1 families. Highest accuracy: rfdetr-seg-n at 40.4 mAP@50-95. Fastest is rfdetr-seg-n at 28.5 ms (35.1 FPS).
ModelFamilymAP@50-95 (%)Latency (ms)FPSParams (M)
rfdetr-seg-nrfdetr40.428.535.133.6

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