Parcourir la source

PyTorch Hub update

5.0
Glenn Jocher il y a 4 ans
Parent
révision
18b4da91e0
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      hubconf.py

+ 1
- 1
hubconf.py Voir le fichier

@@ -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


Chargement…
Annuler
Enregistrer