I have a tflite model and i want to convert it into tensorflow or keras or ONNX format. Is there a way?
I can import it using tf interpreter and run it on python. However i want to convert it into one of the above formats.
import tensorflow as tf
interpreter = tf.lite.Interpreter(model_path="conv_actions_frozen.tflite")
tensors = interpreter.get_tensor_details()