Skip to content

Commit

Permalink
Add export.py ONNX inference suggestion (#4146)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher authored Jul 25, 2021
1 parent d17b45e commit 6e4358f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion export.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +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}'")
except Exception as e:
print(f'{prefix} export failure: {e}')

Expand All @@ -94,7 +95,7 @@ def export_coreml(model, img, file):
model.save(f)
print(f'{prefix} export success, saved as {f} ({file_size(f):.1f} MB)')
except Exception as e:
print(f'{prefix} export failure: {e}')
print(f'\n{prefix} export failure: {e}')


def run(weights='./yolov5s.pt', # weights path
Expand Down

0 comments on commit 6e4358f

Please sign in to comment.