@Operator(group="summary") public final class HistogramSummary extends PrimitiveOp implements Operand<String>
The generated [`Summary`](https://www.tensorflow.org/code/tensorflow/core/framework/summary.proto) has one summary value containing a histogram for `values`.
This op reports an `InvalidArgument` error if any value is not finite.
operation| Modifier and Type | Method and Description |
|---|---|
Output<String> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T extends Number> |
create(Scope scope,
Operand<String> tag,
Operand<T> values)
Factory method to create a class wrapping a new HistogramSummary operation.
|
Output<String> |
summary()
Scalar.
|
equals, hashCode, op, toStringpublic static <T extends Number> HistogramSummary create(Scope scope, Operand<String> tag, Operand<T> values)
scope - current scopetag - Scalar. Tag to use for the `Summary.Value`.values - Any shape. Values to use to build the histogram.public Output<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<String>OperationBuilder.addInput(Output)Copyright © 2022. All rights reserved.