New Release: Ultralytics v8.3.227

Ultralytics v8.3.227 — stability, smoother exports, and better tooling :rocket:

Quick summary: a stability-focused update that pins ONNX to prevent export breakages, improves Edge TPU export setup on modern Linux, and tidies up dependencies, docs, and tooling. Ideal for teams exporting frequently or running in Conda. :white_check_mark:

Highlights

  • ONNX export reliability with safe pinning :locked:
  • Edge TPU export setup modernized for Debian/Ubuntu :puzzle_piece:
  • Faster dependency hygiene via daily updates :stopwatch:
  • Cleaner repos and improved dataset citations :books:

As always, Ultralytics YOLO recommends YOLO11 for all tasks and sizes. You can use this release seamlessly across detection, segmentation, pose, classification, and OBB.


New in v8.3.227

New Features and Improvements

Tooling, Dependencies, and CI

Documentation and Repo Maintenance


What’s Changed (PRs)

Explore all changes in the full changelog comparison for v8.3.226 → v8.3.227, or visit the v8.3.227 release page.


Upgrade and quick tips

  • Upgrade:
pip install -U ultralytics
  • If you encounter ONNX export issues, pin ONNX locally:
pip install "onnx<=1.19.1"
  • Export examples (YOLO11 recommended):
# ONNX export
yolo export model=yolo11n.pt format=onnx

# TensorFlow SavedModel export
yolo export model=yolo11n.pt format=tf

# Edge TPU (modernized auto-install flow on Debian/Ubuntu)
yolo export model=yolo11n.pt format=edgetpu

Why this matters

  • More reliable exports across environments (especially Conda) :white_check_mark:
  • Edge TPU exports work out-of-the-box on newer Debian/Ubuntu following current security best practices :locked_with_key:
  • Faster dependency updates and cleaner repos :high_voltage::broom:
  • Better contributor experience with clearer docs and dataset citations :handshake:

Try it and share feedback

Grab the build from the v8.3.227 release page, kick the tires with your YOLO11 workflows, and let us know how it goes. You can start a conversation in Ultralytics Discussions or report issues via the issue tracker.

Thanks to our community and contributors for helping make Ultralytics YOLO more stable and developer-friendly with each release!