Arduino BLE Sense
Tensorflow 2.5.0
I have a model that is 179960 len, had quite a lot of issues with the arena maxing out memory when it gets to the interpreter. It was requiring ~627 x 1024 but that was crashing memory. I now have the arena set at 200 x 1024 and using micro op resolver, and suddenly it started working, then I was hit with this.
Didn't find op for builtin opcode 'SOFTMAX' version '2'
I know it can be solved with AllOpsResolver but then throws the original issue:
Needed 627488 but only 203072 was available.
If I increase to 627 x 1024 it won't even upload.
Can anyone suggest how can be solved without having to use AllOpsResolver, haven't been able to find this issue documented anywhere. Thanks in advance.