U - data type for output() output@Operator public final class SparseTensorDenseAdd<U> extends PrimitiveOp implements Operand<U>
This Op does not require `a_indices` be sorted in standard lexicographic order.
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<T> aIndices,
Operand<U> aValues,
Operand<T> aShape,
Operand<U> b)
Factory method to create a class to wrap a new SparseTensorDenseAdd operation to the graph.
|
Output<U> |
output() |
equals, hashCode, toStringpublic static <U,T extends Number> SparseTensorDenseAdd<U> create(Scope scope, Operand<T> aIndices, Operand<U> aValues, Operand<T> aShape, Operand<U> b)
scope - current graph scopeaIndices - 2-D. The `indices` of the `SparseTensor`, with shape `[nnz, ndims]`.aValues - 1-D. The `values` of the `SparseTensor`, with shape `[nnz]`.aShape - 1-D. The `shape` of the `SparseTensor`, with shape `[ndims]`.b - `ndims`-D Tensor. With shape `a_shape`.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.