Click or drag to resize

GraphCTCLoss Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation CTCLoss(
	Output inputs,
	Output labels_indices,
	Output labels_values,
	Output sequence_length,
	bool preprocess_collapse_repeated = false,
	bool ctc_merge_repeated = true,
	bool ignore_longer_outputs_than_inputs = false,
	string opName = "CTCLoss"
)

Parameters

inputs
Type: Emgu.TFOutput
Input to the operation.
labels_indices
Type: Emgu.TFOutput
Input to the operation.
labels_values
Type: Emgu.TFOutput
Input to the operation.
sequence_length
Type: Emgu.TFOutput
Input to the operation.
preprocess_collapse_repeated (Optional)
Type: SystemBoolean
preprocess collapse repeated
ctc_merge_repeated (Optional)
Type: SystemBoolean
ctc merge repeated
ignore_longer_outputs_than_inputs (Optional)
Type: SystemBoolean
ignore longer outputs than inputs
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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