I used Colab to convert a keras model with some MaxPool3D layers to a TFLite model.
But by looking at the converted model with netron.app, I found it was converted to a FlexMaxPool3D.
AFAIK, such a model is not directly usable for inference (in my case, I’ll use it in JavaScript).
Although it is an op listed as implemented ( Supported Select TensorFlow operators | TensorFlow Lite ), how can I have it properly converted?