如何在一次运行中从Inception-v3中检索fc和softmax图层的输出?

Yam*_*eko 3 tensorflow softmax

我想提取两个'pool_3:0''softmax:0'图层的输出.我可以运行模型两次,对于每次运行,提取单层的输出,但这有点浪费.是否可以只运行一次模型?

我正在使用提供的示例classify_image.py.这是相关的片段:

def run_inference_on_image(image_data):
  create_graph()
  with tf.Session() as sess:
    # Some useful tensors:
    # 'softmax:0': A tensor containing the normalized prediction across
    #   1000 labels.
    # 'pool_3:0': A tensor containing the next-to-last layer containing 2048
    #   float description of the image.
    # 'DecodeJpeg/contents:0': A tensor containing a string providing JPEG
    #   encoding of the image.
    # Runs the softmax tensor by feeding the image_data as input to the graph.
    softmax_tensor = sess.graph.get_tensor_by_name('softmax:0')
    predictions = sess.run(softmax_tensor,
                           {'DecodeJpeg:0': image_data})
    predictions = np.squeeze(predictions)

    # Creates node ID --> English string lookup.
    node_lookup = NodeLookup()

    top_k = predictions.argsort()[-FLAGS.num_top_predictions:][::-1]
    for node_id in top_k:
      human_string = node_lookup.id_to_string(node_id)
      score = predictions[node_id]
      print('%s (score = %.5f)' % (human_string, score))

    return predictions
Run Code Online (Sandbox Code Playgroud)

mrr*_*rry 6

您可以传递张量列表,Session.run()TensorFlow将分享计算它们的工作:

softmax_tensor = sess.graph.get_tensor_by_name('softmax:0')
pool_3 = sess.graph.get_tensor_by_name('pool_3:0')
predictions, pool3_val = sess.run([softmax_tensor, pool_3],
                                  {'DecodeJpeg:0': image_data})
Run Code Online (Sandbox Code Playgroud)