Encog.Neural.SOM.Training.Neighborhood.BasicTrainSOM.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)
        {
            _radius *= (1.0d - d);
            _learningRate *= (1.0d - d);
        }

Same methods

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