ソースを参照

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


読み込み中…
キャンセル
保存