DenseToCSRSparseMatrix

public final class DenseToCSRSparseMatrix

Converts a dense tensor to a (possibly batched) CSRSparseMatrix.

Public Methods

Output<Object>
asOutput()
Returns the symbolic handle of a tensor.
static <T> DenseToCSRSparseMatrix
create(Scope scope, Operand<T> denseInput, Operand<Long> indices)
Factory method to create a class wrapping a new DenseToCSRSparseMatrix operation.
Output<?>
sparseOutput()
A (possibly batched) CSRSparseMatrix.

Inherited Methods

Public Methods

public Output<Object> asOutput ()

Returns the symbolic handle of a 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.

public static DenseToCSRSparseMatrix create (Scope scope, Operand<T> denseInput, Operand<Long> indices)

Factory method to create a class wrapping a new DenseToCSRSparseMatrix operation.

Parameters
scope current scope
denseInput A Dense tensor.
indices Indices of nonzero elements.
Returns
  • a new instance of DenseToCSRSparseMatrix

public Output<?> sparseOutput ()

A (possibly batched) CSRSparseMatrix.