Michael O'Cleirigh
Michael O'Cleirigh
I was depending on tensorflow/lite/version.h and then using the TFLITE_VERSION_STRING define but that did not make it into the tflite-micro repository. There are constants in tensorflow/lite/micro/micro_interpreter.h for the schema version...
Both tensorflow and the micropython firmware are built where unused code can be dropped at link time. This allows for a smaller firmware because not all operators need to be...
When I download multiple artifacts I get so many same dir (1), same dir (2), .. same dir (n). Lets use this example to make a nightly build that has...
I found out that there is a memory overhead for using the all op resolver. I'm not sure on the exact overhead but I head it could be 4k. Lets...
Tensorflow lite already has a python Interpreter module. This allows the lite model to be run for example on a Linux box. I don't want to remove the first part...
The rules for quantization seem to always exist on the model input and output tensors. For the hello world example we added methods you can call to quantize float32 to...