Package | Description |
---|---|
jsat.math.optimization |
Modifier and Type | Class and Description |
---|---|
class |
BacktrackingArmijoLineSearch
An implementation of Backtraking line search using the Armijo rule.
|
class |
WolfeNWLineSearch
An implementation of the Wolfe Line Search algorithm described by Nocedal and
Wright in Numerical Optimization (2nd edition) on pages 59-63.
|
Modifier and Type | Method and Description |
---|---|
LineSearch |
LineSearch.clone()
Returns a clone of the line search object
|
LineSearch |
LBFGS.getLineSearch()
Returns the line search method used at each iteration
|
LineSearch |
BFGS.getLineSearch()
Returns the line search method used at each iteration
|
Modifier and Type | Method and Description |
---|---|
void |
LBFGS.setLineSearch(LineSearch lineSearch)
Sets the line search method used at each iteration
|
void |
BFGS.setLineSearch(LineSearch lineSearch)
Sets the line search method used at each iteration
|
Constructor and Description |
---|
BFGS(int maxIterations,
LineSearch lineSearch)
Creates a new BFGS optimization object
|
LBFGS(int m,
int maxIterations,
LineSearch lineSearch)
Creates a new L-BFGS optimization object
|
Copyright © 2017. All rights reserved.