소스 검색

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…
취소
저장