瀏覽代碼

PyTorch Hub update

5.0
Glenn Jocher 4 年之前
父節點
當前提交
18b4da91e0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      hubconf.py

+ 1
- 1
hubconf.py 查看文件

@@ -29,7 +29,7 @@ def create(name, pretrained, channels, classes):
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 = {k: v for k, v in state_dict if model.state_dict()[k].numel() == v.numel()} # filter
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


Loading…
取消
儲存