Hubconf.py bug fix (#3007)

This commit is contained in:
Glenn Jocher 2021-05-01 18:15:17 +02:00 committed by GitHub
parent 7c89c829e3
commit 31ee54c28c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,7 @@ def create(name, pretrained=True, channels=3, classes=80, autoshape=True, verbos
def custom(path='path/to/model.pt', autoshape=True, verbose=True):
# YOLOv5 custom or local model
return create(path, autoshape, verbose)
return create(path, autoshape=autoshape, verbose=verbose)
def yolov5s(pretrained=True, channels=3, classes=80, autoshape=True, verbose=True):

View File

@ -21,6 +21,7 @@ def attempt_download(file, repo='ultralytics/yolov5'):
file = Path(str(file).strip().replace("'", ''))
if not file.exists():
file.parent.mkdir(parents=True, exist_ok=True) # make parent dir (if required)
try:
response = requests.get(f'https://api.github.com/repos/{repo}/releases/latest').json() # github api
assets = [x['name'] for x in response['assets']] # release assets, i.e. ['yolov5s.pt', 'yolov5m.pt', ...]