Click or drag to resize

PerceptronMomentum Field

The array of changes.

Namespace:  RavingBots.MagicGestures.AI.Neural.Classic
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
[NonSerializedAttribute]
internal float[] Momentum

Field Value

Type: Single
Remarks
This array is filled and used during the training, where every element is a last value added to the corresponding weight (Weights[i] += delta; Momentum[i] = delta;).
See Also