`ultralytics 8.2.67` new NVIDIA Jetson Orin Jetpack 6 Docker image (#14740)

pull/14750/head v8.2.67
Glenn Jocher 4 months ago committed by GitHub
parent df38884442
commit f8454f1ab7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/ci.yaml
  2. 2
      ultralytics/__init__.py
  3. 1
      ultralytics/utils/__init__.py

@ -206,7 +206,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-14]
os: [ubuntu-latest, macos-14]
python-version: ["3.11"]
torch: [latest]
include:

@ -1,6 +1,6 @@
# Ultralytics YOLO 🚀, AGPL-3.0 license
__version__ = "8.2.66"
__version__ = "8.2.67"
import os

@ -44,6 +44,7 @@ LOGGING_NAME = "ultralytics"
MACOS, LINUX, WINDOWS = (platform.system() == x for x in ["Darwin", "Linux", "Windows"]) # environment booleans
ARM64 = platform.machine() in {"arm64", "aarch64"} # ARM64 booleans
PYTHON_VERSION = platform.python_version()
TORCH_VERSION = torch.__version__
TORCHVISION_VERSION = importlib.metadata.version("torchvision") # faster than importing torchvision
HELP_MSG = """
Usage examples for running YOLOv8:

Loading…
Cancel
Save