Closed mattn closed 3 years ago
https://github.com/raspberrypi/pico-tflmicro#contributing says "This repository (https://github.com/raspberrypi/pico-tflmicro) is read-only, because it has been automatically generated from the master TensorFlow repository at https://github.com/tensorflow/tensorflow. This means that all issues and pull requests need to be filed there." ?
Sorry you're hitting problems @mattn! I don't see anything obviously wrong from inspection, but I would suggest the next step as running the same code on a different Linux platform (without the pico/stdlib.h include) to see if we can reproduce it there.
If you can file this bug against https://github.com/tensorflow/tensorflow and cc me, that would be the best way to continue.
I figure out what was wrong in few hours ago. TF_LITE_STATIC_MEMORY
is required for raspberrypipico.
#define TF_LITE_STATIC_MEMORY
https://gist.github.com/mattn/cb26cf4cc2641ecb4ed07f299cd298ca
Hi, thanks your great work.
I'm trying to write code to make inference with simple xor-gate model.
But output always be zero. Is this a bug of pico-tfmicro?