Click or drag to resize

GraphRaggedCross Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation RaggedCross(
	Output ragged_values,
	Output ragged_row_splits,
	Output sparse_indices,
	Output sparse_values,
	Output sparse_shape,
	Output dense_inputs,
	string input_order,
	bool hashed_output,
	long num_buckets,
	long hash_key,
	DataType out_values_type,
	DataType out_row_splits_type,
	string opName = "RaggedCross"
)

Parameters

ragged_values
Type: Emgu.TFOutput
Input to the operation.
ragged_row_splits
Type: Emgu.TFOutput
Input to the operation.
sparse_indices
Type: Emgu.TFOutput
Input to the operation.
sparse_values
Type: Emgu.TFOutput
Input to the operation.
sparse_shape
Type: Emgu.TFOutput
Input to the operation.
dense_inputs
Type: Emgu.TFOutput
Input to the operation.
input_order
Type: SystemString
input order
hashed_output
Type: SystemBoolean
hashed output
num_buckets
Type: SystemInt64
num buckets
hash_key
Type: SystemInt64
hash key
out_values_type
Type: Emgu.TFDataType
out values type
out_row_splits_type
Type: Emgu.TFDataType
out row splits type
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output_values(type: DtInvalid). [1] output_row_splits(type: DtInvalid).
See Also