-
Notifications
You must be signed in to change notification settings - Fork 62
Description
Hi. I'm a next to noob regarding ML stuff, but I am needed to deploy a model on ESP32.
The model I am given is a tflite file, converted to C array. Arena size is set according to arena estimator sizes. During the tf.begin() call, the serial prints are as such:
Didn't find op for builtin opcode 'MUL' version '1'
Failed to get registration from op code d
--->TF ERROR: Cannot allocate tensors
From what i understand, the model has a mul (multiply) layer (it is the 1st one) that the esp32 code cannot find the equivalent op code. Thing is, the mul operation is supported by TFlite (the same is for all the rest of the layers of the model), so why is it that it cannot be found?
I can provide said model and device code if needed. Also, if this is more of a TFlite problem than an EloquentTinyML one, let me know to go ask elsewhere! :)