我有一个 TensorFlow 图冻结为.pb
,我想将其转换为.onnx
格式。我目前正在尝试使用 mmconvert (来自微软的MMdnn),显然我做错了(见下面的代码)。是否有任何其他推荐的方法将 a 转换.pb
为a .onnx
?谢谢。
这是我正在使用的命令:
mmconvert -sf tensorflow -iw /frozen_models/model.pb --inNodeName input --inputShape 512 -df onnx -om tf_mobilenet --inNodeName input
这给出了错误
ValueError: Need to provide the output node of Tensorflow model.