Hello, I am currently getting this error on Tensorflow lite on my Raspberry Pi 3 through the Interpreter class and was wondering if anyone knew the solution to this or a similar issue of this. Attached in the images is the model I built and trained on my pc and I am struggling to be able to deploy the model on my Raspberry Pi. The model is saved through a .tflite file and I securely copied it to my Raspberry Pi.
Hi @haijun_si,
You might had a solution by this time. However here are few suggestions to solve the issue. First provide the explicit path to tflite file instead of providing the folder path. Second, check the compatibility between your micro device version with TFLite compatibility and upgrade the TFlite version pip install --upgradevtflite-runtime
. Finally check the model size and memory available on the Pi board.
Thank You