Hi,
I am trying to convert a Tensorflow SavedModel to TF-Lite. However, while converting I get an error due to unsupported ops: ResizeArea and Cross. Hence, the solution was to write custom ops for these two. I tried to see how it is implemented in TF Core, but I am unable to understand how to write the correct implementation of the kernels for these two in TFLite. If someone can provide a tutorial for how to write and register it… I tried to follow the one on Tensorflow website, but it’s not detailed and I am stuck.
Thanks!