Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug-fix] YOLOv8 export docs update #1597

Merged
merged 4 commits into from
Jun 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sparseml/yolov8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ To export the trained model to ONNX format, execute the appropriate
CLI command and specify the path to the `.pt` model (`--model`):

```bash
sparseml.ultralytics.export --model /.../model.pt
sparseml.ultralytics.export_onnx --model /.../model.pt
```

To look up optional arguments for the `export` command, run:

```bash
sparseml.ultralytics.export -h
sparseml.ultralytics.export_onnx --help
```

The resulting exported model will be saved in the appropriate directory structure:
Expand Down
Loading