Skip to content

Commit f364845

Browse files
authored
Merge pull request #1152 from cabelo:yolov8x
Added and tested yolov8x model.
2 parents 799cfd2 + a509930 commit f364845

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

testdata/dnn/download_models.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,9 +1009,20 @@ def is_archive(self):
10091009
filename='onnx/models/yolov6n.onnx'),
10101010
Model(
10111011
name='yolov8n',
1012-
url='https://dl.opencv.org/models/yolov8/yolov8n.onnx',
1012+
url=[
1013+
'https://huggingface.co/cabelo/yolov8/resolve/main/yolov8n.onnx?download=true',
1014+
'https://dl.opencv.org/models/yolov8/yolov8n.onnx'
1015+
],
10131016
sha='136807b88d0b02bc226bdeb9741141d857752e10',
10141017
filename='onnx/models/yolov8n.onnx'),
1018+
Model(
1019+
name='yolov8x',
1020+
url=[
1021+
'https://huggingface.co/cabelo/yolov8/resolve/main/yolov8x.onnx?download=true',
1022+
'https://dl.opencv.org/models/yolov8/yolov8x.onnx'
1023+
],
1024+
sha='462f15d668c046d38e27d3df01fe8142dd004cb4',
1025+
filename='onnx/models/yolov8x.onnx'),
10151026

10161027
Model(
10171028
name='yolo_nas_s',

0 commit comments

Comments
 (0)