写一个文本摘要。
用法
tf.summary.text(
name, data, step=None, description=None
)
参数
-
name
此摘要的名称。用于 TensorBoard 的摘要标记将是此名称,以任何活动名称范围为前缀。 -
data
一个 UTF-8 字符串张量值。 -
step
此摘要的显式int64
-castable 单调步长 值。如果省略,则默认为tf.summary.experimental.get_step()
,不能为 None。 -
description
此摘要的可选长格式说明,作为常量str
。支持Markdown 。默认为空。
返回
- 成功时为真,如果因为没有可用的默认摘要编写器而未发出摘要,则为假。
抛出
-
ValueError
如果存在默认编写器,但未提供任何步骤且tf.summary.experimental.get_step()
为无。
另见tf.summary.scalar
、tf.summary.SummaryWriter
、tf.summary.image
。
写入文本张量值,以便以后在 TensorBoard 中进行可视化和分析。写入到当前的默认摘要编写器。与 tf.summary.scalar
点一样,文本点都与 step
和 name
相关联。所有具有相同name
的点构成文本值的时间序列。
例如:
test_summary_writer = tf.summary.create_file_writer('test/logdir')
with test_summary_writer.as_default():
tf.summary.text('first_text', 'hello world!', step=0)
tf.summary.text('first_text', 'nice to meet you!', step=1)
文本摘要也可以包含 Markdown,TensorBoard 将这样呈现文本。
with test_summary_writer.as_default():
text_data = '''
| *hello* | *there* |
|---------|---------|
| this | is |
| a | table |
'''
text_data = '\n'.join(l.strip() for l in text_data.splitlines())
tf.summary.text('markdown_text', text_data, step=0)
由于文本是张量值,每个文本点可能是一个字符串值的张量。 rank-1 和 rank-2 张量在 TensorBoard 中呈现为表格。对于排名较高的张量,您只会看到数据的 2D 切片。为避免这种情况,请在将张量传递给此函数之前将其整形为最多 rank-2。
“在 TensorBoard 中显示文本数据”中的演示笔记本。
相关用法
- Python tf.summary.scalar用法及代码示例
- Python tf.summary.record_if用法及代码示例
- Python tf.summary.experimental.summary_scope用法及代码示例
- Python tf.summary.histogram用法及代码示例
- Python tf.summary.SummaryWriter.as_default用法及代码示例
- Python tf.summary.graph用法及代码示例
- Python tf.summary.image用法及代码示例
- Python tf.strings.substr用法及代码示例
- Python tf.strings.reduce_join用法及代码示例
- Python tf.sparse.cross用法及代码示例
- Python tf.sparse.mask用法及代码示例
- Python tf.strings.regex_full_match用法及代码示例
- Python tf.sparse.split用法及代码示例
- Python tf.strings.regex_replace用法及代码示例
- Python tf.signal.overlap_and_add用法及代码示例
- Python tf.strings.length用法及代码示例
- Python tf.strided_slice用法及代码示例
- Python tf.sparse.to_dense用法及代码示例
- Python tf.strings.bytes_split用法及代码示例
- Python tf.shape用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.summary.text。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。