Skip to content

Bump ultralytics from 8.3.59 to 8.4.7 in /model-conversion#26

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/model-conversion/main/ultralytics-8.4.7
Open

Bump ultralytics from 8.3.59 to 8.4.7 in /model-conversion#26
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/model-conversion/main/ultralytics-8.4.7

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 2, 2026

Bumps ultralytics from 8.3.59 to 8.4.7.

Release notes

Sourced from ultralytics's releases.

v8.3.239 - SAM3 and SystemLogger() improvements (#22965)

🌟 Summary

Ultralytics v8.3.239 focuses on smoother SAM 3 text prompting, richer system monitoring via SystemLogger(), quieter logs, and broader ONNX export support (including Jetson JetPack 6), plus improved contributor attribution in the docs. 🚀


📊 Key Changes

  • SAM 3 text prompting made plug‑and‑play 🧩

    • Replaced the custom SAM3 tokenizer with CLIP’s built‑in SimpleTokenizer().
    • Removed the need to manually download and pass bpe_simple_vocab_16e6.txt.gz.
    • SAM3SemanticPredictor and SAM3VideoSemanticPredictor no longer take a bpe_path argument.
    • If clip isn’t installed, Ultralytics auto-installs it from the Ultralytics CLIP repo.
    • Updated SAM 3 docs and reference nav to reflect the simpler API and removed tokenizer module.
  • SystemLogger() gains real‑time throughput metrics 📈

    • SystemLogger.get_metrics() now supports rates=True to report disk and network MB/s:
      • Disk: read_mbs, write_mbs
      • Network: recv_mbs, sent_mbs
    • Default behavior (rates=False) still returns cumulative MB since logger init.
    • Adds internal tracking of previous disk/net stats and time for safe rate calculations.
    • Example docs updated to show GPU keys as strings ("0", "1").
  • Centralized warning suppression for cleaner logs 🔕

    • Moved scattered warnings.filterwarnings(...) calls into ultralytics/utils/__init__.py.
    • Removed local warning suppression from:
      • Exporter (ultralytics/engine/exporter.py)
      • MobileCLIP text model loader (ultralytics/nn/text_model.py)
      • Plotting utils (ultralytics/utils/plotting.py)
      • TensorBoard callbacks (ultralytics/utils/callbacks/tensorboard.py)
    • TensorBoard graph logging now:
      • Tries a simple trace first, then an RT-DETR‑style export fallback.
      • Logs a single, more informative warning if both fail.
  • ONNX export updated to support ONNX 1.20.0+ 📦

    • Exporter now requires onnx>=1.12.0,<2.0.0 instead of capping at 1.19.1 for:
      • export_onnx
      • export_saved_model (TensorFlow route)
    • Jetson JetPack 6 Dockerfile no longer hard‑pins ONNX below 1.20.0; the workaround was removed.
    • Comment in pyproject.toml updated to note MacOS testing up to onnx==1.20.0.
  • Docs & authorship improvements 📚

    • SAM 3 docs simplified: all examples now construct SAM3SemanticPredictor / SAM3VideoSemanticPredictor without bpe_path.
    • mkdocs.yml nav updated to drop the removed tokenizer_ve reference page.
    • docs/mkdocs_github_authors.yaml expanded with many new GitHub usernames and avatars, plus aliases and Ultralytics team mappings for better contributor attribution.
  • CI / tooling maintenance 🧰

    • GitHub Actions: actions/download-artifact bumped from v6 → v7 (Node.js 24 runtime) in publish.yml.
    • Package version bumped to 8.3.239 in ultralytics/__init__.py for clear release tracking.

... (truncated)

Commits
  • b6cf97c ultralytics 8.4.7 AVIF training and new COCO12-Formats dataset (#23358)
  • ee2ac9e Fix multi_scale range sampling and clarify docs (#23284)
  • f9748e5 Retry NDSON download failures (#23354)
  • 147500e fix semantic segmentation loss indexing error (#23330)
  • e780a49 fix: 🐞 pin torch version to <2.10 for executorch export (#23353)
  • eec4148 fix image size calculation in OBB and Pose26 loss for multi-scale training (#...
  • bf50fc2 Route outputs to runs/ by default and improve W&B run traceability (#23026)
  • d71f7f3 Platform docs (#23338)
  • 720d70c Fix the length of optimizer params group print (#23314)
  • 0a34ff3 Docs images cleanup (#23323)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [ultralytics](https://github.com/ultralytics/ultralytics) from 8.3.59 to 8.4.7.
- [Release notes](https://github.com/ultralytics/ultralytics/releases)
- [Commits](ultralytics/ultralytics@v8.3.59...v8.4.7)

---
updated-dependencies:
- dependency-name: ultralytics
  dependency-version: 8.4.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Feb 2, 2026
@dependabot dependabot bot requested a review from pluce17 as a code owner February 2, 2026 04:49
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Feb 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants