dgenerate-ultralytics-headless 8.3.214__py3-none-any.whl → 8.3.248__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (236) hide show
  1. {dgenerate_ultralytics_headless-8.3.214.dist-info → dgenerate_ultralytics_headless-8.3.248.dist-info}/METADATA +13 -14
  2. dgenerate_ultralytics_headless-8.3.248.dist-info/RECORD +298 -0
  3. tests/__init__.py +5 -7
  4. tests/conftest.py +8 -15
  5. tests/test_cli.py +1 -1
  6. tests/test_cuda.py +5 -8
  7. tests/test_engine.py +1 -1
  8. tests/test_exports.py +57 -12
  9. tests/test_integrations.py +4 -4
  10. tests/test_python.py +84 -53
  11. tests/test_solutions.py +160 -151
  12. ultralytics/__init__.py +1 -1
  13. ultralytics/cfg/__init__.py +56 -62
  14. ultralytics/cfg/datasets/Argoverse.yaml +7 -6
  15. ultralytics/cfg/datasets/DOTAv1.5.yaml +1 -1
  16. ultralytics/cfg/datasets/DOTAv1.yaml +1 -1
  17. ultralytics/cfg/datasets/ImageNet.yaml +1 -1
  18. ultralytics/cfg/datasets/VOC.yaml +15 -16
  19. ultralytics/cfg/datasets/african-wildlife.yaml +1 -1
  20. ultralytics/cfg/datasets/coco-pose.yaml +21 -0
  21. ultralytics/cfg/datasets/coco128-seg.yaml +1 -1
  22. ultralytics/cfg/datasets/coco8-pose.yaml +21 -0
  23. ultralytics/cfg/datasets/dog-pose.yaml +28 -0
  24. ultralytics/cfg/datasets/dota8-multispectral.yaml +1 -1
  25. ultralytics/cfg/datasets/dota8.yaml +2 -2
  26. ultralytics/cfg/datasets/hand-keypoints.yaml +26 -2
  27. ultralytics/cfg/datasets/kitti.yaml +27 -0
  28. ultralytics/cfg/datasets/lvis.yaml +5 -5
  29. ultralytics/cfg/datasets/open-images-v7.yaml +1 -1
  30. ultralytics/cfg/datasets/tiger-pose.yaml +16 -0
  31. ultralytics/cfg/datasets/xView.yaml +16 -16
  32. ultralytics/cfg/default.yaml +1 -1
  33. ultralytics/cfg/models/11/yolo11-pose.yaml +1 -1
  34. ultralytics/cfg/models/11/yoloe-11-seg.yaml +2 -2
  35. ultralytics/cfg/models/11/yoloe-11.yaml +2 -2
  36. ultralytics/cfg/models/rt-detr/rtdetr-l.yaml +1 -1
  37. ultralytics/cfg/models/rt-detr/rtdetr-resnet101.yaml +1 -1
  38. ultralytics/cfg/models/rt-detr/rtdetr-resnet50.yaml +1 -1
  39. ultralytics/cfg/models/rt-detr/rtdetr-x.yaml +1 -1
  40. ultralytics/cfg/models/v10/yolov10b.yaml +2 -2
  41. ultralytics/cfg/models/v10/yolov10l.yaml +2 -2
  42. ultralytics/cfg/models/v10/yolov10m.yaml +2 -2
  43. ultralytics/cfg/models/v10/yolov10n.yaml +2 -2
  44. ultralytics/cfg/models/v10/yolov10s.yaml +2 -2
  45. ultralytics/cfg/models/v10/yolov10x.yaml +2 -2
  46. ultralytics/cfg/models/v3/yolov3-tiny.yaml +1 -1
  47. ultralytics/cfg/models/v6/yolov6.yaml +1 -1
  48. ultralytics/cfg/models/v8/yoloe-v8-seg.yaml +9 -6
  49. ultralytics/cfg/models/v8/yoloe-v8.yaml +9 -6
  50. ultralytics/cfg/models/v8/yolov8-cls-resnet101.yaml +1 -1
  51. ultralytics/cfg/models/v8/yolov8-cls-resnet50.yaml +1 -1
  52. ultralytics/cfg/models/v8/yolov8-ghost-p2.yaml +2 -2
  53. ultralytics/cfg/models/v8/yolov8-ghost-p6.yaml +2 -2
  54. ultralytics/cfg/models/v8/yolov8-ghost.yaml +2 -2
  55. ultralytics/cfg/models/v8/yolov8-obb.yaml +1 -1
  56. ultralytics/cfg/models/v8/yolov8-p2.yaml +1 -1
  57. ultralytics/cfg/models/v8/yolov8-pose-p6.yaml +1 -1
  58. ultralytics/cfg/models/v8/yolov8-rtdetr.yaml +1 -1
  59. ultralytics/cfg/models/v8/yolov8-seg-p6.yaml +1 -1
  60. ultralytics/cfg/models/v8/yolov8-world.yaml +1 -1
  61. ultralytics/cfg/models/v8/yolov8-worldv2.yaml +6 -6
  62. ultralytics/cfg/models/v9/yolov9s.yaml +1 -1
  63. ultralytics/data/__init__.py +4 -4
  64. ultralytics/data/annotator.py +3 -4
  65. ultralytics/data/augment.py +285 -475
  66. ultralytics/data/base.py +18 -26
  67. ultralytics/data/build.py +147 -25
  68. ultralytics/data/converter.py +36 -46
  69. ultralytics/data/dataset.py +46 -74
  70. ultralytics/data/loaders.py +42 -49
  71. ultralytics/data/split.py +5 -6
  72. ultralytics/data/split_dota.py +8 -15
  73. ultralytics/data/utils.py +34 -43
  74. ultralytics/engine/exporter.py +319 -237
  75. ultralytics/engine/model.py +148 -188
  76. ultralytics/engine/predictor.py +29 -38
  77. ultralytics/engine/results.py +177 -311
  78. ultralytics/engine/trainer.py +83 -59
  79. ultralytics/engine/tuner.py +23 -34
  80. ultralytics/engine/validator.py +39 -22
  81. ultralytics/hub/__init__.py +16 -19
  82. ultralytics/hub/auth.py +6 -12
  83. ultralytics/hub/google/__init__.py +7 -10
  84. ultralytics/hub/session.py +15 -25
  85. ultralytics/hub/utils.py +5 -8
  86. ultralytics/models/__init__.py +1 -1
  87. ultralytics/models/fastsam/__init__.py +1 -1
  88. ultralytics/models/fastsam/model.py +8 -10
  89. ultralytics/models/fastsam/predict.py +17 -29
  90. ultralytics/models/fastsam/utils.py +1 -2
  91. ultralytics/models/fastsam/val.py +5 -7
  92. ultralytics/models/nas/__init__.py +1 -1
  93. ultralytics/models/nas/model.py +5 -8
  94. ultralytics/models/nas/predict.py +7 -9
  95. ultralytics/models/nas/val.py +1 -2
  96. ultralytics/models/rtdetr/__init__.py +1 -1
  97. ultralytics/models/rtdetr/model.py +5 -8
  98. ultralytics/models/rtdetr/predict.py +15 -19
  99. ultralytics/models/rtdetr/train.py +10 -13
  100. ultralytics/models/rtdetr/val.py +21 -23
  101. ultralytics/models/sam/__init__.py +15 -2
  102. ultralytics/models/sam/amg.py +14 -20
  103. ultralytics/models/sam/build.py +26 -19
  104. ultralytics/models/sam/build_sam3.py +377 -0
  105. ultralytics/models/sam/model.py +29 -32
  106. ultralytics/models/sam/modules/blocks.py +83 -144
  107. ultralytics/models/sam/modules/decoders.py +19 -37
  108. ultralytics/models/sam/modules/encoders.py +44 -101
  109. ultralytics/models/sam/modules/memory_attention.py +16 -30
  110. ultralytics/models/sam/modules/sam.py +200 -73
  111. ultralytics/models/sam/modules/tiny_encoder.py +64 -83
  112. ultralytics/models/sam/modules/transformer.py +18 -28
  113. ultralytics/models/sam/modules/utils.py +174 -50
  114. ultralytics/models/sam/predict.py +2248 -350
  115. ultralytics/models/sam/sam3/__init__.py +3 -0
  116. ultralytics/models/sam/sam3/decoder.py +546 -0
  117. ultralytics/models/sam/sam3/encoder.py +529 -0
  118. ultralytics/models/sam/sam3/geometry_encoders.py +415 -0
  119. ultralytics/models/sam/sam3/maskformer_segmentation.py +286 -0
  120. ultralytics/models/sam/sam3/model_misc.py +199 -0
  121. ultralytics/models/sam/sam3/necks.py +129 -0
  122. ultralytics/models/sam/sam3/sam3_image.py +339 -0
  123. ultralytics/models/sam/sam3/text_encoder_ve.py +307 -0
  124. ultralytics/models/sam/sam3/vitdet.py +547 -0
  125. ultralytics/models/sam/sam3/vl_combiner.py +160 -0
  126. ultralytics/models/utils/loss.py +14 -26
  127. ultralytics/models/utils/ops.py +13 -17
  128. ultralytics/models/yolo/__init__.py +1 -1
  129. ultralytics/models/yolo/classify/predict.py +9 -12
  130. ultralytics/models/yolo/classify/train.py +11 -32
  131. ultralytics/models/yolo/classify/val.py +29 -28
  132. ultralytics/models/yolo/detect/predict.py +7 -10
  133. ultralytics/models/yolo/detect/train.py +11 -20
  134. ultralytics/models/yolo/detect/val.py +70 -58
  135. ultralytics/models/yolo/model.py +36 -53
  136. ultralytics/models/yolo/obb/predict.py +5 -14
  137. ultralytics/models/yolo/obb/train.py +11 -14
  138. ultralytics/models/yolo/obb/val.py +39 -36
  139. ultralytics/models/yolo/pose/__init__.py +1 -1
  140. ultralytics/models/yolo/pose/predict.py +6 -21
  141. ultralytics/models/yolo/pose/train.py +10 -15
  142. ultralytics/models/yolo/pose/val.py +38 -57
  143. ultralytics/models/yolo/segment/predict.py +14 -18
  144. ultralytics/models/yolo/segment/train.py +3 -6
  145. ultralytics/models/yolo/segment/val.py +93 -45
  146. ultralytics/models/yolo/world/train.py +8 -14
  147. ultralytics/models/yolo/world/train_world.py +11 -34
  148. ultralytics/models/yolo/yoloe/__init__.py +7 -7
  149. ultralytics/models/yolo/yoloe/predict.py +16 -23
  150. ultralytics/models/yolo/yoloe/train.py +30 -43
  151. ultralytics/models/yolo/yoloe/train_seg.py +5 -10
  152. ultralytics/models/yolo/yoloe/val.py +15 -20
  153. ultralytics/nn/__init__.py +7 -7
  154. ultralytics/nn/autobackend.py +145 -77
  155. ultralytics/nn/modules/__init__.py +60 -60
  156. ultralytics/nn/modules/activation.py +4 -6
  157. ultralytics/nn/modules/block.py +132 -216
  158. ultralytics/nn/modules/conv.py +52 -97
  159. ultralytics/nn/modules/head.py +50 -103
  160. ultralytics/nn/modules/transformer.py +76 -88
  161. ultralytics/nn/modules/utils.py +16 -21
  162. ultralytics/nn/tasks.py +94 -154
  163. ultralytics/nn/text_model.py +40 -67
  164. ultralytics/solutions/__init__.py +12 -12
  165. ultralytics/solutions/ai_gym.py +11 -17
  166. ultralytics/solutions/analytics.py +15 -16
  167. ultralytics/solutions/config.py +5 -6
  168. ultralytics/solutions/distance_calculation.py +10 -13
  169. ultralytics/solutions/heatmap.py +7 -13
  170. ultralytics/solutions/instance_segmentation.py +5 -8
  171. ultralytics/solutions/object_blurrer.py +7 -10
  172. ultralytics/solutions/object_counter.py +12 -19
  173. ultralytics/solutions/object_cropper.py +8 -14
  174. ultralytics/solutions/parking_management.py +33 -31
  175. ultralytics/solutions/queue_management.py +10 -12
  176. ultralytics/solutions/region_counter.py +9 -12
  177. ultralytics/solutions/security_alarm.py +15 -20
  178. ultralytics/solutions/similarity_search.py +10 -15
  179. ultralytics/solutions/solutions.py +75 -74
  180. ultralytics/solutions/speed_estimation.py +7 -10
  181. ultralytics/solutions/streamlit_inference.py +2 -4
  182. ultralytics/solutions/templates/similarity-search.html +7 -18
  183. ultralytics/solutions/trackzone.py +7 -10
  184. ultralytics/solutions/vision_eye.py +5 -8
  185. ultralytics/trackers/__init__.py +1 -1
  186. ultralytics/trackers/basetrack.py +3 -5
  187. ultralytics/trackers/bot_sort.py +10 -27
  188. ultralytics/trackers/byte_tracker.py +14 -30
  189. ultralytics/trackers/track.py +3 -6
  190. ultralytics/trackers/utils/gmc.py +11 -22
  191. ultralytics/trackers/utils/kalman_filter.py +37 -48
  192. ultralytics/trackers/utils/matching.py +12 -15
  193. ultralytics/utils/__init__.py +116 -116
  194. ultralytics/utils/autobatch.py +2 -4
  195. ultralytics/utils/autodevice.py +17 -18
  196. ultralytics/utils/benchmarks.py +32 -46
  197. ultralytics/utils/callbacks/base.py +8 -10
  198. ultralytics/utils/callbacks/clearml.py +5 -13
  199. ultralytics/utils/callbacks/comet.py +32 -46
  200. ultralytics/utils/callbacks/dvc.py +13 -18
  201. ultralytics/utils/callbacks/mlflow.py +4 -5
  202. ultralytics/utils/callbacks/neptune.py +7 -15
  203. ultralytics/utils/callbacks/platform.py +314 -38
  204. ultralytics/utils/callbacks/raytune.py +3 -4
  205. ultralytics/utils/callbacks/tensorboard.py +23 -31
  206. ultralytics/utils/callbacks/wb.py +10 -13
  207. ultralytics/utils/checks.py +99 -76
  208. ultralytics/utils/cpu.py +3 -8
  209. ultralytics/utils/dist.py +8 -12
  210. ultralytics/utils/downloads.py +20 -30
  211. ultralytics/utils/errors.py +6 -14
  212. ultralytics/utils/events.py +2 -4
  213. ultralytics/utils/export/__init__.py +4 -236
  214. ultralytics/utils/export/engine.py +237 -0
  215. ultralytics/utils/export/imx.py +91 -55
  216. ultralytics/utils/export/tensorflow.py +231 -0
  217. ultralytics/utils/files.py +24 -28
  218. ultralytics/utils/git.py +9 -11
  219. ultralytics/utils/instance.py +30 -51
  220. ultralytics/utils/logger.py +212 -114
  221. ultralytics/utils/loss.py +14 -22
  222. ultralytics/utils/metrics.py +126 -155
  223. ultralytics/utils/nms.py +13 -16
  224. ultralytics/utils/ops.py +107 -165
  225. ultralytics/utils/patches.py +33 -21
  226. ultralytics/utils/plotting.py +72 -80
  227. ultralytics/utils/tal.py +25 -39
  228. ultralytics/utils/torch_utils.py +52 -78
  229. ultralytics/utils/tqdm.py +20 -20
  230. ultralytics/utils/triton.py +13 -19
  231. ultralytics/utils/tuner.py +17 -5
  232. dgenerate_ultralytics_headless-8.3.214.dist-info/RECORD +0 -283
  233. {dgenerate_ultralytics_headless-8.3.214.dist-info → dgenerate_ultralytics_headless-8.3.248.dist-info}/WHEEL +0 -0
  234. {dgenerate_ultralytics_headless-8.3.214.dist-info → dgenerate_ultralytics_headless-8.3.248.dist-info}/entry_points.txt +0 -0
  235. {dgenerate_ultralytics_headless-8.3.214.dist-info → dgenerate_ultralytics_headless-8.3.248.dist-info}/licenses/LICENSE +0 -0
  236. {dgenerate_ultralytics_headless-8.3.214.dist-info → dgenerate_ultralytics_headless-8.3.248.dist-info}/top_level.txt +0 -0
