mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
[apps/regression] Increase the iterations limit to compute a regression
The exponential regression on the following data now works: 1 120000 3 130000 6 150000 8 160000
This commit is contained in:
committed by
EmilieNumworks
parent
8308068b69
commit
e7d2c61cec
@@ -47,7 +47,7 @@ private:
|
||||
virtual double partialDerivate(double * modelCoefficients, int derivateCoefficientIndex, double x) const = 0;
|
||||
|
||||
// Levenberg-Marquardt
|
||||
static constexpr double k_maxIterations = 100;
|
||||
static constexpr double k_maxIterations = 300;
|
||||
static constexpr double k_maxMatrixInversionFixIterations = 10;
|
||||
static constexpr double k_initialLambda = 0.001;
|
||||
static constexpr double k_lambdaFactor = 10;
|
||||
|
||||
Reference in New Issue
Block a user