【发布时间】:2019-09-25 09:53:26
【问题描述】:
我有一个 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()
【问题讨论】:
-
您找到解决方案了吗?我有同样的问题,因为我想在 tfjs 中运行一个 tflite 模型。
-
你有解决办法吗?
标签: tensorflow tensorflow-lite onnx