LevenbergMarquardtParams.h
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2 
3  * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4  * Atlanta, Georgia 30332-0415
5  * All Rights Reserved
6  * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7 
8  * See LICENSE for the license information
9 
10  * -------------------------------------------------------------------------- */
11 
21 #pragma once
22 
25 
26 namespace gtsam {
27 
28 class LevenbergMarquardtOptimizer;
29 
36 
37 public:
39  enum VerbosityLM {
40  SILENT = 0, SUMMARY, TERMINATION, LAMBDA, TRYLAMBDA, TRYCONFIG, DAMPED, TRYDELTA
41  };
42 
43  static VerbosityLM verbosityLMTranslator(const std::string &s);
44  static std::string verbosityLMTranslator(VerbosityLM value);
46 
47 public:
48 
49  double lambdaInitial;
50  double lambdaFactor;
55  std::string logFile;
58  double minDiagonal;
59  double maxDiagonal;
60 
62  : verbosityLM(SILENT),
63  diagonalDamping(false),
64  minDiagonal(1e-6),
65  maxDiagonal(1e32) {
66  SetLegacyDefaults(this);
67  }
68 
70  // Relevant NonlinearOptimizerParams:
71  p->maxIterations = 100;
72  p->relativeErrorTol = 1e-5;
73  p->absoluteErrorTol = 1e-5;
74  // LM-specific:
75  p->lambdaInitial = 1e-5;
76  p->lambdaFactor = 10.0;
77  p->lambdaUpperBound = 1e5;
78  p->lambdaLowerBound = 0.0;
79  p->minModelFidelity = 1e-3;
80  p->diagonalDamping = false;
81  p->useFixedLambdaFactor = true;
82  }
83 
84  // these do seem to work better for SFM
86  // Relevant NonlinearOptimizerParams:
87  p->maxIterations = 50;
88  p->absoluteErrorTol = 0; // No corresponding option in CERES
89  p->relativeErrorTol = 1e-6; // This is function_tolerance
90  // LM-specific:
91  p->lambdaUpperBound = 1e32;
92  p->lambdaLowerBound = 1e-16;
93  p->lambdaInitial = 1e-04;
94  p->lambdaFactor = 2.0;
95  p->minModelFidelity = 1e-3; // options.min_relative_decrease in CERES
96  p->diagonalDamping = true;
97  p->useFixedLambdaFactor = false; // This is important
98  }
99 
102  SetLegacyDefaults(&p);
103  return p;
104  }
105 
108  SetCeresDefaults(&p);
109  return p;
110  }
111 
113  const NonlinearFactorGraph& graph) {
114  if (!params.ordering)
115  params.ordering = Ordering::Create(params.orderingType, graph);
116  return params;
117  }
118 
120  const Ordering& ord) {
121  params.ordering = ord;
122  return params;
123  }
124 
126  void print(const std::string& str = "") const override;
127 
130  bool getDiagonalDamping() const { return diagonalDamping; }
131  double getlambdaFactor() const { return lambdaFactor; }
132  double getlambdaInitial() const { return lambdaInitial; }
133  double getlambdaLowerBound() const { return lambdaLowerBound; }
134  double getlambdaUpperBound() const { return lambdaUpperBound; }
135  bool getUseFixedLambdaFactor() { return useFixedLambdaFactor; }
136  std::string getLogFile() const { return logFile; }
137  std::string getVerbosityLM() const { return verbosityLMTranslator(verbosityLM);}
138 
139  void setDiagonalDamping(bool flag) { diagonalDamping = flag; }
140  void setlambdaFactor(double value) { lambdaFactor = value; }
141  void setlambdaInitial(double value) { lambdaInitial = value; }
142  void setlambdaLowerBound(double value) { lambdaLowerBound = value; }
143  void setlambdaUpperBound(double value) { lambdaUpperBound = value; }
144  void setUseFixedLambdaFactor(bool flag) { useFixedLambdaFactor = flag;}
145  void setLogFile(const std::string& s) { logFile = s; }
146  void setVerbosityLM(const std::string& s) { verbosityLM = verbosityLMTranslator(s);}
147  // @}
150 
152  std::shared_ptr<NonlinearOptimizerParams> clone() const {
153  return std::shared_ptr<NonlinearOptimizerParams>(new LevenbergMarquardtParams(*this));
154  }
155 
157 };
158 
159 }
void print(const Matrix &A, const string &s, ostream &stream)
Definition: Matrix.cpp:155
static Ordering Create(OrderingType orderingType, const FACTOR_GRAPH &graph)
Factor Graph consisting of non-linear factors.
double lambdaFactor
The amount by which to multiply or divide lambda when adjusting lambda (default: 10.0)
std::shared_ptr< NonlinearOptimizerParams > clone() const
double maxDiagonal
when using diagonal damping saturates the maximum diagonal entries (default: 1e32) ...
double minModelFidelity
Lower bound for the modelFidelity to accept the result of an LM iteration.
static LevenbergMarquardtParams CeresDefaults()
NonlinearFactorGraph graph
static LevenbergMarquardtParams ReplaceOrdering(LevenbergMarquardtParams params, const Ordering &ord)
double absoluteErrorTol
The maximum absolute error decrease to stop iterating (default 1e-5)
static const SmartProjectionParams params
double relativeErrorTol
The maximum relative error decrease to stop iterating (default 1e-5)
std::string logFile
an optional CSV log file, with [iteration, time, error, lambda]
Definition: pytypes.h:1403
Array< double, 1, 3 > e(1./3., 0.5, 2.)
RealScalar s
void setLogFile(const std::string &s)
bool useFixedLambdaFactor
if true applies constant increase (or decrease) to lambda according to lambdaFactor ...
static void SetCeresDefaults(LevenbergMarquardtParams *p)
traits
Definition: chartTesting.h:28
double lambdaLowerBound
The minimum lambda used in LM (default: 0)
bool diagonalDamping
if true, use diagonal of Hessian
double minDiagonal
when using diagonal damping saturates the minimum diagonal entries (default: 1e-6) ...
float * p
void setVerbosityLM(const std::string &s)
static LevenbergMarquardtParams LegacyDefaults()
static LevenbergMarquardtParams EnsureHasOrdering(LevenbergMarquardtParams params, const NonlinearFactorGraph &graph)
double lambdaUpperBound
The maximum lambda to try before assuming the optimization has failed (default: 1e5) ...
Parameters for nonlinear optimization.
Ordering::OrderingType orderingType
The method of ordering use during variable elimination (default COLAMD)
VerbosityLM verbosityLM
The verbosity level for Levenberg-Marquardt (default: SILENT), see also NonlinearOptimizerParams::ver...
std::optional< Ordering > ordering
The optional variable elimination ordering, or empty to use COLAMD (default: empty) ...
static void SetLegacyDefaults(LevenbergMarquardtParams *p)
size_t maxIterations
The maximum iterations to stop iterating (default 100)
double lambdaInitial
The initial Levenberg-Marquardt damping term (default: 1e-5)


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:34:33