DeltasMinimumReachedBP(MaximumLimitValue: Double): Boolean;
MaximumLimitValue. The delta value.
The DeltasMinimumReachedBP method returns whether the delta value has attained the assigned level.
The method is used only in back-propagation networks. Available values:
True. The delta value for all synapse weights is less than MaximumLimitValue. The learning process is completed.
False. Maximum delta value for all synapse weights is greater than MaximumLimitValue. To get maximum delta value, use INeuralNetwork.GetMaximumWeightDelta.
DeltasMinimumReachedBP can be called after each execution of the INeuralNetwork.LearnBack method for learning process control.
The method use is given in the example for INeuralNetwork.LearnBack.
See also: