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  

Constants

String OP_NAME The name of this op, as known by TensorFlow core engine

Public Methods

Output<TType>
asOutput()
Returns the symbolic handle of the tensor.
static SparseMatrixTranspose.Options
conjugate(Boolean conjugate)
static <T extends TType> 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

Constants

public static final String OP_NAME

The name of this op, as known by TensorFlow core engine

Constant Value: "SparseMatrixTranspose"

Public Methods

public Output<TType> asOutput ()

Returns 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.

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.