我试图关注Cifar10 example。但是,我想用Numpy数组替换文件读取。这样做有几个好处:
这是一个简单的方法吗?
答案 0 :(得分:0)
您需要通过以下任一方式获得张量reshape_image
:
reshaped_image = tf.cast(read_input.uint8image, tf.float32, name="float_image")
然后你可以使用feed_dict来提供你的numpy数组,如:
reshaped_image = tf.get_default_graph().get_tensor_by_name("float_image")
sess.run(loss, feed_dict={reshaped_image: your_numpy})
标签也是如此。