๐ Summary
๐ Ultralytics v8.4.132 improves dataset efficiency, hardware compatibility, export workflows, and experiment-tracking documentation, with the headline feature being finer control over test-split downloads.
๐ Key Changes
-
๐ฏ Test-split control with
fraction(PR #25966 โ @fcakyon)- List-based
fractionnow supports train, validation, and test splits. - Use a third value to limit test data or set it to
0to skip test-image downloads entirely. - Existing two-value lists remain compatible and continue using the full test split.
- The same split-selection behavior is shared across training, validation, dataset conversion, and export calibration.
- List-based
-
โก More efficient NDJSON workflows
- Platform NDJSON runs no longer need to download unused test images, which can significantly reduce transfer time, storage use, and bandwidth during multi-dataset sweeps.
-
๐ฉน Corrected NMS and validation on Ascend NPU
- NMS now uses the optimized torchvision path on supported Ascend NPU setups while continuing to avoid unsupported XPU behavior.
- Fixes repeated NMS time-limit warnings and prevents incomplete batches from producing incorrect mAP results.
-
๐ Improved YOLO26 end-to-end and export guidance
- Documentation now more accurately describes NMS-free detection, segmentation, pose, and OBB models.
- Clarifies export-format fallbacks, quantization limitations, Hailo behavior, detection limits, and expected accuracy trade-offs.
- Updates performance claims and explains when custom post-processing or NMS is still required.
-
๐ Broader support for exported non-YOLO models
- Documents loading generic exported models through
YOLO()whentaskandimgszare supplied explicitly. - Adds guidance for using format-specific backend classes and explains input-layout, autograd, and post-processing differences.
- Corrects TensorFlow SavedModel, LiteRT, and numerical-parity documentation.
- Documents loading generic exported models through
-
๐งช Better classification subset sampling
- Fraction-based sampling for local classification datasets now selects images across classes instead of taking a class-ordered prefix.
- Produces more representative subsets for quick experiments and validation.
-
๐ Updated experiment-tracking integrations
- Ray Tune now uses its public context and reporting APIs.
- ClearML, Comet, TensorBoard, MLflow, Ray Tune, and W&B instructions now better match current callback behavior.
- Neptune integration and settings were retired following the service shutdown.
- MLflow environment-variable handling is more flexible, and TensorBoard setup is clearly documented as optional.
-
๐งฉ Additional training and export corrections
- RT-DETR documentation recommends disabling deterministic mode on CUDA, since its attention operation cannot provide fully deterministic backward training.
- Copy-Paste augmentation is correctly documented for both segment and OBB tasks.
- Classification color-jitter settings are clarified when automatic augmentation is disabled.
- IMX exports no longer reject end-to-end models at the exporter entry point.
- CLA workflow matching now accepts signature comments with surrounding whitespace or text.
๐ฏ Purpose & Impact
- ๐พ Lower data-transfer costs: Users running Platform or NDJSON workflows can avoid downloading test data they do not need.
- โฑ๏ธ Faster experimentation: Smaller, representative dataset subsets make tuning and iteration quicker without changing existing two-item
fractionusage. - ๐ More trustworthy metrics: Ascend NPU validation now processes complete batches, improving the reliability of reported mAP.
- ๐ Easier deployment: Clearer YOLO26 export guidance helps users understand when NMS-free inference works and when a traditional NMS pipeline is necessary.
- ๐ Better hardware coverage: NPU and export-path fixes improve compatibility across specialized accelerators and deployment formats.
- ๐งญ Smoother integrations: Updated tracking documentation reduces setup confusion, while users migrating from Neptune should select an active integration such as ClearML, Comet, MLflow, TensorBoard, W&B, or the Ultralytics Platform.
What's Changed
- Match CLA signature comments by substring in the workflow gate by @glenn-jocher in #25970
- Fix NMS time-limit truncation and wrong mAP on Ascend NPU by @idwenhui in #25963
- Update experiment tracking callbacks and docs by @glenn-jocher in #25972
- Add https://youtu.be/rMllxg8ZLs8 to docs by @RizwanMunawar in #25975
- Document running non-YOLO exports through Ultralytics and correct parity claims by @raimbekovm in #25974
- Correct end-to-end detection guide claims and export fallback coverage by @raimbekovm in #25971
- Correct copy-paste task attribution and the export conf default claim by @raimbekovm in #25969
- Fix classification fraction sampling by @JESUSROYETH in #25968
- Recommend deterministic=False for RT-DETR training by @artest08 in #25965
- Extend fraction to the test split by @fcakyon in #25966
New Contributors
Full Changelog: v8.4.131...v8.4.132