2

I am trying to deploy an object detection model on the Raspberry Pi Zero. We have chosen the Raspberry Pi Zero because cost is our main issue. When I was installing tensorflow lite on pi0, I came to know that there is no tensorflow lite support for armv6l architecture. The Tensorflow instructions for building the pip TFlite runtime are less than clear in my opinion because I have never used Docker.

Can you guide me on how I should deploy my yolov5 object detection model on the Raspberry Pi Zero?

If there is some better option available, then please let me know.

The error I am getting while installing tflite: enter image description here

Sushmita
  • 21
  • 2

1 Answers1

0

You can run TFLite models wherever you have tflite-runtime installed, this is:

sudo apt-get update
sudo apt-get install python3-tflite-runtime

Check this repo out:

https://github.com/karanjakhar/yolov5-export-to-raspberry-pi

Mike B
  • 2,136
  • 2
  • 12
  • 31