Skip to content

Commit 6b48c01

Browse files
committed
Replace Yolov8 with YOLOv8
1 parent 51b9439 commit 6b48c01

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: docs/tutorials/mobile/pose-detection.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Learn how to build and run ONNX models with built-in pre and post processing for
1717
* TOC placeholder
1818
{:toc}
1919

20-
## Object detection with Yolov8
20+
## Object detection with YOLOv8
2121

2222
You can find the full source code for the [Android](https://github.com/microsoft/ app in the ONNX Runtime inference examples repository.
2323

@@ -44,8 +44,8 @@ python yolo_e2e.py [--test_image <image to test on>]
4444
```
4545

4646
After the script has run, you will see one PyTorch model and two ONNX models:
47-
* `yolov8n.pt`: The original Yolov8 PyTorch model
48-
* `yolov8n.onnx`: The exported Yolov8 ONNX model
47+
* `yolov8n.pt`: The original YOLOv8 PyTorch model
48+
* `yolov8n.onnx`: The exported YOLOv8 ONNX model
4949
* `yolov8n.with_pre_post_processing.onnx`: The ONNX model with pre and post processing included in the model
5050
* `<test image>.out.jpg`: Your test image with bounding boxes supplied.
5151

@@ -95,7 +95,7 @@ You see the main inference code in [ObjectDetector.kt](https://github.com/micros
9595

9696
![Image of person with bicycle](../../../images/person-with-bicycle-and-bounding-boxes.png)
9797

98-
## Pose estimation with Yolov8
98+
## Pose estimation with YOLOv8
9999

100100
### Build the pose estimation model
101101

@@ -120,8 +120,8 @@ python yolov8_pose_e2e.py
120120
```
121121

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

127127

0 commit comments

Comments
 (0)