The scaled step tolerance.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual double StepTolerance { get; set; }
Visual Basic (Declaration)
Public Overridable Property StepTolerance As Double
Visual C++
public:
virtual property double StepTolerance {
	double get ();
	void set (double value);
}

Field Value

A double which is the step tolerance.

Remarks

The second stopping criterion for MinUnconMultiVar, the optimizer used by this ITrainer , is that the scaled distance between the last two steps be less than the step tolerance.

by default, StepTolerance = 3.66685e-11.

See Also