@Operator(group="summary") public final class ScalarSummary extends PrimitiveOp implements Operand<java.lang.String>
The input `tags` and `values` must have the same shape. The generated summary has a summary value for each tag-value pair in `tags` and `values`.
operation| Modifier and Type | Method | Description |
|---|---|---|
Output<java.lang.String> |
asOutput() |
Returns the symbolic handle of a tensor.
|
static <T extends java.lang.Number> |
create(Scope scope,
Operand<java.lang.String> tags,
Operand<T> values) |
Factory method to create a class to wrap a new ScalarSummary operation to the graph.
|
Output<java.lang.String> |
summary() |
Scalar.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitequals, hashCode, toStringpublic static <T extends java.lang.Number> ScalarSummary create(Scope scope, Operand<java.lang.String> tags, Operand<T> values)
scope - current graph scopetags - Tags for the summary.values - Same shape as `tags. Values for the summary.public Output<java.lang.String> summary()
public Output<java.lang.String> asOutput()
OperandInputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.
asOutput in interface Operand<java.lang.String>OperationBuilder.addInput(Output)