Reputation: 1
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
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