expired pytorch hub cache bug fix #365
This commit is contained in:
parent
8797246948
commit
a5818b280e
|
|
@ -27,8 +27,8 @@ def create(name, pretrained, channels, classes):
|
||||||
Returns:
|
Returns:
|
||||||
pytorch model
|
pytorch model
|
||||||
"""
|
"""
|
||||||
try:
|
|
||||||
config = os.path.join(os.path.dirname(__file__), 'models', '%s.yaml' % name) # model.yaml path
|
config = os.path.join(os.path.dirname(__file__), 'models', '%s.yaml' % name) # model.yaml path
|
||||||
|
try:
|
||||||
model = Model(config, channels, classes)
|
model = Model(config, channels, classes)
|
||||||
if pretrained:
|
if pretrained:
|
||||||
ckpt = '%s.pt' % name # checkpoint filename
|
ckpt = '%s.pt' % name # checkpoint filename
|
||||||
|
|
@ -39,7 +39,7 @@ def create(name, pretrained, channels, classes):
|
||||||
return model
|
return model
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
help_url = 'https://github.com/ultralytics/yolov5/issues/36'
|
help_url = 'https://github.com/ultralytics/yolov5/issues/36'
|
||||||
print('%s\nCache is out of date. Delete cache and retry. See %s for help.' % (e, help_url))
|
print('%s\nCache maybe be out of date. Delete cache and retry. See %s for help.' % (e, help_url))
|
||||||
|
|
||||||
|
|
||||||
def yolov5s(pretrained=False, channels=3, classes=80):
|
def yolov5s(pretrained=False, channels=3, classes=80):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue