SparseMatrixTranspose

public final class SparseMatrixTranspose

Transposes the inner (matrix) dimensions of a CSRSparseMatrix.

Transposes the inner (matrix) dimensions of a SparseMatrix and optionally conjugates its values.

Nested Classes

class SparseMatrixTranspose.Options Optional attributes for SparseMatrixTranspose  

Public Methods

Output<Object>
asOutput()
Returns the symbolic handle of a tensor.
static SparseMatrixTranspose.Options
conjugate(Boolean conjugate)
static <T> SparseMatrixTranspose
create(Scope scope, Operand<?> input, Class<T> type, Options... options)
Factory method to create a class wrapping a new SparseMatrixTranspose operation.
Output<?>
output()
A 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 SparseMatrixTranspose.Options conjugate (Boolean conjugate)

Parameters
conjugate Indicates whether `input` should be conjugated.

public static SparseMatrixTranspose create (Scope scope, Operand<?> input, Class<T> type, Options... options)

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

Parameters
scope current scope
input A CSRSparseMatrix.
options carries optional attributes values
Returns
  • a new instance of SparseMatrixTranspose

public Output<?> output ()

A CSRSparseMatrix.