Hi Everyone, I am trying to create RNN based model which is to be ported to TFLite → TFLMicro for use in a microcontroller. Is there any way currently to get a LSTM layer into TFLM, since I don’t think it is officially supported yet?
Hi @Neil_Sengupta,
Currently, TFLM doesn’t support a built-in LSTM layer but it supports custom LSTM operations that can be registered and used in TFLM models. Please check the custom LSTM operations here.
Thank You