Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
natke committed Feb 15, 2024
1 parent 11b399d commit dcb48d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/tutorials/mobile/pose-detection.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ python yolov8_pose_e2e.py
```

After the script has run, you will see one PyTorch model and two ONNX models:
* yolov8n-pose.pt: The original Yolov8 PyTorch model
* yolov8n-pose.onnx: The exported Yolov8 ONNX model
* yolov8n-pose.with_pre_post_processing.onnx: The ONNX model with pre and post processing included in the model
* `yolov8n-pose.pt`: The original Yolov8 PyTorch model
* `yolov8n-pose.onnx`: The exported Yolov8 ONNX model
* `yolov8n-pose.with_pre_post_processing.onnx`: The ONNX model with pre and post processing included in the model


## Run examples of pose detection

You can use the same script to run the model, supplying your own image to detect poses.

```bash
pytthon yolov8_pose_e2e.py --input_image person.jpg
python yolov8_pose_e2e.py --input_image person.jpg
```

And the output is drawn on the original image!
Expand Down

0 comments on commit dcb48d1

Please sign in to comment.