YOLO11 Detection β€” EdgeFirst Model Zoo

YOLO11 Detection models trained on COCO 2017 (80 classes) and validated on real edge hardware through the EdgeFirst Profiler + Validator pipeline. Each row in the tables below cites the EdgeFirst Studio validation session (v-XXXX) that produced the measurement.

Part of the EdgeFirst Model Zoo.

Training experiment: View on EdgeFirst Studio β€” dataset, training configuration, metrics, and exported artifacts.

Architecture with C3k2 attention blocks.


Reference accuracy β€” ONNX FP32

Accuracy ceiling for each size, measured against COCO val2017 (5,000 images) with pycocotools. Quantized and compiled artifacts (TFLite INT8, HEF, etc.) are graded against this reference per the EdgeFirst publication rule.

Size Params GFLOPs mAP@0.5 mAP@0.5-0.95 mAP@0.75 Source
Nano 2.6M 6.5 53.05% 37.78% 40.95% v-51f
Small 9.4M 21.5 61.19% 44.89% 48.47% v-520
Medium 20.1M 68.0 β€” β€” β€” β€”
Large 25.3M 87.6 β€” β€” β€” β€”
XLarge 56.9M 195.0 β€” β€” β€” β€”

On-target validation results

Each row is one EdgeFirst Studio validation session. Click the Source link to inspect the full session β€” model artifact, dataset version, parameters, per-stage Perfetto trace, and the host hardware description (hostname, kernel version, SoC, NPU, profiler version).

Row conventions in the table below:

  • Rows whose Ξ” cell reads ref are the float reference runs each quantized/compiled measurement is graded against.
  • Rows without a number under the metric columns are validation sessions that are currently work in progress β€” typically a larger size that has not yet been profiled on a given NPU, or a session that has not yet been linked to an ONNX FP32 reference. The Studio Source link tracks the current status.
  • Rows whose Ξ” vs FP32 cell carries a ⚠ are below our accuracy expectations for that platform (more than 10 percentage points under the float reference). The numbers are real measurements on real hardware, reproducible from the linked Studio session, and we publish them as-is; we are investigating the results to make improvements, and the next snapshot of this card will reflect any recovered accuracy.
  • INT8 rows use the smart (multi-scale split) decoder wherever both smart and logical decoder validations exist β€” smart is the variant we publish and ship. A dedicated section comparing the smart and logical decoders, using these benchmark results as reference cards, is planned.
  • End-to-end (ms) is the sequential per-image wall time covering the full pipeline β€” image load β†’ JPEG decode β†’ preprocess β†’ inference β†’ postprocess. Throughput (FPS) is the measured pipelined rate over the same full pipeline, which normally exceeds 1000 / end-to-end because the runtime overlaps stages across frames.
Size Platform mAP@0.5 Ξ” vs FP32 (pp) mAP@0.5-0.95 Inference (ms) End-to-end (ms) Throughput (FPS) Source
Nano macOS CoreML β€” Neural Engine (FP16) 53.05% +0.00 37.82% 1.83 5.62 720.5 v-516
Nano macOS CoreML β€” Metal GPU (FP16) 53.04% -0.01 37.80% 4.26 8.30 412.5 v-51e
Nano macOS CoreML β€” CPU (FP16) 53.05% ref 37.78% 15.69 20.37 124.5 v-51f
Nano NXP i.MX 8M Plus + VeriSilicon NPU 47.49% -5.56 32.17% 92.70 122.21 9.7 v-52a
Nano NXP i.MX 95 + eIQ Neutron NPU 10.77% -42.28 ⚠ 5.27% 50.94 84.77 17.7 v-52b
Nano Raspberry Pi 5 + Hailo-8L NPU 50.90% -2.15 36.02% 17.86 28.43 53.7 v-4de
Nano NVIDIA Jetson Orin Nano (TensorRT FP16) 53.03% -0.02 37.81% 7.09 17.56 161.4 v-4dc
Small macOS CoreML β€” Neural Engine (FP16) 61.17% -0.02 44.88% 4.95 8.74 328.9 v-517
Small macOS CoreML β€” Metal GPU (FP16) 61.19% ref 44.89% 9.95 13.73 194.5 v-520
Small macOS CoreML β€” CPU (FP16) 61.13% -0.06 44.86% 31.94 36.54 60.0 v-521
Small Raspberry Pi 5 + Hailo-8L NPU 58.88% -2.31 42.84% 36.53 47.06 25.2 v-4df
Small NVIDIA Jetson Orin Nano (TensorRT FP16) 61.13% -0.06 44.85% 15.57 24.81 109.0 v-4dd

⚠ Below expectations β€” under investigation. The rows marked ⚠ above measure more than 10 percentage points below the same training session's float reference: the model accuracy on that platform is below our expectations. We publish the measured numbers rather than hiding them, and we are investigating the results to make improvements β€” the next snapshot of this card will reflect any recovered accuracy.


Validation pipeline

These results are produced by the EdgeFirst on-target validation pipeline:

  1. EdgeFirst Profiler runs on the target hardware, executes the full inference pipeline (image load β†’ decode β†’ preprocess β†’ inference β†’ postprocess), and emits per-image predictions in EdgeFirst Arrow/Parquet plus a Perfetto trace.
  2. EdgeFirst Validator consumes the predictions and trace, computes pycocotools accuracy metrics and per-stage timing summaries, and publishes the results to the Studio validation session.
  3. EdgeFirst HAL (open source) provides the hardware-accelerated preprocessing and post-decoding primitives used at both validation and deployment time, so the timings measured here reflect the same accelerated paths a production runtime would take.

