hparams_metric {tfevents} | R Documentation |
Defines a Metric
Description
Metric objects are passed to log_hparams_config()
in order to define the
collection of scalars that will be displayed in the HParams tab in TensorBoard.
Usage
hparams_metric(
tag,
group = NA,
display_name = tag,
description = tag,
dataset_type = NA
)
Arguments
tag |
The tag name of the scalar summary that corresponds to this metric. |
group |
An optional string listing the subdirectory under the
session's log directory containing summaries for this metric.
For instance, if summaries for training runs are written to
events files in |
display_name |
An optional human-readable display name. |
description |
An optional Markdown string with a human-readable description of this metric, to appear in TensorBoard. |
dataset_type |
dataset_type: Either |
Value
A hparams_metric
object.
Examples
hparams_metric("loss", group = "train")
hparams_metric("acc")