Class SparseTensorDenseAdd<U extends TType>
java.lang.Object
org.tensorflow.op.RawOp
org.tensorflow.op.sparse.SparseTensorDenseAdd<U>
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classSparseTensorDenseAdd.Inputs<T extends TNumber, U extends TType> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe name of this op, as known by TensorFlow core engine -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionasOutput()Returns the symbolic handle of the tensor.static <U extends TType, T extends TNumber>
SparseTensorDenseAdd<U> Factory method to create a class wrapping a new SparseTensorDenseAdd operation.output()Gets output.
-
Field Details
-
OP_NAME
The name of this op, as known by TensorFlow core engine- See Also:
-
-
Constructor Details
-
SparseTensorDenseAdd
-
-
Method Details
-
create
@Endpoint(describeByClass=true) public static <U extends TType, T extends TNumber> SparseTensorDenseAdd<U> create(Scope scope, Operand<T> aIndices, Operand<U> aValues, Operand<T> aShape, Operand<U> b) Factory method to create a class wrapping a new SparseTensorDenseAdd operation.- Type Parameters:
U- data type forSparseTensorDenseAddoutput and operandsT- data type forSparseTensorDenseAddoutput and operands- Parameters:
scope- current scopeaIndices- 2-D. Theindicesof theSparseTensor, with shape[nnz, ndims].aValues- 1-D. Thevaluesof theSparseTensor, with shape[nnz].aShape- 1-D. Theshapeof theSparseTensor, with shape[ndims].b-ndims-D Tensor. With shapea_shape.- Returns:
- a new instance of SparseTensorDenseAdd
-
output
-
asOutput
Description copied from interface:OperandReturns the symbolic handle of the tensor.Inputs 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.
-