Download Latest Version v8.4.138 - Fix legacy checkpoint and YOLO-World loading (#26032) source code.zip (3.5 MB)
Email in envelope

Get an email when there's a new version of Ultralytics

Home / v8.4.136
Name Modified Size InfoDownloads / Week
Parent folder
ul33-tuner-experiments-2026-09-01.tar.gz 2026-09-01 6.4 MB
sbom.spdx.json 2026-08-31 737.0 kB
README.md 2026-08-31 6.2 kB
v8.4.136 - Improve Tuner search with confidence-weighted covariance (#25996) source code.tar.gz 2026-08-31 2.6 MB
v8.4.136 - Improve Tuner search with confidence-weighted covariance (#25996) source code.zip 2026-08-31 3.5 MB
Totals: 5 Items   13.3 MB 0

🌟 Summary

Version 8.4.136 improves hyperparameter tuning, inference performance, backend compatibility, and data handlingβ€”making YOLO workflows more reliable and efficient. πŸš€

πŸ“Š Key Changes

  • 🎯 Smarter hyperparameter tuning β€” Current PR [#25996] by @glenn-jocher
  • Keeps the existing Gaussian search behavior unchanged during the first 30 completed trials.
  • Learns relationships between promising hyperparameters by analyzing the best-performing results.
  • Uses confidence-weighted, correlated mutations only when enough elite trial data is available.
  • Reflects correlated proposals at search boundaries to avoid repeatedly clipping values.
  • Benchmarking on basketball-hoop detection reported a new best fitness of 0.60576, outperforming the tested Ray Tune and previous custom Tuner configurations.
  • Updated the hyperparameter tuning documentation.

  • 🧠 More robust channels-last inference

  • AutoBackend now owns memory-layout selection during backend construction, avoiding duplicated or unsafe conversions.
  • Automatic channels-last selection is available for supported Linux and Windows x86 CPU environments using PyTorch 1.13 or newer with oneDNN.
  • CUDA support remains available, while ARM64, MPS, older PyTorch versions, and exported backends retain their existing behavior.
  • Fixed compatibility issues affecting PyTorch 1.9 and JetPack 6 systems.

  • ⚑ Faster image preprocessing

  • PIL and NumPy image inputs now use more efficient OpenCV color conversions.
  • Avoids unnecessary image copies while preserving correct channel order and contiguous memory layout.

  • πŸ” More reliable prediction filtering

  • Fixed the CLI classes filter for YOLOE and World models when class IDs are supplied numerically.
  • Text-based class prompts continue to work as before.

  • πŸ“· Improved image and visualization handling

  • TIFF loading now respects uppercase extensions and grayscale flags, preserving multispectral image channels correctly.
  • Pose visualization now scales keypoint coordinates without incorrectly scaling confidence values.
  • Matplotlib backend restoration is safer when the originally configured backend is unavailable.

  • πŸƒ Tracking and distributed tuning improvements

  • BoT-SORT sparse optical-flow tracking avoids an unnecessary per-pixel grid allocation, reducing overhead on large frames.
  • MongoDB-based distributed tuning now assigns iteration IDs atomically, preventing duplicate trial numbers from concurrent workers.

  • πŸ§ͺ Better validation and project maintenance

  • Dataset YAML files now receive early type validation with clearer error messages.
  • Added CI and PyPI publishing status for the Ultralytics SDK repository.
  • Updated the package version to 8.4.136.

🎯 Purpose & Impact

  • Better tuning results: The Tuner can discover useful relationships between hyperparameters instead of treating every parameter independently, potentially improving final model quality with fewer wasted trials. πŸ“ˆ
  • Safer inference across platforms: Backend construction now handles memory formats and retained tensors more consistently, reducing regressions on older PyTorch versions, ARM64 devices, and JetPack environments.
  • Faster predictions: Common PIL and NumPy input paths require fewer copies and more efficient conversions, which can improve throughput in image-heavy applications.
  • More predictable CLI behavior: Class filtering now works consistently across standard, YOLOE, and World models.
  • Improved dataset reliability: Invalid YAML field types are reported earlier, making dataset configuration errors easier to diagnose.
  • No architecture changes: This release does not introduce a new model architecture; its primary benefits are improved tuning, compatibility, performance, and correctness.

What's Changed

New Contributors

Full Changelog: https://github.com/ultralytics/ultralytics/compare/v8.4.135...v8.4.136

Source: README.md, updated 2026-08-31