exiled_coder
exiled_coder

Reputation: 1

How to export YOLOv5 model to Tensorflow Lite

I would like to ask some help. I've been struggling about how to convert Yolov5 model to Tensorflow lite. Any suggestion guys, how can I convert my Yolov5 model to tensorflow lite?

Upvotes: 0

Views: 4158

Answers (1)

Mike B
Mike B

Reputation: 3416

As sepecified in the official Yolov5 export.py (https://github.com/ultralytics/yolov5/blob/master/export.py) you should run:

python path/to/export.py --weights yolov5s.pt --include tflite

Upvotes: 2

Related Questions