Scalar event
Arguments
- value
A numeric scalar value to be logged.
- ...
Currently unused. To allow future expansion.
- metadata
A
metadataobject, as created withsummary_metadata(). In most cases you don't need to change the default.- tag
A tag that within the TensorBoard UI. See
log_event()for other ways of specifying the tag attribute.
See also
Other summary:
summary_audio(),
summary_histogram(),
summary_image(),
summary_text()
Examples
temp <- tempfile()
with_logdir(temp, {
log_event(loss = summary_scalar(1))
})