Marvee Amasi
Marvee Amasi
DIIDevHeads IoT Integration Server
Created by Enthernet Code on 9/11/2024 in #firmware-and-baremetal
Tensor Allocation Issue in TinyML Deployment on Arduino Nano 33 BLE Sense
And you would notice that static_interpreter is being used, but it's not properly initialized. use the tflite::MicroInterpreter the right way. Correct the initialization of the interpreter. Instead of static_interpreter, use something more like
static tflite::MicroInterpreter static_interpreter(model, resolver, tensor_arena, kTensorArenaSize);
static tflite::MicroInterpreter static_interpreter(model, resolver, tensor_arena, kTensorArenaSize);
9 replies