LINE_SEARCH
Detail settings or linesearch method. [Edit on GitHub]
Subsections
Keywords
Keyword descriptions
- EPS_STEP_SIZE
Type: real
Default: 1.00000000E-001Description: Convergence criterion of GOLD method.
- INITIAL_STEP_SIZE
Type: real
Default: 1.00000000E-001Description: Initial step length
- MAX_STEP_SIZE
Type: real
Default: 3.00000000E+000Description: Maximum step length
- METHOD
Type: enum
Default: ADAPTDescription: Linesearch method.
Valid values:
ADAPTextrapolates usually based on 3 points, uses additional points on demand, very robust.3PNTextrapolate based on 3 points2PNTextrapolate based on 2 points and the slope (super fast, but might get stuck at saddle points)GOLDperform 1D golden section search of the minimum (very expensive)NONEalways take steps of fixed INITIAL_STEP_SIZE
Mentions: ⭐PAO-ML
- TINY_STEP_SIZE
Type: real
Default: 2.00000000E-003Description: Step length taken if negative step is suggested.