我想通过网络传递图像以完成迁移学习任务。在以下代码中,我正在构建图形,然后获取全连接层的输出。我想批量获得输出,因为我有一个包含超过 20k 图像的数组。
vgg.vgg_16(images)
需要是一images
组图像。我尝试输入一个输入占位符(在查看文档之后),但是在加载检查点时出现错误There are no variables to save
。
我可以vgg.vgg_16(images)
一次提供几张图像,但我需要为每个批次加载检查点。我很确定有更好的方法来做到这一点。有什么我可以看的例子或参考资料吗?
from tensorflow.contrib import slim
from tensorflow.contrib.slim.nets import vgg
images = np.array(read_images(val_filenames[:4], 224, 224), dtype=np.float32) # load images and resize to 224 x 224
vgg_graph = tf.Graph()
with vgg_graph.as_default():
with slim.arg_scope(vgg.vgg_arg_scope()):
outputs, end_points = vgg.vgg_16(images, is_training=False)
fc6 = end_points['vgg_16/fc6']
with tf.Session(graph=vgg_graph) as sess:
saver = tf.train.Saver()
saver.restore(sess, 'checkpoints/vgg_16.ckpt')
# pass images through the network
fc6_output = sess.run(fc6)