
tf.summary.merge_all(
key=tf.GraphKeys.SUMMARIES,
scope=None,
name=None
)合并默认图中收集的所有摘要。
参数:
key: GraphKey用于收集摘要,默认为GraphKeys.SUMMARIES。scope: 使用re.match筛选摘要操作的可选范围。返回值:
异常:
RuntimeError: If called with eager execution enabled.Eager Compatibility
Not compatible with eager execution. To write TensorBoard summaries under eager execution, use tf.contrib.summary instead.
原链接:https://tensorflow.google.cn/versions/r1.14/api_docs/python/tf/summary/merge_all