ultralytics 8.1.46__py3-none-any.whl → 8.1.47__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.

Potentially problematic release.


This version of ultralytics might be problematic. Click here for more details.

ultralytics/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # Ultralytics YOLO 🚀, AGPL-3.0 license
2
2
 
3
- __version__ = "8.1.46"
3
+ __version__ = "8.1.47"
4
4
 
5
5
  from ultralytics.data.explorer.explorer import Explorer
6
6
  from ultralytics.models import RTDETR, SAM, YOLO, YOLOWorld
@@ -529,16 +529,12 @@ class Exporter:
529
529
  f"or in {ROOT}. See PNNX repo for full installation instructions."
530
530
  )
531
531
  system = "macos" if MACOS else "windows" if WINDOWS else "linux-aarch64" if ARM64 else "linux"
532
-
533
- # PNNX link fixed at 20240226 due to bug in 20240410
534
- # try:
535
- # _, assets = get_github_assets(repo="pnnx/pnnx", retry=True)
536
- # url = [x for x in assets if f"{system}.zip" in x][0]
537
- # except Exception as e:
538
- # url = f"https://github.com/pnnx/pnnx/releases/download/20240226/pnnx-20240226-{system}.zip"
539
- # LOGGER.warning(f"{prefix} WARNING ⚠️ PNNX GitHub assets not found: {e}, using default {url}")
540
-
541
- url = f"https://github.com/pnnx/pnnx/releases/download/20240226/pnnx-20240226-{system}.zip"
532
+ try:
533
+ _, assets = get_github_assets(repo="pnnx/pnnx", retry=True)
534
+ url = [x for x in assets if f"{system}.zip" in x][0]
535
+ except Exception as e:
536
+ url = f"https://github.com/pnnx/pnnx/releases/download/20240410/pnnx-20240410-{system}.zip"
537
+ LOGGER.warning(f"{prefix} WARNING ⚠️ PNNX GitHub assets not found: {e}, using default {url}")
542
538
  asset = attempt_download_asset(url, repo="pnnx/pnnx", release="latest")
543
539
  if check_is_path_safe(Path.cwd(), asset): # avoid path traversal security vulnerability
544
540
  unzip_dir = Path(asset).with_suffix("")
@@ -540,7 +540,8 @@ class AutoBackend(nn.Module):
540
540
  mat_in = self.pyncnn.Mat(im[0].cpu().numpy())
541
541
  with self.net.create_extractor() as ex:
542
542
  ex.input(self.net.input_names()[0], mat_in)
543
- y = [np.array(ex.extract(x)[1])[None] for x in self.net.output_names()]
543
+ # WARNING: 'output_names' sorted as a temporary fix for https://github.com/pnnx/pnnx/issues/130
544
+ y = [np.array(ex.extract(x)[1])[None] for x in sorted(self.net.output_names())]
544
545
 
545
546
  # NVIDIA Triton Inference Server
546
547
  elif self.triton:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultralytics
3
- Version: 8.1.46
3
+ Version: 8.1.47
4
4
  Summary: Ultralytics YOLOv8 for SOTA object detection, multi-object tracking, instance segmentation, pose estimation and image classification.
5
5
  Author: Glenn Jocher, Ayush Chaurasia, Jing Qiu
6
6
  Maintainer: Glenn Jocher, Ayush Chaurasia, Jing Qiu
@@ -64,6 +64,7 @@ Provides-Extra: export
64
64
  Requires-Dist: onnx >=1.12.0 ; extra == 'export'
65
65
  Requires-Dist: openvino >=2024.0.0 ; extra == 'export'
66
66
  Requires-Dist: numpy ==1.23.5 ; (platform_machine == "aarch64") and extra == 'export'
67
+ Requires-Dist: h5py !=3.11.0 ; (platform_machine == "aarch64") and extra == 'export'
67
68
  Requires-Dist: coremltools >=7.0 ; (platform_system != "Windows" and python_version <= "3.11") and extra == 'export'
68
69
  Requires-Dist: tensorflow <=2.13.1 ; (python_version <= "3.11") and extra == 'export'
69
70
  Requires-Dist: tensorflowjs >=3.9.0 ; (python_version <= "3.11") and extra == 'export'
@@ -1,4 +1,4 @@
1
- ultralytics/__init__.py,sha256=i5cjHS2lih5Cyjb9oi_FJ2xiNF4JWREpg0Kty0F48Gk,633
1
+ ultralytics/__init__.py,sha256=XD0j3etF8NYBd0ofpgpF4ir1wy9DvXtMNzbgbVF8nhs,633
2
2
  ultralytics/assets/bus.jpg,sha256=wCAZxJecGR63Od3ZRERe9Aja1Weayrb9Ug751DS_vGM,137419
3
3
  ultralytics/assets/zidane.jpg,sha256=Ftc4aeMmen1O0A3o6GCDO9FlfBslLpTAw0gnetx7bts,50427
4
4
  ultralytics/cfg/__init__.py,sha256=ugSQqHCg31bAE9rwhVrnLMNzKLShr9JxDFcN6kBTbUk,21316
