@Operator(group="summary") public final class MergeSummary extends PrimitiveOp implements Operand<String>
This op creates a [`Summary`](https://www.tensorflow.org/code/tensorflow/core/framework/summary.proto) protocol buffer that contains the union of all the values in the input summaries.
When the Op is run, it reports an `InvalidArgument` error if multiple values in the summaries to merge use the same tag.
operation| Modifier and Type | Method and Description |
|---|---|
Output<String> |
asOutput()
Returns the symbolic handle of a tensor.
|
static MergeSummary |
create(Scope scope,
Iterable<Operand<String>> inputs)
Factory method to create a class wrapping a new MergeSummary operation.
|
Output<String> |
summary()
Scalar.
|
equals, hashCode, op, toStringpublic static MergeSummary create(Scope scope, Iterable<Operand<String>> inputs)
scope - current scopeinputs - Can be of any shape. Each must contain serialized `Summary` protocol
buffers.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.