Skip to content

Commit

Permalink
Replace Yolov8 with YOLOv8
Browse files Browse the repository at this point in the history
  • Loading branch information
natke committed Feb 17, 2024
1 parent 51b9439 commit 6b48c01
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/tutorials/mobile/pose-detection.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Learn how to build and run ONNX models with built-in pre and post processing for
* TOC placeholder
{:toc}

## Object detection with Yolov8
## Object detection with YOLOv8

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

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

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

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

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

## Pose estimation with Yolov8
## Pose estimation with YOLOv8

### Build the pose estimation model

Expand All @@ -120,8 +120,8 @@ 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.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


Expand Down

0 comments on commit 6b48c01

Please sign in to comment.