openVINO模型优化器可以用来转换tensorflow ann模型吗?
Can openVINO model optimiser be used to convert tensorflow ann models?
我训练了一个 ANN 模型并将其保存为 .h5 file.Then 我将模型转换为 tensorflow 模型并获得了 'savedmodel.pb'
和 'variables'
文件夹。
然后我使用模型优化器 openvino 生成 IR 文件,使用:
python3 mo_tf.py --input_model saved_model.pb
但我收到以下错误:
[ FRAMEWORK ERROR ] Error parsing message
TensorFlow cannot read the model file: "/home/user/Downloads/OpenVino/dldt-2019/model-optimizer/saved_model.pb" is incorrect TensorFlow model file
openVINO
能否首先用于转换 ANN
模型?
很遗憾,OpenVINO 不支持 Keras 模型格式。
我猜你从模型优化器那里得到了一个错误,因为你的模型没有被冻结。
有很多脚本可用于将 Keras 模型转换为冻结的 Tensorflow 图。例如,我可以推荐 this one。
希望对您有所帮助。
我训练了一个 ANN 模型并将其保存为 .h5 file.Then 我将模型转换为 tensorflow 模型并获得了 'savedmodel.pb'
和 'variables'
文件夹。
然后我使用模型优化器 openvino 生成 IR 文件,使用:
python3 mo_tf.py --input_model saved_model.pb
但我收到以下错误:
[ FRAMEWORK ERROR ] Error parsing message
TensorFlow cannot read the model file: "/home/user/Downloads/OpenVino/dldt-2019/model-optimizer/saved_model.pb" is incorrect TensorFlow model file
openVINO
能否首先用于转换 ANN
模型?
很遗憾,OpenVINO 不支持 Keras 模型格式。
我猜你从模型优化器那里得到了一个错误,因为你的模型没有被冻结。
有很多脚本可用于将 Keras 模型转换为冻结的 Tensorflow 图。例如,我可以推荐 this one。
希望对您有所帮助。