Click or drag to resize

GraphCTCBeamSearchDecoder Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation CTCBeamSearchDecoder(
	Output inputs,
	Output sequence_length,
	long beam_width,
	long top_paths,
	bool merge_repeated = true,
	string opName = "CTCBeamSearchDecoder"
)

Parameters

inputs
Type: Emgu.TFOutput
Input to the operation.
sequence_length
Type: Emgu.TFOutput
Input to the operation.
beam_width
Type: SystemInt64
beam width
top_paths
Type: SystemInt64
top paths
merge_repeated (Optional)
Type: SystemBoolean
merge repeated
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] decoded_indices(type: DtInt64). [1] decoded_values(type: DtInt64). [2] decoded_shape(type: DtInt64). [3] log_probability(type: DtInvalid).
See Also