@@ -78,7 +78,7 @@ ultralytics/data/explorer/utils.py,sha256=EvvukQiQUTBrsZznmMnyEX2EqTuwZo_Geyc8yf
78
78
  ultralytics/data/explorer/gui/__init__.py,sha256=mHtJuK4hwF8cuV-VHDc7tp6u6D1gHz2Z7JI8grmQDTs,42
79
79
  ultralytics/data/explorer/gui/dash.py,sha256=2oAbNroR2lfS45v53M1sRqZklLXbbj6qXqNxvplulC0,10087
80
80
  ultralytics/engine/__init__.py,sha256=mHtJuK4hwF8cuV-VHDc7tp6u6D1gHz2Z7JI8grmQDTs,42
81
- ultralytics/engine/exporter.py,sha256=eRd_CNnNjgwmCn6JPCqr70VOEsWQ2yiBOmTdBUGLNt8,54605
81
+ ultralytics/engine/exporter.py,sha256=tn6T_jFQYXhLAabAaOv6lnpkTPOBEyHOoZDN1F-bBDs,54422
82
82
  ultralytics/engine/model.py,sha256=QkNRSxYkmr3wM9iFgsfszmenHMdu2KTuT_yrSL-BA7o,39830
83
83
  ultralytics/engine/predictor.py,sha256=wQRKdWGDTP5A6CS0gTC6U3RPDMhP3QkEzWSPm6eqCkU,17022
84
84
  ultralytics/engine/results.py,sha256=MvrOBrBlRF7kbL-QwysMf9mIDy_lwQBTTYvy1x1FMME,30667
@@ -145,7 +145,7 @@ ultralytics/models/yolo/world/__init__.py,sha256=3VTH0q4NOt2EWRom15yCymvmvm0Etp2
145
145
  ultralytics/models/yolo/world/train.py,sha256=acYN2-onL69LrL4av6_hY2r5AY0urC0WViDstn7npfI,3686
146
146
  ultralytics/models/yolo/world/train_world.py,sha256=ICPsYNbuPkq_qf3FHl2YJ-q3g7ik0pI-zhMpLmHa5-4,4805
147
147
  ultralytics/nn/__init__.py,sha256=4BPLHY89xEM_al5uK0aOmFgiML6CMGEZbezxOvTjOEs,587
148
- ultralytics/nn/autobackend.py,sha256=tDTeUUA86fqgbUzJ5yvQVNHb8aG3KCyLhraDT1VJ-1U,30316
148
+ ultralytics/nn/autobackend.py,sha256=tQRqd7l0MvPhoI2tOclaDtOFEMZN0zJJp3BJQ7uqRNU,30436
149
149
  ultralytics/nn/tasks.py,sha256=a3FSkIUErlE7qI506ye5vGggqzMxqXWDkIbbLD4AGyI,43623
150
150
  ultralytics/nn/modules/__init__.py,sha256=KzLoyn2ldfReiQL8H8xsMC49Xvtb8Kv9ikE5Q3OBoAs,2326
151
151
  ultralytics/nn/modules/block.py,sha256=smIz3oNTDA7UKrAH5FfSMh08C12-avgWTeIkbgZIv18,25251
@@ -198,9 +198,9 @@ ultralytics/utils/callbacks/neptune.py,sha256=5Z3ua5YBTUS56FH8VQKQG1aaIo9fH8GEyz
198
198
  ultralytics/utils/callbacks/raytune.py,sha256=ODVYzy-CoM4Uge0zjkh3Hnh9nF2M0vhDrSenXnvcizw,705
199
199
  ultralytics/utils/callbacks/tensorboard.py,sha256=Z1veCVcn9THPhdplWuIzwlsW2yF7y-On9IZIk3khM0Y,4135
200
200
  ultralytics/utils/callbacks/wb.py,sha256=woCQVuZzqtM5KnwxIibcfM3sFBYojeMPnv11jrRaIQA,6674
201
- ultralytics-8.1.46.dist-info/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
202
- ultralytics-8.1.46.dist-info/METADATA,sha256=tbSxwlUsVrE2EMwEmmMO7WGusSYBSugNmeC87Q9Nqxw,40416
203
- ultralytics-8.1.46.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
204
- ultralytics-8.1.46.dist-info/entry_points.txt,sha256=YM_wiKyTe9yRrsEfqvYolNO5ngwfoL4-NwgKzc8_7sI,93
205
- ultralytics-8.1.46.dist-info/top_level.txt,sha256=XP49TwiMw4QGsvTLSYiJhz1xF_k7ev5mQ8jJXaXi45Q,12
206
- ultralytics-8.1.46.dist-info/RECORD,,
201
+ ultralytics-8.1.47.dist-info/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
202
+ ultralytics-8.1.47.dist-info/METADATA,sha256=qX3m7_T1AABWKRRnPb-o9oJhzhVM_ugXDqoSYzAgWTg,40501
203
+ ultralytics-8.1.47.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
204
+ ultralytics-8.1.47.dist-info/entry_points.txt,sha256=YM_wiKyTe9yRrsEfqvYolNO5ngwfoL4-NwgKzc8_7sI,93
205
+ ultralytics-8.1.47.dist-info/top_level.txt,sha256=XP49TwiMw4QGsvTLSYiJhz1xF_k7ev5mQ8jJXaXi45Q,12
206
+ ultralytics-8.1.47.dist-info/RECORD,,