T - data type for output() output@Operator public final class Tile<T> extends PrimitiveOp implements Operand<T>
This operation creates a new tensor by replicating `input` `multiples` times. The output tensor's i'th dimension has `input.dims(i) * multiples[i]` elements, and the values of `input` are replicated `multiples[i]` times along the 'i'th dimension. For example, tiling `[a b c d]` by `[2]` produces `[a b c d a b c d]`.
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> input,
Operand<U> multiples)
Factory method to create a class to wrap a new Tile operation to the graph.
|
Output<T> |
output() |
equals, hashCode, toStringpublic static <T,U extends Number> Tile<T> create(Scope scope, Operand<T> input, Operand<U> multiples)
scope - current graph scopeinput - 1-D or higher.multiples - 1-D. Length must be the same as the number of dimensions in `input`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.