Skip to content

Update How_to_deploy_yolov8_yolov5_object_detection.md #19

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ Please refer to [https://github.com/ultralytics/ultralytics](https://github.com/
To export the model as int8 tflite, let's take the default example of a model trained on COCO dataset using Ultralytics CLI:

```
yolo export model=yolov8n.pt format=tflite imgsz=256 int8=True
model.export(
format="tflite",
imgsz=256,
int8=True
)
```

Where yolov8n.pt is the trained weights, the output format is specified as tflite, int8=True means the model will be quantized using 8-bits signed for the weights and the activations.
Expand Down