The maximum step size.

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

Syntax

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

Field Value

A nonnegative double value specifying the maximum allowable stepsize in the optimizer.

Remarks

By default, MaximumStepsize = 10^3 || w ||_2, where w are the values of the Weights in the network when training starts.

The value of MaximumStepsize will be equal to -999.0 if the default value is to be used and the Train method has not been called.

See Also