| 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 [NonSerializedAttribute]
internal float[] Momentum
Field Value
Type:
SingleRemarks
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