我从https://www.tensorflow.org/lite/convert/python_api复制了代码 并且在运行代码时,它给了我这个错误模块'tensorflow'没有属性'lite'
我还没有看过任何可以解决我问题的教程,所以我想在这里问是否有人可以帮助我解决我的问题
这是从tensorflow lite官方文档复制的代码,当我尝试运行它时,它给了我这个错误“模块'tensorflow'没有属性'lite'''
import tensorflow as tf
img = tf.placeholder(name="img", dtype=tf.float32, shape=(1, 64, 64, 3))
var = tf.get_variable("weights", dtype=tf.float32, shape=(1, 64, 64, 3))
val = img + var
out = tf.identity(val, name="out")
with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
converter = tf.lite.TFLiteConverter.from_session(sess, [img], [out])
tflite_model = converter.convert()
open("converted_model.tflite", "wb").write(tflite_model)
答案 0 :(得分:0)
对于给您带来的不便,我们深感抱歉,您可以每晚下载一次。
编辑:或者使用tf.contrib.lite也应该可以。