TFLite frontend doesn’t support these two ops currently. However, I think you could implement these two ops. BATCH_TO_SPACE_ND is a little difficult than TRANSPOSE. You could implement TRANSPOSE firstly, then BATCH_TO_SPACE_ND.
You could read the tflite.py and try to understand how we implement convolution, after this, you could start to implement. I wrote one blog how I implement tflite frontend from 0 to 1, but unfortunately I wrote it in Chinese.The general suggestion is to start from from_tflite function and read the code.
I’ll probably get down to implementing the same right away!
It would be amazing if you could share the blog post in either case, as it would be a useful resource. I’ll try my best to work with it by using Google Translate.