ultralytics 8.2.50__py3-none-any.whl → 8.2.51__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 +1 -1
- ultralytics/engine/exporter.py +3 -2
- ultralytics/engine/results.py +6 -1
- ultralytics/nn/autobackend.py +3 -2
- ultralytics/utils/downloads.py +1 -1
- {ultralytics-8.2.50.dist-info → ultralytics-8.2.51.dist-info}/METADATA +1 -1
- {ultralytics-8.2.50.dist-info → ultralytics-8.2.51.dist-info}/RECORD +11 -11
- {ultralytics-8.2.50.dist-info → ultralytics-8.2.51.dist-info}/LICENSE +0 -0
- {ultralytics-8.2.50.dist-info → ultralytics-8.2.51.dist-info}/WHEEL +0 -0
- {ultralytics-8.2.50.dist-info → ultralytics-8.2.51.dist-info}/entry_points.txt +0 -0
- {ultralytics-8.2.50.dist-info → ultralytics-8.2.51.dist-info}/top_level.txt +0 -0
ultralytics/__init__.py
CHANGED
ultralytics/engine/exporter.py
CHANGED
|
@@ -686,9 +686,10 @@ class Exporter:
|
|
|
686
686
|
import tensorrt as trt # noqa
|
|
687
687
|
except ImportError:
|
|
688
688
|
if LINUX:
|
|
689
|
-
check_requirements("tensorrt"
|
|
689
|
+
check_requirements("tensorrt>7.0.0,<=10.1.0")
|
|
690
690
|
import tensorrt as trt # noqa
|
|
691
|
-
check_version(trt.__version__, "7.0.0", hard=True)
|
|
691
|
+
check_version(trt.__version__, ">=7.0.0", hard=True)
|
|
692
|
+
check_version(trt.__version__, "<=10.1.0", msg="https://github.com/ultralytics/ultralytics/pull/14239")
|
|
692
693
|
|
|
693
694
|
# Setup and checks
|
|
694
695
|
LOGGER.info(f"\n{prefix} starting export with TensorRT {trt.__version__}...")
|
ultralytics/engine/results.py
CHANGED
|
@@ -120,7 +120,12 @@ class Results(SimpleClass):
|
|
|
120
120
|
boxes (torch.tensor, optional): A 2D tensor of bounding box coordinates for each detection.
|
|
121
121
|
masks (torch.tensor, optional): A 3D tensor of detection masks, where each mask is a binary image.
|
|
122
122
|
probs (torch.tensor, optional): A 1D tensor of probabilities of each class for classification task.
|
|
123
|
-
keypoints (torch.tensor, optional): A 2D tensor of keypoint coordinates for each detection.
|
|
123
|
+
keypoints (torch.tensor, optional): A 2D tensor of keypoint coordinates for each detection. For default pose
|
|
124
|
+
model, Keypoint indices for human body pose estimation are:
|
|
125
|
+
0: Nose, 1: Left Eye, 2: Right Eye, 3: Left Ear, 4: Right Ear
|
|
126
|
+
5: Left Shoulder, 6: Right Shoulder, 7: Left Elbow, 8: Right Elbow
|
|
127
|
+
9: Left Wrist, 10: Right Wrist, 11: Left Hip, 12: Right Hip
|
|
128
|
+
13: Left Knee, 14: Right Knee, 15: Left Ankle, 16: Right Ankle
|
|
124
129
|
obb (torch.tensor, optional): A 2D tensor of oriented bounding box coordinates for each detection.
|
|
125
130
|
speed (dict, optional): A dictionary containing preprocess, inference, and postprocess speeds (ms/image).
|
|
126
131
|
|
ultralytics/nn/autobackend.py
CHANGED
|
@@ -225,9 +225,10 @@ class AutoBackend(nn.Module):
|
|
|
225
225
|
import tensorrt as trt # noqa https://developer.nvidia.com/nvidia-tensorrt-download
|
|
226
226
|
except ImportError:
|
|
227
227
|
if LINUX:
|
|
228
|
-
check_requirements("tensorrt"
|
|
228
|
+
check_requirements("tensorrt>7.0.0,<=10.1.0")
|
|
229
229
|
import tensorrt as trt # noqa
|
|
230
|
-
check_version(trt.__version__, "7.0.0", hard=True)
|
|
230
|
+
check_version(trt.__version__, ">=7.0.0", hard=True)
|
|
231
|
+
check_version(trt.__version__, "<=10.1.0", msg="https://github.com/ultralytics/ultralytics/pull/14239")
|
|
231
232
|
if device.type == "cpu":
|
|
232
233
|
device = torch.device("cuda:0")
|
|
233
234
|
Binding = namedtuple("Binding", ("name", "dtype", "shape", "data", "ptr"))
|
ultralytics/utils/downloads.py
CHANGED
|
@@ -22,7 +22,7 @@ GITHUB_ASSETS_NAMES = (
|
|
|
22
22
|
+ [f"yolov3{k}u.pt" for k in ("", "-spp", "-tiny")]
|
|
23
23
|
+ [f"yolov8{k}-world.pt" for k in "smlx"]
|
|
24
24
|
+ [f"yolov8{k}-worldv2.pt" for k in "smlx"]
|
|
25
|
-
+ [f"yolov9{k}.pt" for k in "
|
|
25
|
+
+ [f"yolov9{k}.pt" for k in "tsmce"]
|
|
26
26
|
+ [f"yolov10{k}.pt" for k in "nsmblx"]
|
|
27
27
|
+ [f"yolo_nas_{k}.pt" for k in "sml"]
|
|
28
28
|
+ [f"sam_{k}.pt" for k in "bl"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ultralytics
|
|
3
|
-
Version: 8.2.
|
|
3
|
+
Version: 8.2.51
|
|
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
|
|
@@ -7,7 +7,7 @@ tests/test_explorer.py,sha256=NcxSJeB6FxwkN09hQl7nnQL--HjfHB_WcZk0mEmBNHI,2215
|
|
|
7
7
|
tests/test_exports.py,sha256=Uezf3OatpPHlo5qoPw-2kqkZxuMCF9L4XF2riD4vmII,8225
|
|
8
8
|
tests/test_integrations.py,sha256=xglcfMPjfVh346PV8WTpk6tBxraCXEFJEQyyJMr5tyU,6064
|
|
9
9
|
tests/test_python.py,sha256=80Iy-sn3qHBJ5Vg_mRbplj5CbCZNUNvikP4e2f2onnM,21728
|
|
10
|
-
ultralytics/__init__.py,sha256=
|
|
10
|
+
ultralytics/__init__.py,sha256=EFzpzFAbKCfmjlqt0ViyJlNJ2mBKN6cu2y0PErqXKtE,694
|
|
11
11
|
ultralytics/assets/bus.jpg,sha256=wCAZxJecGR63Od3ZRERe9Aja1Weayrb9Ug751DS_vGM,137419
|
|
12
12
|
ultralytics/assets/zidane.jpg,sha256=Ftc4aeMmen1O0A3o6GCDO9FlfBslLpTAw0gnetx7bts,50427
|
|
13
13
|
ultralytics/cfg/__init__.py,sha256=MqUsV-Mdk80dO64yY7JmplEO0Awb-25Lfx4YC9QYxhc,26210
|
|
@@ -97,10 +97,10 @@ ultralytics/data/explorer/utils.py,sha256=EvvukQiQUTBrsZznmMnyEX2EqTuwZo_Geyc8yf
|
|
|
97
97
|
ultralytics/data/explorer/gui/__init__.py,sha256=mHtJuK4hwF8cuV-VHDc7tp6u6D1gHz2Z7JI8grmQDTs,42
|
|
98
98
|
ultralytics/data/explorer/gui/dash.py,sha256=CPlFIIhf53j_YVAqealsC3AbcztdPqZxfniQcBnlKK4,10042
|
|
99
99
|
ultralytics/engine/__init__.py,sha256=mHtJuK4hwF8cuV-VHDc7tp6u6D1gHz2Z7JI8grmQDTs,42
|
|
100
|
-
ultralytics/engine/exporter.py,sha256=
|
|
100
|
+
ultralytics/engine/exporter.py,sha256=zu9ghMrMLnkFpQuPH1ozs4b7bjJKPhrN0yQAHa1lFL4,58648
|
|
101
101
|
ultralytics/engine/model.py,sha256=8qD5irabp8BF7bBZGwztCu8yAVQQp1kksYSea9EhdEo,39078
|
|
102
102
|
ultralytics/engine/predictor.py,sha256=W58kDCFH2AfoFzpGbos3k8zUEVsLunBuM8sc2B64rPY,17449
|
|
103
|
-
ultralytics/engine/results.py,sha256=
|
|
103
|
+
ultralytics/engine/results.py,sha256=5MevvBz0E-cpDf55FqweInlKdcQPb7sz0EgZSROJqw4,35817
|
|
104
104
|
ultralytics/engine/trainer.py,sha256=K3I7HWtgt72FH91Wl8La8Wl9zgg4TN-AiYIGGWjKGKw,35447
|
|
105
105
|
ultralytics/engine/tuner.py,sha256=iZrgMmXSDpfuDu4bdFRflmAsscys2-8W8qAGxSyOVJE,11844
|
|
106
106
|
ultralytics/engine/validator.py,sha256=Y21Uo8_Zto4qjk_YqQk6k7tyfpq_Qk9cfjeXeyDRxs8,14643
|
|
@@ -164,7 +164,7 @@ ultralytics/models/yolo/world/__init__.py,sha256=3VTH0q4NOt2EWRom15yCymvmvm0Etp2
|
|
|
164
164
|
ultralytics/models/yolo/world/train.py,sha256=acYN2-onL69LrL4av6_hY2r5AY0urC0WViDstn7npfI,3686
|
|
165
165
|
ultralytics/models/yolo/world/train_world.py,sha256=IsnCEVt6DcM9lUskCKmIN-M8MM79xLpwTRqRoAHUnZ4,4857
|
|
166
166
|
ultralytics/nn/__init__.py,sha256=4BPLHY89xEM_al5uK0aOmFgiML6CMGEZbezxOvTjOEs,587
|
|
167
|
-
ultralytics/nn/autobackend.py,sha256=
|
|
167
|
+
ultralytics/nn/autobackend.py,sha256=vtCvcYTyF2l4KeG5N-PD8FhmPx9pca92mmGaHdQuUfE,31258
|
|
168
168
|
ultralytics/nn/tasks.py,sha256=aoQyGuFQ3GbPj42cfZDfkq5m5Q5Ec_045PW20d_-kv8,45837
|
|
169
169
|
ultralytics/nn/modules/__init__.py,sha256=mARjWk83WPYF5phXhXfPbAu2ZohtdbHdi5zzoxyMubo,2553
|
|
170
170
|
ultralytics/nn/modules/block.py,sha256=DIXowCZn_Luc5VgGQEGXi34fqeiz_bhaNT48zEzguDM,34491
|
|
@@ -196,7 +196,7 @@ ultralytics/utils/autobatch.py,sha256=gPFcREMsMHRAuTQiBnNZ9Mm1XNqmQW-uMPhveDFEQ_
|
|
|
196
196
|
ultralytics/utils/benchmarks.py,sha256=tDX7wu0TpMMlEQDOFqfkjxl156ssS7Lh_5tFWIXdJfg,23549
|
|
197
197
|
ultralytics/utils/checks.py,sha256=PDY1eHlsyDVEIiKRjvb81uz2jniL1MqgP_TmXH_78KM,28379
|
|
198
198
|
ultralytics/utils/dist.py,sha256=NDFga-uKxkBX2zLxFHSene_cCiGQJoyOeCXcN9JIOIk,2358
|
|
199
|
-
ultralytics/utils/downloads.py,sha256=
|
|
199
|
+
ultralytics/utils/downloads.py,sha256=jrCBj_CmAIMd3uGVXwqyWlsl__MIRCgwqTp8t1xmdlc,21684
|
|
200
200
|
ultralytics/utils/errors.py,sha256=GqP_Jgj_n0paxn8OMhn3DTCgoNkB2WjUcUaqs-M6SQk,816
|
|
201
201
|
ultralytics/utils/files.py,sha256=TVfY0Wi5IsUc4YdsDzC0dAg-jAP5exYvwqB3VmXhDLY,6761
|
|
202
202
|
ultralytics/utils/instance.py,sha256=5daM5nkxBv9hr5QzyII8zmuFj24hHuNtcr4EMCHAtpY,15654
|
|
@@ -220,9 +220,9 @@ ultralytics/utils/callbacks/neptune.py,sha256=5Z3ua5YBTUS56FH8VQKQG1aaIo9fH8GEyz
|
|
|
220
220
|
ultralytics/utils/callbacks/raytune.py,sha256=ODVYzy-CoM4Uge0zjkh3Hnh9nF2M0vhDrSenXnvcizw,705
|
|
221
221
|
ultralytics/utils/callbacks/tensorboard.py,sha256=QEgOVhUqY9akOs5TJIwz1Rvn6l32xWLpOxlwEyWF0B8,4136
|
|
222
222
|
ultralytics/utils/callbacks/wb.py,sha256=9-fjQIdLjr3b73DTE3rHO171KvbH1VweJ-bmbv-rqTw,6747
|
|
223
|
-
ultralytics-8.2.
|
|
224
|
-
ultralytics-8.2.
|
|
225
|
-
ultralytics-8.2.
|
|
226
|
-
ultralytics-8.2.
|
|
227
|
-
ultralytics-8.2.
|
|
228
|
-
ultralytics-8.2.
|
|
223
|
+
ultralytics-8.2.51.dist-info/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
|
|
224
|
+
ultralytics-8.2.51.dist-info/METADATA,sha256=6jbSsGF3uCQiaNtyk7tmIrbxnvRJdZg46JkXNX5KcUc,41217
|
|
225
|
+
ultralytics-8.2.51.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
|
226
|
+
ultralytics-8.2.51.dist-info/entry_points.txt,sha256=YM_wiKyTe9yRrsEfqvYolNO5ngwfoL4-NwgKzc8_7sI,93
|
|
227
|
+
ultralytics-8.2.51.dist-info/top_level.txt,sha256=XP49TwiMw4QGsvTLSYiJhz1xF_k7ev5mQ8jJXaXi45Q,12
|
|
228
|
+
ultralytics-8.2.51.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|