summary_text {tfevents} | R Documentation |
Creates a text summary
Description
Creates a text summary
Usage
summary_text(txt, ..., metadata = NULL, tag = NA)
## S3 method for class 'character'
summary_text(txt, ..., metadata = NULL, tag = NA)
Arguments
txt |
An object that can be converted to a text. |
... |
Currently unused. |
metadata |
A |
tag |
A tag that within the TensorBoard UI. See |
Value
A summary that can be logged with log_event()
.
Methods (by class)
-
summary_text(character)
: Creates a summary from a scalar character vector.
See Also
Other summary:
summary_audio()
,
summary_histogram()
,
summary_image()
,
summary_scalar()
Examples
temp <- tempfile()
with_logdir(temp, {
log_event(
x = "hello world",
y = summary_text("hello world")
)
})
[Package tfevents version 0.0.4 Index]