T - data type for output() output@Operator public final class Concat<T> extends PrimitiveOp implements Operand<T>
operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T,U extends Number> |
create(Scope scope,
Operand<T> values,
Operand<U> axis)
Factory method to create a class to wrap a new Concat operation to the graph.
|
Output<T> |
output()
A `Tensor` with the concatenation of values stacked along the
`concat_dim` dimension.
|
equals, hashCode, toStringpublic static <T,U extends Number> Concat<T> create(Scope scope, Operand<T> values, Operand<U> axis)
scope - current graph scopevalues - List of `N` Tensors to concatenate. Their ranks and types must match,
and their sizes must match in all dimensions except `concat_dim`.axis - 0-D. The dimension along which to concatenate. Must be in the
range [-rank(values), rank(values)).public Output<T> output()
public Output<T> 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<T>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.