我正在尝试在Tensorflow中使用convert_saved_model将冻结的grap转换为tflite,但出现以下错误
从tensorflow.contrib.lite.python导入convert_saved_model
ImportError:无法导入名称“ convert_saved_model”
这是我一直在使用的代码
from tensorflow.contrib.lite.python import convert_saved_model
convert_saved_model.tflite_from_saved_model(saved_model_dir="optimized_graph.pb",
output_file="/tflite_Model")
我正在使用Windows 8.1和Tensorflow 1.8。 我尝试使用toco_convert但出现错误
tensorflow.contrib模块没有属性'lite'
答案 0 :(得分:0)
请尝试使用Tensorflow 1.9并提交Github问题(如果仍无法正常工作https://github.com/tensorflow/tensorflow/issues
)