有没有办法解码tf.Summary protobuf对象并在TensorFlow中访问它的值?

时间:2017-06-20 20:26:58

标签: tensorflow

到目前为止,我已经发现摘要的protobuf标题在此定义:

https://github.com/tensorflow/tensorflow/blob/r1.2/tensorflow/core/framework/summary.proto

1 个答案:

答案 0 :(得分:0)

使用tf.Summary()类:

可以实现

summary_string = sess.run(summary)
summary_proto = tf.Summary().FromString(summary_string)
for entry in summary_proto.value:
    print(entry.tag)