ultralytics 8.0.186 add Open Images V7 models (#5070)

This commit is contained in:
Glenn Jocher 2023-09-25 01:15:26 +02:00 committed by GitHub
parent a9033118cf
commit eb976f5ad2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 152 additions and 96 deletions

View file

@ -339,8 +339,8 @@ def test_utils_init():
def test_utils_checks():
from ultralytics.utils.checks import (check_imgsz, check_imshow, check_requirements, check_yolov5u_filename,
git_describe, print_args)
from ultralytics.utils.checks import (check_imgsz, check_imshow, check_requirements, check_version,
check_yolov5u_filename, git_describe, print_args)
check_yolov5u_filename('yolov5n.pt')
# check_imshow(warn=True)
@ -348,6 +348,7 @@ def test_utils_checks():
check_requirements() # check requirements.txt
check_imgsz([600, 600], max_dim=1)
check_imshow()
check_version('ultralytics', '8.0.0')
print_args()