You are here: Start » AVL.NET » AVL.TrainOcr_MLP_Deprecated(AvlNet.OcrMlpModel, AvlNet.CharacterSample[], float, float, int, AvlNet.Size?, AvlNet.OcrMlpModel)

AVL.TrainOcr_MLP_Deprecated(AvlNet.OcrMlpModel, AvlNet.CharacterSample[], float, float, int, AvlNet.Size?, AvlNet.OcrMlpModel)

Trains an OCR multilayer perceptron classifier.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void TrainOcr_MLP_Deprecated(
	AvlNet.OcrMlpModel inOcrModel,
	AvlNet.CharacterSample[] inCharacterSamples,
	float inLearningRate,
	float inMomentum,
	int inIterationCount,
	AvlNet.Size? inCharacterSize,
	out AvlNet.OcrMlpModel outOcrModel
)

Parameters

inOcrModel
Type: AvlNet.OcrMlpModel
Initialized OcrMlpModel to train
inCharacterSamples
Type: AvlNet.CharacterSample
Training font created from sample regions
inLearningRate
Type: System.Single
Suppression level of changes during learning process
inMomentum
Type: System.Single
Value of classifier learning momentum
inIterationCount
Type: System.Int32
Learning iteration count
inCharacterSize
Type: System.Nullable<AvlNet.Size>
Size of fixed width font, or null.
outOcrModel
Type: AvlNet.OcrMlpModel
Trained OcrMlpModel used to recognize characters

See also