tf.summary.merge_all(
key=tf.GraphKeys.SUMMARIES,
scope=None,
name=None
)
Defined in tensorflow/python/summary/summary.py
.
Merges all summaries collected in the default graph.
Args:
key
:GraphKey
used to collect the summaries. Defaults toGraphKeys.SUMMARIES
.scope
: Optional scope used to filter the summary ops, usingre.match
Returns:
If no summaries were collected, returns None. Otherwise returns a scalar
Tensor
of type string
containing the serialized Summary
protocol
buffer resulting from the merging.
Raises:
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.