Click or drag to resize

GraphSparseMatMul Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation SparseMatMul(
	Output a,
	Output b,
	bool transpose_a = false,
	bool transpose_b = false,
	bool a_is_sparse = false,
	bool b_is_sparse = false,
	string opName = "SparseMatMul"
)

Parameters

a
Type: Emgu.TFOutput
Input to the operation.
b
Type: Emgu.TFOutput
Input to the operation.
transpose_a (Optional)
Type: SystemBoolean
transpose a
transpose_b (Optional)
Type: SystemBoolean
transpose b
a_is_sparse (Optional)
Type: SystemBoolean
a is sparse
b_is_sparse (Optional)
Type: SystemBoolean
b is sparse
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] product(type: DtFloat).
See Also