|
BroydenFletcherGoldfarbShannoCorrections Property
|
The number of corrections to approximate the inverse Hessian matrix.
Default is 6. Values less than 3 are not recommended. Large values
will result in excessive computing time.
Namespace:
Accord.Math.Optimization
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public int Corrections { get; set; }
Public Property Corrections As Integer
Get
Set
Request Example
View SourceProperty Value
Type:
Int32Remarks
The L-BFGS routine stores the computation results of the previous m
iterations to approximate the inverse Hessian matrix of the current
iteration. This parameter controls the size of the limited memories
(corrections). The default value is 6. Values less than 3 are not
recommended. Large values will result in excessive computing time.
See Also