@@ -16,8 +16,7 @@ except (ImportError, AssertionError):
16
16
 
17
17
 
18
18
  def _custom_table(x, y, classes, title="Precision Recall Curve", x_title="Recall", y_title="Precision"):
19
- """
20
- Create and log a custom metric visualization to wandb.plot.pr_curve.
19
+ """Create and log a custom metric visualization to wandb.plot.pr_curve.
21
20
 
22
21
  This function crafts a custom metric visualization that mimics the behavior of the default wandb precision-recall
23
22
  curve while allowing for enhanced customization. The visual metric is useful for monitoring model performance across
@@ -61,11 +60,10 @@ def _plot_curve(
61
60
  num_x=100,
62
61
  only_mean=False,
63
62
  ):
64
- """
65
- Log a metric curve visualization.
63
+ """Log a metric curve visualization.
66
64
 
67
- This function generates a metric curve based on input data and logs the visualization to wandb.
68
- The curve can represent aggregated data (mean) or individual class data, depending on the 'only_mean' flag.
65
+ This function generates a metric curve based on input data and logs the visualization to wandb. The curve can
66
+ represent aggregated data (mean) or individual class data, depending on the 'only_mean' flag.
69
67
 
70
68
  Args:
71
69
  x (np.ndarray): Data points for the x-axis with length N.
