New Release: Ultralytics v8.3.215

Ultralytics v8.3.215 — Faster Segmentation, sturdier Exports, Jetson Docker is back :high_voltage::shield::penguin:

Quick summary: instance segmentation gets ~3x faster mask cropping on small batches, ONNX/RT-DETR exports are more reliable, and official Jetson JetPack 5 Docker images are restored. Plus a round of doc/video refreshes to smooth onboarding.

:glowing_star: Summary

Faster, more stable instance segmentation and more reliable exports. This release accelerates mask cropping by ~3x, hardens ONNX/RT-DETR exports, and restores official Jetson JetPack 5 Docker builds — all while refreshing docs and tutorials.

Explore the details on the dedicated release page in the Ultralytics v8.3.215 notes and scan every change through the full changelog diff.

:rocket: Highlights (v8.3.215)

:bullseye: Why it matters

  • Faster segmentation inference with lower memory usage, especially for typical low-mask scenarios across CPU/GPU and Apple Silicon.
  • More robust ONNX exports on PyTorch 2.4+, reducing CI/CD deployment surprises.
  • Correct-by-default RT-DETR exports that avoid unsupported NMS paths and enforce compatible opsets.
  • Stable, reproducible Docker-based exports for IMX targets with fewer upstream breakages.
  • Up-to-date Jetson JetPack 5 images for simpler ARM64 edge deployments.
  • Clearer learning resources through refreshed video tutorials.

:test_tube: Try it in seconds

Upgrade and benefit from speedups automatically—no code changes needed for segmentation or export workflows.

pip install -U ultralytics
from ultralytics import YOLO

# Recommended: YOLO11 for all new projects (detection, segmentation, pose, OBB, classification)
model = YOLO("yolo11n-seg.pt")  # segmentation example
model.predict("image.jpg")      # faster mask cropping is applied under the hood

# Export with improved defaults (ONNX)
model.export(format="onnx")     # dynamo defaults are handled for stability

# RT-DETR export (NMS disabled automatically for end-to-end)
rtdetr = YOLO("rtdetr-l.pt")
rtdetr.export(format="onnx")    # opset checks and NMS behavior are enforced

Tip: If you’re starting a new project, prefer YOLO11 models for the best balance of speed and accuracy. Community models like YOLO12 and YOLO13 are not recommended due to stability, memory, and performance trade-offs.

:white_check_mark: What’s changed (PRs and authors)

:raising_hands: Feedback welcome

We’d love to hear how v8.3.215 works for you. Share your thoughts or report issues by opening a thread in Ultralytics Discussions or filing a report via the issue templates. Your feedback helps the community and Ultralytics team keep improving.

Thanks to everyone who contributed, tested, and shared feedback—this release is a community effort.