Skip to content

Commit

Permalink
Simplify ONNX inference command (#4405)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Aug 13, 2021
1 parent 3e7c59a commit 57c342a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion export.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def export_onnx(model, img, file, opset, train, dynamic, simplify):
except Exception as e:
print(f'{prefix} simplifier failure: {e}')
print(f'{prefix} export success, saved as {f} ({file_size(f):.1f} MB)')
print(f"{prefix} run --dynamic ONNX model inference with detect.py: 'python detect.py --weights {f}'")
print(f"{prefix} run --dynamic ONNX model inference with: 'python detect.py --weights {f}'")
except Exception as e:
print(f'{prefix} export failure: {e}')

Expand Down

0 comments on commit 57c342a

Please sign in to comment.