Click or drag to resize

BackpropagationRunAsyncTraining Method

Start training the given network.

Namespace:  RavingBots.MagicGestures.AI.Neural.Classic
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public void RunAsyncTraining(
	MultilayerPerceptron mlp,
	SampleData[] samples,
	BackpropagationSettings settings
)

Parameters

mlp
Type: RavingBots.MagicGestures.AI.Neural.ClassicMultilayerPerceptron
The network to train. Must not be .
samples
Type: RavingBots.MagicGestures.AI.CommonSampleData
The training set.
settings
Type: RavingBots.MagicGestures.AI.Neural.ClassicBackpropagationSettings
The settings to use.
Remarks
Important note Important
This method does not wait until the training completes. If the previous training is still running, it will be interrupted.
Important note Important
The training set must be valid (IsValidTrainingSet(SampleData)). The neural network instance must match the training set (IsMatching(SampleData)). The settings must be valid (IsValid).
See Also