Skip to content

Commit

Permalink
attempt_load() deserialize fix (ultralytics#8051)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher authored and tdhooghe committed Jun 10, 2022
1 parent a75f79b commit b140593
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/experimental.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def attempt_load(weights, device=None, inplace=True, fuse=True):
# Loads an ensemble of models weights=[a,b,c] or a single model weights=[a] or weights=a
model = Ensemble()
for w in weights if isinstance(weights, list) else [weights]:
ckpt = torch.load(attempt_download(w))
ckpt = (ckpt.get('ema') or ckpt['model']).to(device).float() # FP32 model
ckpt = torch.load(attempt_download(w), map_location=device)
ckpt = (ckpt.get('ema') or ckpt['model']).float() # FP32 model
model.append(ckpt.fuse().eval() if fuse else ckpt.eval()) # fused or un-fused model in eval mode

# Compatibility updates
Expand Down

0 comments on commit b140593

Please sign in to comment.