mirror of
https://github.com/ultralytics/yolov5.git
synced 2025-06-03 14:49:29 +08:00
ONNX export bug fix #93
This commit is contained in:
parent
8b26e89006
commit
e1e3399286
@ -25,7 +25,7 @@ if __name__ == '__main__':
|
||||
|
||||
# Load pytorch model
|
||||
google_utils.attempt_download(opt.weights)
|
||||
model = torch.load(opt.weights, map_location=torch.device('cpu'))['model']
|
||||
model = torch.load(opt.weights, map_location=torch.device('cpu'))['model'].float()
|
||||
model.eval()
|
||||
model.fuse()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user