Click or drag to resize

GraphConvertToCooTensor Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation ConvertToCooTensor(
	Output indices_or_row_splits,
	Output values,
	Output weights,
	long sample_count,
	string combiner,
	string opName = "ConvertToCooTensor"
)

Parameters

indices_or_row_splits
Type: Emgu.TFOutput
Input to the operation.
values
Type: Emgu.TFOutput
Input to the operation.
weights
Type: Emgu.TFOutput
Input to the operation.
sample_count
Type: SystemInt64
sample count
combiner
Type: SystemString
combiner
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] row_ids(type: DtInt32). [1] col_ids(type: DtInt32). [2] gains(type: DtFloat).
See Also