提交 a5818b28 authored 作者: Glenn Jocher's avatar Glenn Jocher

expired pytorch hub cache bug fix #365

上级 87972469
......@@ -27,8 +27,8 @@ def create(name, pretrained, channels, classes):
Returns:
pytorch model
"""
config = os.path.join(os.path.dirname(__file__), 'models', '%s.yaml' % name) # model.yaml path
try:
config = os.path.join(os.path.dirname(__file__), 'models', '%s.yaml' % name) # model.yaml path
model = Model(config, channels, classes)
if pretrained:
ckpt = '%s.pt' % name # checkpoint filename
......@@ -39,7 +39,7 @@ def create(name, pretrained, channels, classes):
return model
except Exception as e:
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):
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论