0

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?

3
  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer.
    – Community Bot
    Commented Mar 13, 2022 at 15:30
  • Hi! You can use TFLite converter API for conversion. Attaching a similar thread for reference. stackoverflow.com/questions/70670841/…
    – user11530462
    Commented Apr 4, 2022 at 9:53
  • Add code to your question so that we can understand what you have tried
    – Mike B
    Commented Jul 21, 2022 at 12:50

1 Answer 1

2

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

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.