Click or drag to resize

GraphSparseToSparseSetOperation Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation SparseToSparseSetOperation(
	Output set1_indices,
	Output set1_values,
	Output set1_shape,
	Output set2_indices,
	Output set2_values,
	Output set2_shape,
	string set_operation,
	bool validate_indices = true,
	string opName = "SparseToSparseSetOperation"
)

Parameters

set1_indices
Type: Emgu.TFOutput
Input to the operation.
set1_values
Type: Emgu.TFOutput
Input to the operation.
set1_shape
Type: Emgu.TFOutput
Input to the operation.
set2_indices
Type: Emgu.TFOutput
Input to the operation.
set2_values
Type: Emgu.TFOutput
Input to the operation.
set2_shape
Type: Emgu.TFOutput
Input to the operation.
set_operation
Type: SystemString
set operation
validate_indices (Optional)
Type: SystemBoolean
validate indices
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] result_indices(type: DtInt64). [1] result_values(type: DtInvalid). [2] result_shape(type: DtInt64).
See Also