operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T extends Number> |
create(Scope scope,
Operand<T> indices,
Operand<T> dims)
Factory method to create a class to wrap a new UnravelIndex operation to the graph.
|
Output<T> |
output()
An 2-D (or 1-D if indices is 0-D) tensor where each row has the
same shape as the indices array.
|
equals, hashCode, toStringpublic static <T extends Number> UnravelIndex<T> create(Scope scope, Operand<T> indices, Operand<T> dims)
scope - current graph scopeindices - An 0-D or 1-D `int` Tensor whose elements are indices into the
flattened version of an array of dimensions dims.dims - An 1-D `int` Tensor. The shape of the array to use for unraveling
indices.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 extends Number>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.