Encog.Neural.Networks.Training.Competitive.CompetitiveTraining.Decay C# (CSharp) Method

Decay() public method

Called to decay the learning rate and radius by the specified amount.
public Decay ( double d ) : void
d double The percent to decay by.
return void
        public void Decay(double d)
        {
            this.radius *= (1.0 - d);
            this.LearningRate *= (1.0 - d);
        }

Same methods

CompetitiveTraining::Decay ( double decayRate, double decayRadius ) : void