我有一个 tflite 模型,我想将其转换为 tensorflow 或 keras 或 ONNX 格式。有办法吗?
我可以使用 tf 解释器导入它并在 python 上运行它。但是我想将其转换为上述格式之一。
import tensorflow as tf
interpreter = tf.lite.Interpreter(model_path="conv_actions_frozen.tflite")
tensors = interpreter.get_tensor_details()
我有一个 tflite 模型,我想将其转换为 tensorflow 或 keras 或 ONNX 格式。有办法吗?
我可以使用 tf 解释器导入它并在 python 上运行它。但是我想将其转换为上述格式之一。
import tensorflow as tf
interpreter = tf.lite.Interpreter(model_path="conv_actions_frozen.tflite")
tensors = interpreter.get_tensor_details()