U - data type for output() output@Operator public final class ResourceGather<U> extends PrimitiveOp implements Operand<U>
`indices` must be an integer tensor of any dimension (usually 0-D or 1-D). Produces an output tensor with shape `indices.shape + params.shape[1:]` where:
# Scalar indices
output[:, ..., :] = params[indices, :, ... :]
# Vector indices
output[i, :, ..., :] = params[indices[i], :, ... :]
# Higher rank indices
output[i, ..., j, :, ... :] = params[indices[i, ..., j], :, ..., :]
| Modifier and Type | Class and Description |
|---|---|
static class |
ResourceGather.Options
Optional attributes for
ResourceGather |
operation| Modifier and Type | Method and Description |
|---|---|
Output<U> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <U,T extends Number> |
create(Scope scope,
Operand<?> resource,
Operand<T> indices,
Class<U> dtype,
ResourceGather.Options... options)
Factory method to create a class to wrap a new ResourceGather operation to the graph.
|
Output<U> |
output() |
static ResourceGather.Options |
validateIndices(Boolean validateIndices) |
equals, hashCode, toStringpublic static <U,T extends Number> ResourceGather<U> create(Scope scope, Operand<?> resource, Operand<T> indices, Class<U> dtype, ResourceGather.Options... options)
scope - current graph scoperesource - indices - dtype - options - carries optional attributes valuespublic static ResourceGather.Options validateIndices(Boolean validateIndices)
validateIndices - public Output<U> 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<U>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.