我正在尝试使用模块从Tensorflow Hub
基于Tensorflow Slim
checkpoint的模块中重现输出Tensorflow Slim
。但是,我似乎无法获得预期的输出。例如,让我们加载所需的库,创建一个示例输入和占位符来提供数据:
import tensorflow_hub as hub
from tensorflow.contrib.slim import nets
images = np.random.rand(1,224,224,3).astype(np.float32)
inputs = tf.placeholder(shape=[None, 224, 224, 3], dtype=tf.float32)
加载TF Hub
模块:
resnet_hub = hub.Module("https://tfhub.dev/google/imagenet/resnet_v2_152/feature_vector/3")
features_hub = resnet_hub(inputs, signature="image_feature_vector", as_dict=True)["resnet_v2_152/block4"]
现在,让我们做同样的事情TF Slim
并创建一个加载检查点的加载器:
with slim.arg_scope(nets.resnet_utils.resnet_arg_scope()):
_, end_points = nets.resnet_v2.resnet_v2_152(image, is_training=False)
features_slim = end_points["resnet_v2_152/block4"]
loader = tf.train.Saver(tf.get_collection(tf.GraphKeys.GLOBAL_VARIABLES, scope="resnet_v2_152"))
现在,一旦我们准备好一切,我们就可以测试输出是否相同:
with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
loader.restore(sess, "resnet_v2_152_2017_04_14/resnet_v2_152.ckpt")
slim_output = sess.run(features_slim, feed_dict={inputs: images})
hub_output = sess.run(features_hub, feed_dict={inputs: images})
np.testing.assert_array_equal(slim_output, hub_output)
但是,断言失败,因为两个输出不相同。我认为这是因为TF Hub
使用了TF Slim
实现缺少的输入的内部预处理。
让我知道你的想法!