@@ -105,15 +103,14 @@ def _plot_curve(
105
103
 
106
104
 
107
105
  def _log_plots(plots, step):
108
- """
109
- Log plots to WandB at a specific step if they haven't been logged already.
106
+ """Log plots to WandB at a specific step if they haven't been logged already.
110
107
 
111
- This function checks each plot in the input dictionary against previously processed plots and logs
112
- new or updated plots to WandB at the specified step.
108
+ This function checks each plot in the input dictionary against previously processed plots and logs new or updated
109
+ plots to WandB at the specified step.
113
110
 
114
111
  Args:
115
- plots (dict): Dictionary of plots to log, where keys are plot names and values are dictionaries
116
- containing plot metadata including timestamps.
112
+ plots (dict): Dictionary of plots to log, where keys are plot names and values are dictionaries containing plot
113
+ metadata including timestamps.
117
114
  step (int): The step/epoch at which to log the plots in the WandB run.
118
115
 
119
116
  Notes:
@@ -140,11 +137,11 @@ def on_pretrain_routine_start(trainer):
140
137
 
141
138
  def on_fit_epoch_end(trainer):
142
139
  """Log training metrics and model information at the end of an epoch."""
143
- wb.run.log(trainer.metrics, step=trainer.epoch + 1)
144
140
  _log_plots(trainer.plots, step=trainer.epoch + 1)
145
141
  _log_plots(trainer.validator.plots, step=trainer.epoch + 1)
146
142
  if trainer.epoch == 0:
147
143
  wb.run.log(model_info_for_loggers(trainer), step=trainer.epoch + 1)
144
+ wb.run.log(trainer.metrics, step=trainer.epoch + 1, commit=True) # commit forces sync
148
145
 
149
146
 
150
147
  def on_train_epoch_end(trainer):
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ import ast
5
6
  import functools
6
7
  import glob
7
8
  import inspect
@@ -11,6 +12,7 @@ import platform
11
12
  import re
12
13
  import shutil
13
14
  import subprocess
15
+ import sys
14
16
  import time
15
17
  from importlib import metadata
16
18
  from pathlib import Path
@@ -53,8 +55,7 @@ from ultralytics.utils import (
53
55
 
54
56
 
55
57
  def parse_requirements(file_path=ROOT.parent / "requirements.txt", package=""):
56
- """
57
- Parse a requirements.txt file, ignoring lines that start with '#' and any text after '#'.
58
+ """Parse a requirements.txt file, ignoring lines that start with '#' and any text after '#'.
58
59
 
59
60
  Args:
60
61
  file_path (Path): Path to the requirements.txt file.
@@ -86,8 +87,7 @@ def parse_requirements(file_path=ROOT.parent / "requirements.txt", package=""):
86
87
 
87
88
  @functools.lru_cache
88
89
  def parse_version(version="0.0.0") -> tuple:
89
- """
90
- Convert a version string to a tuple of integers, ignoring any extra non-numeric string attached to the version.
90
+ """Convert a version string to a tuple of integers, ignoring any extra non-numeric string attached to the version.
91
91
 
92
92
  Args:
93
93
  version (str): Version string, i.e. '2.0.1+cpu'
@@ -103,8 +103,7 @@ def parse_version(version="0.0.0") -> tuple:
103
103
 
104
104
 
105
105
  def is_ascii(s) -> bool:
106
- """
107
- Check if a string is composed of only ASCII characters.
106
+ """Check if a string is composed of only ASCII characters.
108
107
 
109
108
  Args:
110
109
  s (str | list | tuple | dict): Input to be checked (all are converted to string for checking).
@@ -116,8 +115,7 @@ def is_ascii(s) -> bool:
116
115
 
117
116
 
118
117
  def check_imgsz(imgsz, stride=32, min_dim=1, max_dim=2, floor=0):
119
- """
120
- Verify image size is a multiple of the given stride in each dimension. If the image size is not a multiple of the
118
+ """Verify image size is a multiple of the given stride in each dimension. If the image size is not a multiple of the
121
119
  stride, update it to the nearest multiple of the stride that is greater than or equal to the given floor value.
122
120
 
123
121
  Args:
@@ -139,7 +137,7 @@ def check_imgsz(imgsz, stride=32, min_dim=1, max_dim=2, floor=0):
139
137
  elif isinstance(imgsz, (list, tuple)):
140
138
  imgsz = list(imgsz)
141
139
  elif isinstance(imgsz, str): # i.e. '640' or '[640,640]'
142
- imgsz = [int(imgsz)] if imgsz.isnumeric() else eval(imgsz)
140
+ imgsz = [int(imgsz)] if imgsz.isnumeric() else ast.literal_eval(imgsz)
143
141
  else:
144
142
  raise TypeError(
145
143
  f"'imgsz={imgsz}' is of invalid type {type(imgsz).__name__}. "
@@ -187,8 +185,7 @@ def check_version(
187
185
  verbose: bool = False,
188
186
  msg: str = "",
189
187
  ) -> bool:
190
- """
191
- Check current version against the required version or range.
188
+ """Check current version against the required version or range.
192
189
 
193
190
  Args:
194
191
  current (str): Current version or package name to get version from.
@@ -268,8 +265,7 @@ def check_version(
268
265
 
269
266
 
270
267
  def check_latest_pypi_version(package_name="ultralytics"):
271
- """
272
- Return the latest version of a PyPI package without downloading or installing it.
268
+ """Return the latest version of a PyPI package without downloading or installing it.
273
269
 
274
270
  Args:
275
271
  package_name (str): The name of the package to find the latest version for.
@@ -289,8 +285,7 @@ def check_latest_pypi_version(package_name="ultralytics"):
289
285
 
290
286
 
291
287
  def check_pip_update_available():
292
- """
293
- Check if a new version of the ultralytics package is available on PyPI.
288
+ """Check if a new version of the ultralytics package is available on PyPI.
294
289
 
295
290
  Returns:
296
291
  (bool): True if an update is available, False otherwise.
@@ -314,8 +309,7 @@ def check_pip_update_available():
314
309
  @ThreadingLocked()
315
310
  @functools.lru_cache
316
311
  def check_font(font="Arial.ttf"):
317
- """
318
- Find font locally or download to user's configuration directory if it does not already exist.
312
+ """Find font locally or download to user's configuration directory if it does not already exist.
319
313
 
320
314
  Args:
321
315
  font (str): Path or name of font.
@@ -344,8 +338,7 @@ def check_font(font="Arial.ttf"):
344
338
 
345
339
 
346
340
  def check_python(minimum: str = "3.8.0", hard: bool = True, verbose: bool = False) -> bool:
347
- """
348
- Check current python version against the required minimum version.
341
+ """Check current python version against the required minimum version.
349
342
 
350
343
  Args:
351
344
  minimum (str): Required minimum version of python.
@@ -359,14 +352,53 @@ def check_python(minimum: str = "3.8.0", hard: bool = True, verbose: bool = Fals
359
352
 
360
353
 
361
354
  @TryExcept()
362
- def check_requirements(requirements=ROOT.parent / "requirements.txt", exclude=(), install=True, cmds=""):
355
+ def check_apt_requirements(requirements):
356
+ """Check if apt packages are installed and install missing ones.
357
+
358
+ Args:
359
+ requirements: List of apt package names to check and install
363
360
  """
364
- Check if installed dependencies meet Ultralytics YOLO models requirements and attempt to auto-update if needed.
361
+ prefix = colorstr("red", "bold", "apt requirements:")
362
+ # Check which packages are missing
363
+ missing_packages = []
364
+ for package in requirements:
365
+ try:
366
+ # Use dpkg -l to check if package is installed
367
+ result = subprocess.run(["dpkg", "-l", package], capture_output=True, text=True, check=False)
368
+ # Check if package is installed (look for "ii" status)
369
+ if result.returncode != 0 or not any(
370
+ line.startswith("ii") and package in line for line in result.stdout.splitlines()
371
+ ):
372
+ missing_packages.append(package)
373
+ except Exception:
374
+ # If check fails, assume package is not installed
375
+ missing_packages.append(package)
376
+
377
+ # Install missing packages if any
378
+ if missing_packages:
379
+ LOGGER.info(
380
+ f"{prefix} Ultralytics requirement{'s' * (len(missing_packages) > 1)} {missing_packages} not found, attempting AutoUpdate..."
381
+ )
382
+ # Optionally update package list first
383
+ cmd = (["sudo"] if is_sudo_available() else []) + ["apt", "update"]
384
+ result = subprocess.run(cmd, check=True, capture_output=True, text=True)
385
+
386
+ # Build and run the install command
387
+ cmd = (["sudo"] if is_sudo_available() else []) + ["apt", "install", "-y"] + missing_packages
388
+ result = subprocess.run(cmd, check=True, capture_output=True, text=True)
389
+
390
+ LOGGER.info(f"{prefix} AutoUpdate success ✅")
391
+ LOGGER.warning(f"{prefix} {colorstr('bold', 'Restart runtime or rerun command for updates to take effect')}\n")
392
+
393
+
394
+ @TryExcept()
395
+ def check_requirements(requirements=ROOT.parent / "requirements.txt", exclude=(), install=True, cmds=""):
396
+ """Check if installed dependencies meet Ultralytics YOLO models requirements and attempt to auto-update if needed.
365
397
 
366
398
  Args:
367
399
  requirements (Path | str | list[str|tuple] | tuple[str]): Path to a requirements.txt file, a single package
368
- requirement as a string, a list of package requirements as strings, or a list containing strings and
369
- tuples of interchangeable packages.
400
+ requirement as a string, a list of package requirements as strings, or a list containing strings and tuples
401
+ of interchangeable packages.
370
402
  exclude (tuple): Tuple of package names to exclude from checking.
371
403
  install (bool): If True, attempt to auto-update packages that don't meet requirements.
372
404
  cmds (str): Additional commands to pass to the pip install command when auto-updating.
@@ -387,6 +419,11 @@ def check_requirements(requirements=ROOT.parent / "requirements.txt", exclude=()
387
419
  >>> check_requirements([("onnxruntime", "onnxruntime-gpu"), "numpy"])
388
420
  """
389
421
  prefix = colorstr("red", "bold", "requirements:")
422
+
423
+ if os.environ.get("ULTRALYTICS_SKIP_REQUIREMENTS_CHECKS", "0") == "1":
424
+ LOGGER.info(f"{prefix} ULTRALYTICS_SKIP_REQUIREMENTS_CHECKS=1 detected, skipping requirements check.")
425
+ return True
426
+
390
427
  if isinstance(requirements, Path): # requirements.txt file
391
428
  file = requirements.resolve()
392
429
  assert file.exists(), f"{prefix} {file} not found, check failed."
@@ -417,22 +454,18 @@ def check_requirements(requirements=ROOT.parent / "requirements.txt", exclude=()
417
454
  def attempt_install(packages, commands, use_uv):
418
455
  """Attempt package installation with uv if available, falling back to pip."""
419
456
  if use_uv:
420
- base = (
421
- f"uv pip install --no-cache-dir {packages} {commands} "
422
- f"--index-strategy=unsafe-best-match --break-system-packages --prerelease=allow"
457
+ # Use --python to explicitly target current interpreter (venv or system)
458
+ # This ensures correct installation when VIRTUAL_ENV env var isn't set
459
+ return subprocess.check_output(
460
+ f'uv pip install --no-cache-dir --python "{sys.executable}" {packages} {commands} '
461
+ f"--index-strategy=unsafe-best-match --break-system-packages",
462
+ shell=True,
463
+ stderr=subprocess.STDOUT,
464
+ text=True,
423
465
  )
424
- try:
425
- return subprocess.check_output(base, shell=True, stderr=subprocess.PIPE, text=True)
426
- except subprocess.CalledProcessError as e:
427
- if e.stderr and "No virtual environment found" in e.stderr:
428
- return subprocess.check_output(
429
- base.replace("uv pip install", "uv pip install --system"),
430
- shell=True,
431
- stderr=subprocess.PIPE,
432
- text=True,
433
- )
434
- raise
435
- return subprocess.check_output(f"pip install --no-cache-dir {packages} {commands}", shell=True, text=True)
466
+ return subprocess.check_output(
467
+ f"pip install --no-cache-dir {packages} {commands}", shell=True, stderr=subprocess.STDOUT, text=True
468
+ )
436
469
 
437
470
  s = " ".join(f'"{x}"' for x in pkgs) # console string
438
471
  if s:
@@ -443,14 +476,18 @@ def check_requirements(requirements=ROOT.parent / "requirements.txt", exclude=()
443
476
  try:
444
477
  t = time.time()
445
478
  assert ONLINE, "AutoUpdate skipped (offline)"
446
- LOGGER.info(attempt_install(s, cmds, use_uv=not ARM64 and check_uv()))
479
+ use_uv = not ARM64 and check_uv() # uv fails on ARM64
480
+ LOGGER.info(attempt_install(s, cmds, use_uv=use_uv))
447
481
  dt = time.time() - t
448
482
  LOGGER.info(f"{prefix} AutoUpdate success ✅ {dt:.1f}s")
449
483
  LOGGER.warning(
450
484
  f"{prefix} {colorstr('bold', 'Restart runtime or rerun command for updates to take effect')}\n"
451
485
  )
452
486
  except Exception as e:
453
- LOGGER.warning(f"{prefix} ❌ {e}")
487
+ msg = f"{prefix} ❌ {e}"
488
+ if hasattr(e, "output") and e.output:
489
+ msg += f"\n{e.output}"
490
+ LOGGER.warning(msg)
454
491
  return False
455
492
  else:
456
493
  return False
@@ -459,8 +496,7 @@ def check_requirements(requirements=ROOT.parent / "requirements.txt", exclude=()
459
496
 
460
497
 
461
498
  def check_torchvision():
462
- """
463
- Check the installed versions of PyTorch and Torchvision to ensure they're compatible.
499
+ """Check the installed versions of PyTorch and Torchvision to ensure they're compatible.
464
500
 
465
501
  This function checks the installed versions of PyTorch and Torchvision, and warns if they're incompatible according
466
502
  to the compatibility table based on: https://github.com/pytorch/vision#installation.
@@ -495,8 +531,7 @@ def check_torchvision():
495
531
 
496
532
 
497
533
  def check_suffix(file="yolo11n.pt", suffix=".pt", msg=""):
498
- """
499
- Check file(s) for acceptable suffix.
534
+ """Check file(s) for acceptable suffix.
500
535
 
501
536
  Args:
502
537
  file (str | list[str]): File or list of files to check.
@@ -512,8 +547,7 @@ def check_suffix(file="yolo11n.pt", suffix=".pt", msg=""):
512
547
 
513
548
 
514
549
  def check_yolov5u_filename(file: str, verbose: bool = True):
515
- """
516
- Replace legacy YOLOv5 filenames with updated YOLOv5u filenames.
550
+ """Replace legacy YOLOv5 filenames with updated YOLOv5u filenames.
517
551
 
518
552
  Args:
519
553
  file (str): Filename to check and potentially update.
@@ -540,8 +574,7 @@ def check_yolov5u_filename(file: str, verbose: bool = True):
540
574
 
541
575
 
542
576
  def check_model_file_from_stem(model="yolo11n"):
543
- """
544
- Return a model filename from a valid model stem.
577
+ """Return a model filename from a valid model stem.
545
578
 
546
579
  Args:
547
580
  model (str): Model stem to check.
@@ -556,8 +589,7 @@ def check_model_file_from_stem(model="yolo11n"):
556
589
 
557
590
 
558
591
  def check_file(file, suffix="", download=True, download_dir=".", hard=True):
559
- """
560
- Search/download file (if necessary), check suffix (if provided), and return path.
592
+ """Search/download file (if necessary), check suffix (if provided), and return path.
561
593
 
562
594
  Args:
563
595
  file (str): File name or path.
@@ -596,8 +628,7 @@ def check_file(file, suffix="", download=True, download_dir=".", hard=True):
596
628
 
597
629
 
598
630
  def check_yaml(file, suffix=(".yaml", ".yml"), hard=True):
599
- """
600
- Search/download YAML file (if necessary) and return path, checking suffix.
631
+ """Search/download YAML file (if necessary) and return path, checking suffix.
601
632
 
602
633
  Args:
603
634
  file (str | Path): File name or path.
@@ -611,8 +642,7 @@ def check_yaml(file, suffix=(".yaml", ".yml"), hard=True):
611
642
 
612
643
 
613
644
  def check_is_path_safe(basedir, path):
614
- """
615
- Check if the resolved path is under the intended directory to prevent path traversal.
645
+ """Check if the resolved path is under the intended directory to prevent path traversal.
616
646
 
617
647
  Args:
618
648
  basedir (Path | str): The intended directory.
@@ -629,8 +659,7 @@ def check_is_path_safe(basedir, path):
629
659
 
630
660
  @functools.lru_cache
631
661
  def check_imshow(warn=False):
632
- """
633
- Check if environment supports image displays.
662
+ """Check if environment supports image displays.
634
663
 
635
664
  Args:
636
665
  warn (bool): Whether to warn if environment doesn't support image displays.
@@ -654,8 +683,7 @@ def check_imshow(warn=False):
654
683
 
655
684
 
656
685
  def check_yolo(verbose=True, device=""):
657
- """
658
- Return a human-readable YOLO software and hardware summary.
686
+ """Return a human-readable YOLO software and hardware summary.
659
687
 
660
688
  Args:
661
689
  verbose (bool): Whether to print verbose information.
@@ -672,7 +700,7 @@ def check_yolo(verbose=True, device=""):
672
700
  # System info
673
701
  gib = 1 << 30 # bytes per GiB
674
702
  ram = psutil.virtual_memory().total
675
- total, used, free = shutil.disk_usage("/")
703
+ total, _used, free = shutil.disk_usage("/")
676
704
  s = f"({os.cpu_count()} CPUs, {ram / gib:.1f} GB RAM, {(total - free) / gib:.1f}/{total / gib:.1f} GB disk)"
677
705
  try:
678
706
  from IPython import display
@@ -691,8 +719,7 @@ def check_yolo(verbose=True, device=""):
691
719
 
692
720
 
693
721
  def collect_system_info():
694
- """
695
- Collect and print relevant system information including OS, Python, RAM, CPU, and CUDA.
722
+ """Collect and print relevant system information including OS, Python, RAM, CPU, and CUDA.
696
723
 
697
724
  Returns:
698
725
  (dict): Dictionary containing system information.
@@ -705,7 +732,7 @@ def collect_system_info():
705
732
  gib = 1 << 30 # bytes per GiB
706
733
  cuda = torch.cuda.is_available()
707
734
  check_yolo()
708
- total, used, free = shutil.disk_usage("/")
735
+ total, _used, free = shutil.disk_usage("/")
709
736
 
710
737
  info_dict = {
711
738
  "OS": platform.platform(),
@@ -752,8 +779,7 @@ def collect_system_info():
752
779
 
753
780
 
754
781
  def check_amp(model):
755
- """
756
- Check the PyTorch Automatic Mixed Precision (AMP) functionality of a YOLO model.
782
+ """Check the PyTorch Automatic Mixed Precision (AMP) functionality of a YOLO model.
757
783
 
758
784
  If the checks fail, it means there are anomalies with AMP on the system that may cause NaN losses or zero-mAP
759
785
  results, so AMP will be disabled during training.
@@ -849,8 +875,7 @@ def check_multiple_install():
849
875
 
850
876
 
851
877
  def print_args(args: dict | None = None, show_file=True, show_func=False):
852
- """
853
- Print function arguments (optional args dict).
878
+ """Print function arguments (optional args dict).
854
879
 
855
880
  Args:
856
881
  args (dict, optional): Arguments to print.
@@ -876,8 +901,7 @@ def print_args(args: dict | None = None, show_file=True, show_func=False):
876
901
 
877
902
 
878
903
  def cuda_device_count() -> int:
879
- """
880
- Get the number of NVIDIA GPUs available in the environment.
904
+ """Get the number of NVIDIA GPUs available in the environment.
881
905
 
882
906
  Returns:
883
907
  (int): The number of NVIDIA GPUs available.
@@ -902,8 +926,7 @@ def cuda_device_count() -> int:
902
926
 
903
927
 
904
928
  def cuda_is_available() -> bool:
905
- """
906
- Check if CUDA is available in the environment.
929
+ """Check if CUDA is available in the environment.
907
930
 
908
931
  Returns:
909
932
  (bool): True if one or more NVIDIA GPUs are available, False otherwise.
@@ -912,8 +935,7 @@ def cuda_is_available() -> bool:
912
935
 
913
936
 
914
937
  def is_rockchip():
915
- """
916
- Check if the current environment is running on a Rockchip SoC.
938
+ """Check if the current environment is running on a Rockchip SoC.
917
939
 
918
940
  Returns:
919
941
  (bool): True if running on a Rockchip SoC, False otherwise.
@@ -932,8 +954,7 @@ def is_rockchip():
932
954
 
933
955
 
934
956
  def is_intel():
935
- """
936
- Check if the system has Intel hardware (CPU or GPU).
957
+ """Check if the system has Intel hardware (CPU or GPU).
937
958
 
938
959
  Returns:
939
960
  (bool): True if Intel hardware is detected, False otherwise.
@@ -953,8 +974,7 @@ def is_intel():
953
974
 
954
975
 
955
976
  def is_sudo_available() -> bool:
956
- """
957
- Check if the sudo command is available in the environment.
977
+ """Check if the sudo command is available in the environment.
958
978
 
959
979
  Returns:
960
980
  (bool): True if the sudo command is available, False otherwise.
@@ -971,8 +991,11 @@ check_torchvision() # check torch-torchvision compatibility
971
991
 
972
992
  # Define constants
973
993
  IS_PYTHON_3_8 = PYTHON_VERSION.startswith("3.8")
994
+ IS_PYTHON_3_9 = PYTHON_VERSION.startswith("3.9")
995
+ IS_PYTHON_3_10 = PYTHON_VERSION.startswith("3.10")
974
996
  IS_PYTHON_3_12 = PYTHON_VERSION.startswith("3.12")
975
997
  IS_PYTHON_3_13 = PYTHON_VERSION.startswith("3.13")
976
998
 
999
+ IS_PYTHON_MINIMUM_3_9 = check_python("3.9", hard=False)
977
1000
  IS_PYTHON_MINIMUM_3_10 = check_python("3.10", hard=False)
978
1001
  IS_PYTHON_MINIMUM_3_12 = check_python("3.12", hard=False)
ultralytics/utils/cpu.py CHANGED
@@ -10,8 +10,7 @@ from pathlib import Path
10
10
 
11
11
 
12
12
  class CPUInfo:
13
- """
14
- Provide cross-platform CPU brand and model information.
13
+ """Provide cross-platform CPU brand and model information.
15
14
 
16
15
  Query platform-specific sources to retrieve a human-readable CPU descriptor and normalize it for consistent
17
16
  presentation across macOS, Linux, and Windows. If platform-specific probing fails, generic platform identifiers are
@@ -71,13 +70,9 @@ class CPUInfo:
71
70
  """Normalize and prettify a raw CPU descriptor string."""
72
71
  s = re.sub(r"\s+", " ", s.strip())
73
72
  s = s.replace("(TM)", "").replace("(tm)", "").replace("(R)", "").replace("(r)", "").strip()
74
- # Normalize common Intel pattern to 'Model Freq'
75
- m = re.search(r"(Intel.*?i\d[\w-]*) CPU @ ([\d.]+GHz)", s, re.I)
76
- if m:
73
+ if m := re.search(r"(Intel.*?i\d[\w-]*) CPU @ ([\d.]+GHz)", s, re.I):
77
74
  return f"{m.group(1)} {m.group(2)}"
78
- # Normalize common AMD Ryzen pattern to 'Model Freq'
79
- m = re.search(r"(AMD.*?Ryzen.*?[\w-]*) CPU @ ([\d.]+GHz)", s, re.I)
80
- if m:
75
+ if m := re.search(r"(AMD.*?Ryzen.*?[\w-]*) CPU @ ([\d.]+GHz)", s, re.I):
81
76
  return f"{m.group(1)} {m.group(2)}"
82
77
  return s
83
78
 
ultralytics/utils/dist.py CHANGED
@@ -10,8 +10,7 @@ from .torch_utils import TORCH_1_9
10
10
 
11
11
 
12
12
  def find_free_network_port() -> int:
13
- """
14
- Find a free port on localhost.
13
+ """Find a free port on localhost.
15
14
 
16
15
  It is useful in single-node training when we don't want to connect to a real main node but have to set the
17
16
  `MASTER_PORT` environment variable.
@@ -27,11 +26,10 @@ def find_free_network_port() -> int:
27
26
 
28
27
 
29
28
  def generate_ddp_file(trainer):
30
- """
31
- Generate a DDP (Distributed Data Parallel) file for multi-GPU training.
29
+ """Generate a DDP (Distributed Data Parallel) file for multi-GPU training.
32
30
 
33
- This function creates a temporary Python file that enables distributed training across multiple GPUs.
34
- The file contains the necessary configuration to initialize the trainer in a distributed environment.
31
+ This function creates a temporary Python file that enables distributed training across multiple GPUs. The file
32
+ contains the necessary configuration to initialize the trainer in a distributed environment.
35
33
 
36
34
  Args:
37
35
  trainer (ultralytics.engine.trainer.BaseTrainer): The trainer containing training configuration and arguments.
@@ -77,8 +75,7 @@ if __name__ == "__main__":
77
75
 
78
76
 
79
77
  def generate_ddp_command(trainer):
80
- """
81
- Generate command for distributed training.
78
+ """Generate command for distributed training.
82
79
 
83
80
  Args:
84
81
  trainer (ultralytics.engine.trainer.BaseTrainer): The trainer containing configuration for distributed training.
@@ -108,11 +105,10 @@ def generate_ddp_command(trainer):
108
105
 
109
106
 
110
107
  def ddp_cleanup(trainer, file):
111
- """
112
- Delete temporary file if created during distributed data parallel (DDP) training.
108
+ """Delete temporary file if created during distributed data parallel (DDP) training.
113
109
 
114
- This function checks if the provided file contains the trainer's ID in its name, indicating it was created
115
- as a temporary file for DDP training, and deletes it if so.
110
+ This function checks if the provided file contains the trainer's ID in its name, indicating it was created as a
111
+ temporary file for DDP training, and deletes it if so.
116
112
 
117
113
  Args:
118
114
  trainer (ultralytics.engine.trainer.BaseTrainer): The trainer used for distributed training.