From 0dec8ffd66bbcbddcb65f40c7df8d645b03c4443 Mon Sep 17 00:00:00 2001 From: Lijun Yu Date: Sun, 14 Jun 2020 14:47:40 -0400 Subject: [PATCH 1/2] path fix for torch hub --- hubconf.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hubconf.py b/hubconf.py index 729dac4cec56..312e57b341ca 100644 --- a/hubconf.py +++ b/hubconf.py @@ -6,6 +6,9 @@ """ dependencies = ['torch', 'yaml'] + +import os + import torch from models.yolo import Model @@ -24,7 +27,8 @@ def create(name, pretrained, channels, classes): Returns: pytorch model """ - model = Model('models/%s.yaml' % name, channels, classes) + config = os.path.join(os.path.dirname(__file__), 'models', '%s.yaml' % name) + model = Model(config, channels, classes) if pretrained: ckpt = '%s.pt' % name # checkpoint filename google_utils.attempt_download(ckpt) # download if not found locally From 4f6c0cf4c54d2237fea7db39b26a4e273cb0687b Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 14 Jun 2020 12:15:14 -0700 Subject: [PATCH 2/2] Update hubconf.py --- hubconf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hubconf.py b/hubconf.py index 312e57b341ca..1ec21d66bea0 100644 --- a/hubconf.py +++ b/hubconf.py @@ -27,12 +27,12 @@ def create(name, pretrained, channels, classes): Returns: pytorch model """ - config = os.path.join(os.path.dirname(__file__), 'models', '%s.yaml' % name) + 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 google_utils.attempt_download(ckpt) # download if not found locally - state_dict = torch.load(ckpt)['model'].state_dict() + state_dict = torch.load(ckpt, map_location=torch.device('cpu'))['model'].state_dict() state_dict = {k: v for k, v in state_dict.items() if model.state_dict()[k].numel() == v.numel()} # filter model.load_state_dict(state_dict, strict=False) # load return model