Inference latency is reported as the on-accelerator inference time. End-to-end latency is the sequential per-image wall time across the full pipeline β€” image load, JPEG decode, preprocessing, inference, and postprocessing β€” and throughput is the measured pipelined FPS from the Perfetto trace over that same full pipeline. Throughput generally exceeds 1000 / end-to-end because the runtime overlaps stages across frames.

See EdgeFirst Studio for the full validation pipeline.


Downloads

Artifacts are organized by deployment target. Each model file embeds the EdgeFirst edgefirst.json metadata (training session, dataset version, calibration artifact, converter chain) so a single file is sufficient for deployment β€” no sidecar configuration required.

Per-artifact download links are populated from the Studio artifact registry. To see the live download table, regenerate this card with --studio against an authenticated Studio session.


Inference example (Python)

from edgefirst.hal import Model, TensorImage

# Load the model β€” embedded edgefirst.json carries labels and decoder config
model = Model("yolo11n-det-int8.tflite")

# Run inference on an image
image = TensorImage.from_file("image.jpg")
results = model.predict(image)

# Iterate detections
for det in results.detections:
    print(f"{det.label}: {det.confidence:.2f} at {det.bbox}")

EdgeFirst HAL β€” Hardware abstraction layer with accelerated inference delegates.


Traceability

Every measurement in the tables above is reachable through the EdgeFirst Studio validation framework. The v-XXXX Source link on each row resolves to a public Studio URL of the form:

https://edgefirst.studio/public/validation/v-XXXX/details?mode=charts

The link lands on the Charts view β€” live system traces (CPU, memory, temperature, power) and per-stage timing recorded during the validation run. The Info and Metrics tabs on the same page carry the configuration and full COCO metric breakdown.

From there, the full provenance chain is one click deeper: training session ID, dataset version, calibration artifact, converter chain (e.g. TFLite quantizer + Neutron compile), validation parameters, and the host hardware description (hostname, kernel version, SoC, NPU, profiler version). The same model file you download from this repository embeds the same chain in its edgefirst.json metadata.


See also

Other model families in the EdgeFirst Model Zoo:

Model Task Link
YOLOv5 Detection Detection EdgeFirst/yolov5-det
YOLOv8 Detection Detection EdgeFirst/yolov8-det
YOLOv8 Segmentation Segmentation EdgeFirst/yolov8-seg
YOLO11 Segmentation Segmentation EdgeFirst/yolo11-seg
YOLO26 Detection Detection EdgeFirst/yolo26-det
YOLO26 Segmentation Segmentation EdgeFirst/yolo26-seg

Train your own with EdgeFirst Studio

Train on your own dataset with EdgeFirst Studio:

  • Free tier includes YOLO training with automatic INT8 quantization and edge deployment.
  • Upload datasets via EdgeFirst Recorder or COCO/YOLO format.
  • AI-assisted annotation with auto-labeling.
  • CameraAdaptor integration for native sensor format training.
  • Deploy trained models to edge devices via EdgeFirst Client.

Technical notes

Quantization pipeline

All TFLite INT8 models are produced by EdgeFirst's quantization pipeline (details):

  1. ONNX export β€” standard Ultralytics export with simplify=True
  2. TF-wrapped ONNX β€” box coordinates normalized to [0, 1] inside DFL decode
  3. Split decoder β€” boxes, scores, and mask coefficients split into separate output tensors so each receives an independent INT8 quantization scale
  4. Smart calibration β€” calibration samples selected via greedy coverage maximization; the artifact is content-addressed by parameter hash and cached in Studio for deterministic reuse
  5. Full integer INT8 β€” uint8 input, int8 output, MLIR quantizer

Split decoder output format

Detection (e.g. yolo11n):

  • boxes β€” (1, 4, 8400) normalized [0, 1] coordinates
  • scores β€” (1, 80, 8400) per-class probabilities

Each tensor has its own quantization scale and zero point. The EdgeFirst HAL handles dequantization and reassembly automatically; no application code change is required across NPU targets.

Embedded metadata

  • TFLite: edgefirst.json and labels.txt embedded in the ZIP-format model file
  • ONNX: edgefirst.json embedded in model.metadata_props

No sidecar files required; the model artifact is self-contained.


Limitations

  • COCO bias β€” models trained on COCO (80 classes) inherit the dataset's biases (Western-centric scenes, particular object distributions, limited weather/lighting diversity).
  • INT8 quantization loss β€” full-integer quantization introduces accuracy loss relative to FP32; the magnitude per platform is shown in the Ξ” vs FP32 column above.
  • Input resolution β€” all models expect 640Γ—640 input; other resolutions require letterboxing.

Citation

@software{edgefirst_yolo11_det,
  title = { {YOLO11 Detection β€” EdgeFirst Model Zoo} },
  author = {Au-Zone Technologies},
  url = {https://huggingface.co/EdgeFirst/yolo11-det},
  year = {2026},
  license = {Apache-2.0},
}

EdgeFirst Studio Β· GitHub Β· Docs Β· Au-Zone Technologies
Apache 2.0 Β· Β© Au-Zone Technologies Inc.

Downloads last month
58
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Evaluation results