Vision Analysis
Back to Leaderboard

YOLOX

yoloxIn LibreYOLO

Megvii · arXiv 2021

Variants6
Parameters0.9M - 99.1M
Best Paper mAP51.1%
LicenseApache-2.0

Model Variants

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

ModelParamsGFLOPsPaper mAPBest FPS
YOLOX-Nano0.9M1.325.8%
100 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details
YOLOX-Tiny5.1M7.732.8%
98 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details
YOLOX-S9.0M13.540.5%
75 FPS
NVIDIA RTX 5070 Ti · TensorRT FP32
Details
YOLOX-M25.3M37.046.9%
83 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details
YOLOX-L54.2M78.049.7%
79 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details
YOLOX-X99.1M141.251.1%
72 FPS
NVIDIA RTX 5070 Ti · TensorRT FP16
Details

Architecture

Type

one-stage

Backbone

CSPDarknet

Neck

PAFPN

Head

Decoupled

anchor-freenmsTrained 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