W3cubDocs

/TensorFlow 2.3

tf.summary.text

View source on GitHub

Write a text summary.

Arguments
name A name for this summary. The summary tag used for TensorBoard will be this name prefixed by any active name scopes.
data A UTF-8 string tensor value.
step Explicit int64-castable monotonic step value for this summary. If omitted, this defaults to tf.summary.experimental.get_step(), which must not be None.
description Optional long-form description for this summary, as a constant str. Markdown is supported. Defaults to empty.
Returns
True on success, or false if no summary was emitted because no default summary writer was available.
Raises
ValueError if a default writer exists, but no step was provided and tf.summary.experimental.get_step() is None.

© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/summary/text