Vision Analysis
Back to Leaderboard

YOLOX-L

yolox

one-stage detector with CSPDarknet backbone

Parameters54.2M
GFLOPs78.0
Input Size640px
Best mAP55.5%
LicenseApache-2.0

Architecture

Type

one-stage

Backbone

CSPDarknet

Neck

PAFPN

Head

Decoupled

Benchmark Results

Performance on COCO val2017 across different hardware configurations

HardwareRuntimemAP@50-95FPSLatencyVRAM
NVIDIA Jetson Orin Nano Super 8GBONNX Runtime FP3255.5%6.2161.9ms-
NVIDIA Jetson Orin Nano Super 8GBPyTorch FP3255.4%5.8171.7ms306 MB
NVIDIA Jetson Orin Nano Super 8GBTensorRT FP1655.5%21.646.3ms-
NVIDIA Jetson Orin Nano Super 8GBTensorRT FP3255.4%11.487.5ms-
NVIDIA RTX 5070 TiONNX Runtime FP3255.4%50.619.8ms-
NVIDIA RTX 5070 TiPyTorch FP3255.4%42.823.3ms307 MB
NVIDIA RTX 5070 TiTensorRT FP1655.4%79.312.6ms-
NVIDIA RTX 5070 TiTensorRT FP3255.4%61.816.2ms-

Speed Breakdown(NVIDIA Jetson Orin Nano Super 8GB)

8.8ms
154.4ms
8.5ms
Preprocess
Inference
Postprocess (NMS)

Usage with LibreYOLO

from libreyolo import LibreYOLO

# Load model (auto-downloads from HuggingFace if not found locally)
model = LibreYOLO("LibreYOLOXl.pt")

# Run inference
result = model("image.jpg", conf=0.25, iou=0.45)

# Process results
print(f"Found {len(result)} objects")
print(result.boxes.xyxy)   # bounding boxes (N, 4)
print(result.boxes.conf)   # confidence scores (N,)
print(result.boxes.cls)    # class IDs (N,)
anchor-freenmsPaper: 49.7% mAP

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