Click or drag to resize

GraphParseSingleExample Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation ParseSingleExample(
	Output serialized,
	Output dense_defaults,
	long num_sparse,
	string[] sparse_keys,
	string[] dense_keys,
	DataType[] sparse_types,
	long[][] dense_shapes,
	string opName = "ParseSingleExample"
)

Parameters

serialized
Type: Emgu.TFOutput
Input to the operation.
dense_defaults
Type: Emgu.TFOutput
Input to the operation.
num_sparse
Type: SystemInt64
num sparse
sparse_keys
Type: SystemString
sparse keys
dense_keys
Type: SystemString
dense keys
sparse_types
Type: Emgu.TFDataType
sparse types
dense_shapes
Type: SystemInt64
dense shapes
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_shapes(type: DtInt64). [3] dense_values(type: DtInvalid).
See Also