Home | Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages |
#include <itkStandardGradientDescentOptimizer.h>
This class implements a gradient descent optimizer with a decaying gain.
If is a costfunction that has to be minimised, the following iterative algorithm is used to find the optimal parameters :
The gain at each iteration is defined by:
.
It is very suitable to be used in combination with a stochastic estimate of the gradient . For example, in image registration problems it is often advantageous to compute the metric derivative ( ) on a new set of randomly selected image samples in each iteration. You may set the parameter NewSamplesEveryIteration
to "true"
to achieve this effect. For more information on this strategy, you may have a look at:
S. Klein, M. Staring, J.P.W. Pluim, "Comparison of gradient approximation techniques for optimisation of mutual information in nonrigid registration", in: SPIE Medical Imaging: Image Processing, Editor(s): J.M. Fitzpatrick, J.M. Reinhardt, SPIE press, 2005, vol. 5747, Proceedings of SPIE, pp. 192-203.
Or:
S. Klein, M. Staring, J.P.W. Pluim, "Evaluation of Optimization Methods for Nonrigid Medical Image Registration using Mutual Information and B-Splines" IEEE Transactions on Image Processing, 2007, nr. 16(12), December.
This class also serves as a base class for other GradientDescent type algorithms, like the AcceleratedGradientDescentOptimizer.
Definition at line 65 of file itkStandardGradientDescentOptimizer.h.
Public Types | |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::CostFunctionType | CostFunctionType |
typedef Superclass::DerivativeType | DerivativeType |
typedef Superclass::MeasureType | MeasureType |
typedef Superclass::ParametersType | ParametersType |
typedef SmartPointer< Self > | Pointer |
typedef Superclass::ScaledCostFunctionPointer | ScaledCostFunctionPointer |
typedef Superclass::ScaledCostFunctionType | ScaledCostFunctionType |
typedef Superclass::ScalesType | ScalesType |
typedef StandardGradientDescentOptimizer | Self |
typedef Superclass::StopConditionType | StopConditionType |
typedef GradientDescentOptimizer2 | Superclass |
Public Types inherited from itk::GradientDescentOptimizer2 | |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::CostFunctionType | CostFunctionType |
typedef Superclass::DerivativeType | DerivativeType |
typedef Superclass::MeasureType | MeasureType |
typedef Superclass::ParametersType | ParametersType |
typedef SmartPointer< Self > | Pointer |
typedef Superclass::ScaledCostFunctionPointer | ScaledCostFunctionPointer |
typedef Superclass::ScaledCostFunctionType | ScaledCostFunctionType |
typedef Superclass::ScalesType | ScalesType |
typedef GradientDescentOptimizer2 | Self |
enum | StopConditionType { MaximumNumberOfIterations , MetricError , MinimumStepSize } |
typedef ScaledSingleValuedNonLinearOptimizer | Superclass |
Public Types inherited from itk::ScaledSingleValuedNonLinearOptimizer | |
typedef SmartPointer< const Self > | ConstPointer |
typedef Superclass::CostFunctionType | CostFunctionType |
typedef Superclass::DerivativeType | DerivativeType |
typedef Superclass::MeasureType | MeasureType |
typedef Superclass::ParametersType | ParametersType |
typedef SmartPointer< Self > | Pointer |
typedef ScaledCostFunctionType::Pointer | ScaledCostFunctionPointer |
typedef ScaledSingleValuedCostFunction | ScaledCostFunctionType |
typedef NonLinearOptimizer::ScalesType | ScalesType |
typedef ScaledSingleValuedNonLinearOptimizer | Self |
typedef SingleValuedNonLinearOptimizer | Superclass |
Public Member Functions | |
void | AdvanceOneStep (void) override |
virtual const char * | GetClassName () const |
virtual double | GetCurrentTime () const |
virtual double | GetInitialTime () const |
virtual double | GetParam_a () const |
virtual double | GetParam_A () const |
virtual double | GetParam_alpha () const |
virtual void | ResetCurrentTimeToInitialTime (void) |
virtual void | SetInitialTime (double _arg) |
virtual void | SetParam_a (double _arg) |
virtual void | SetParam_A (double _arg) |
virtual void | SetParam_alpha (double _arg) |
void | StartOptimization (void) override |
Public Member Functions inherited from itk::GradientDescentOptimizer2 | |
virtual void | AdvanceOneStep (void) |
virtual const char * | GetClassName () const |
virtual unsigned int | GetCurrentIteration () const |
virtual const DerivativeType & | GetGradient () |
virtual const double & | GetLearningRate () |
virtual const unsigned long & | GetNumberOfIterations () |
virtual const DerivativeType & | GetSearchDirection () |
virtual const StopConditionType & | GetStopCondition () |
virtual const double & | GetValue () |
virtual void | MetricErrorResponse (ExceptionObject &err) |
virtual void | ResumeOptimization (void) |
virtual void | SetLearningRate (double _arg) |
virtual void | SetNumberOfIterations (unsigned long _arg) |
virtual void | SetUseOpenMP (bool _arg) |
void | StartOptimization (void) override |
virtual void | StopOptimization (void) |
Public Member Functions inherited from itk::ScaledSingleValuedNonLinearOptimizer | |
virtual const char * | GetClassName () const |
const ParametersType & | GetCurrentPosition (void) const override |
virtual bool | GetMaximize () const |
virtual const ScaledCostFunctionType * | GetScaledCostFunction () |
virtual const ParametersType & | GetScaledCurrentPosition () |
bool | GetUseScales (void) const |
virtual void | InitializeScales (void) |
virtual void | MaximizeOff () |
virtual void | MaximizeOn () |
void | SetCostFunction (CostFunctionType *costFunction) override |
virtual void | SetMaximize (bool _arg) |
virtual void | SetUseScales (bool arg) |
Static Public Member Functions | |
static Pointer | New () |
Static Public Member Functions inherited from itk::GradientDescentOptimizer2 | |
static Pointer | New () |
Static Public Member Functions inherited from itk::ScaledSingleValuedNonLinearOptimizer | |
static Pointer | New () |
Protected Attributes | |
double | m_CurrentTime |
bool | m_UseConstantStep |
Protected Attributes inherited from itk::GradientDescentOptimizer2 | |
unsigned long | m_CurrentIteration |
DerivativeType | m_Gradient |
double | m_LearningRate |
unsigned long | m_NumberOfIterations |
DerivativeType | m_SearchDirection |
bool | m_Stop |
StopConditionType | m_StopCondition |
double | m_Value |
Protected Attributes inherited from itk::ScaledSingleValuedNonLinearOptimizer | |
ScaledCostFunctionPointer | m_ScaledCostFunction |
ParametersType | m_ScaledCurrentPosition |
Private Member Functions | |
void | operator= (const Self &) |
StandardGradientDescentOptimizer (const Self &) | |
Private Attributes | |
double | m_InitialTime |
double | m_Param_a |
double | m_Param_A |
double | m_Param_alpha |
typedef SmartPointer< const Self > itk::StandardGradientDescentOptimizer::ConstPointer |
Definition at line 75 of file itkStandardGradientDescentOptimizer.h.
typedef Superclass::CostFunctionType itk::StandardGradientDescentOptimizer::CostFunctionType |
Definition at line 87 of file itkStandardGradientDescentOptimizer.h.
Definition at line 86 of file itkStandardGradientDescentOptimizer.h.
typedef Superclass::MeasureType itk::StandardGradientDescentOptimizer::MeasureType |
Typedefs inherited from the superclass.
Definition at line 84 of file itkStandardGradientDescentOptimizer.h.
Definition at line 85 of file itkStandardGradientDescentOptimizer.h.
typedef SmartPointer< Self > itk::StandardGradientDescentOptimizer::Pointer |
Definition at line 74 of file itkStandardGradientDescentOptimizer.h.
typedef Superclass::ScaledCostFunctionPointer itk::StandardGradientDescentOptimizer::ScaledCostFunctionPointer |
Definition at line 90 of file itkStandardGradientDescentOptimizer.h.
typedef Superclass::ScaledCostFunctionType itk::StandardGradientDescentOptimizer::ScaledCostFunctionType |
Definition at line 89 of file itkStandardGradientDescentOptimizer.h.
typedef Superclass::ScalesType itk::StandardGradientDescentOptimizer::ScalesType |
Definition at line 88 of file itkStandardGradientDescentOptimizer.h.
Standard ITK.
Definition at line 71 of file itkStandardGradientDescentOptimizer.h.
typedef Superclass::StopConditionType itk::StandardGradientDescentOptimizer::StopConditionType |
Definition at line 91 of file itkStandardGradientDescentOptimizer.h.
Definition at line 72 of file itkStandardGradientDescentOptimizer.h.
|
protected |
|
inlineoverrideprotected |
Definition at line 136 of file itkStandardGradientDescentOptimizer.h.
|
private |
|
overridevirtual |
Sets a new LearningRate before calling the Superclass' implementation, and updates the current time.
Reimplemented from itk::GradientDescentOptimizer2.
Function to compute the parameter at time/iteration k.
|
virtual |
Run-time type information (and related methods).
Reimplemented from itk::GradientDescentOptimizer2.
Reimplemented in elastix::AdaGrad< TElastix >, itk::AdaptiveStepsizeOptimizer, elastix::AdaptiveStochasticGradientDescent< TElastix >, itk::AdaptiveStochasticGradientDescentOptimizer, elastix::PreconditionedStochasticGradientDescent< TElastix >, itk::PreconditionedASGDOptimizer, and elastix::StandardGradientDescent< TElastix >.
|
virtual |
Get the current time. This equals the CurrentIteration in this base class but may be different in inheriting classes, such as the AccelerateGradientDescent
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
static |
Method for creation through the object factory.
|
private |
|
inlinevirtual |
Set the current time to the initial time. This can be useful to 'reset' the optimisation, for example if you changed the cost function while optimisation. Be careful with this function.
Definition at line 127 of file itkStandardGradientDescentOptimizer.h.
|
virtual |
Set/Get the initial time. Should be >=0. This function is superfluous, since Param_A does effectively the same. However, in inheriting classes, like the AcceleratedGradientDescent the initial time may have a different function than Param_A. Default: 0.0
|
virtual |
Set/Get a.
|
virtual |
Set/Get A.
|
virtual |
Set/Get alpha.
|
override |
Set current time to 0 and call superclass' implementation.
|
protectedvirtual |
Function to update the current time This function just increments the CurrentTime by 1. Inheriting functions may implement something smarter, for example, dependent on the progress
Reimplemented in itk::AdaptiveStepsizeOptimizer, itk::AdaptiveStochasticGradientDescentOptimizer, and itk::PreconditionedASGDOptimizer.
|
protected |
The current time, which serves as input for Compute_a
Definition at line 148 of file itkStandardGradientDescentOptimizer.h.
|
private |
Settings
Definition at line 164 of file itkStandardGradientDescentOptimizer.h.
|
private |
Parameters, as described by Spall.
Definition at line 159 of file itkStandardGradientDescentOptimizer.h.
|
private |
Definition at line 160 of file itkStandardGradientDescentOptimizer.h.
|
private |
Definition at line 161 of file itkStandardGradientDescentOptimizer.h.
|
protected |
Constant step size or others, different value of k.
Definition at line 151 of file itkStandardGradientDescentOptimizer.h.
Generated on 1667476801 for elastix by 1.9.4 |