Class BFGSOptimiser
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
public class BFGSOptimiser extends CompositePathOptimiser
The 'advanced'PathSolver
implementing the variable-metric (quasi-Newton) search method.The latter does not only rely on the gradient (first derivatives) of the target function, as commonly used in simpler optimisation methods, such as the steepest descent method, but also accounts for the second-order derivatives. This leads to an additional term in the equation defining the minimum direction. This term is called the 'Hessian' matrix, which is calculated approximately using the BFGS formula. Note that the initial value for the 'Hessian' matrix is an identity matrix. It is recommended to use this
PathSolver
in combination with theWolfeSolver
.- See Also:
- Wikipedia
page,
WolfeOptimiser
, Serialized Form
-
-
Field Summary
-
Fields inherited from class pulse.search.direction.CompositePathOptimiser
EPS, MAX_FAILED_ATTEMPTS
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BFGSOptimiser
getInstance()
This class uses a singleton pattern, meaning there is only instance of this class.void
prepare(GeneralTask task)
Calculated the gradient at the end of this step.String
toString()
-
Methods inherited from class pulse.search.direction.CompositePathOptimiser
getLinearOptimiserDescriptor, getLinearSolver, initState, iteration, listedTypes, setLinearSolver
-
Methods inherited from class pulse.search.direction.GradientBasedOptimiser
dx, getGradientResolution, getGradientStep, gradient, listedKeywords, reset, set, setGradientResolution
-
Methods inherited from class pulse.search.direction.PathOptimiser
compatibleWith, genericProperties, getErrorTolerance, getMaxIterations, getSolver, ignoreSiblings, setErrorTolerance, setInstance, setMaxIterations, setSolver, update
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, initListeners, isListedNumericType, isListedParameter, numericData, parameterListChanged, removeListeners, setPrefix, updateProperties, updateProperty
-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperty, numericProperties, numericProperty, property, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Method Detail
-
prepare
public void prepare(GeneralTask task) throws SolverException
Calculated the gradient at the end of this step. Invokes
hessian(...)
to calculate the Hessian matrix at the<i>k</i>+1
step using the and gradient values, the previously calculated Hessian matrix on step k, and the result of the linear search αk+1.- Specified by:
prepare
in classPathOptimiser
- Parameters:
task
- theSearchTask
undergoing optimisation- Throws:
SolverException
-
toString
public String toString()
- Overrides:
toString
in classPathOptimiser
-
getInstance
public static BFGSOptimiser getInstance()
This class uses a singleton pattern, meaning there is only instance of this class.- Returns:
- the single (static) instance of this class
-
-