Click or drag to resize

GraphRaggedTensorToSparse Method

https://www.emgu.com/wiki/index.php/Emgu_TF
RaggedTensorToSparse

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation RaggedTensorToSparse(
	Output rt_nested_splits,
	Output rt_dense_values,
	string opName = "RaggedTensorToSparse"
)

Parameters

rt_nested_splits
Type: Emgu.TFOutput
Input to the operation.
rt_dense_values
Type: Emgu.TFOutput
Input to the operation.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] sparse_indices(type: DtInt64). [1] sparse_values(type: DtInvalid). [2] sparse_dense_shape(type: DtInt64).
See Also