ONNX export bug fix #93

This commit is contained in:
Glenn Jocher 2020-06-16 09:59:42 -07:00
parent 8b26e89006
commit e1e3399286

View File

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