I\'m trying to compute the best fit of two forms of an exponential to some x, y
data (the data file can be downloaded from here)
Here\'s the code:
Note that a=0
in the estimate by zunzun and in your first model. So they are just estimating a constant. So, b
in the first case and b
and c
in the second case are irrelevant and not identified.
Zunzun also uses differential evolution as a global solver, the last time I looked at it. Scipy now has basinhopping as global optimizer that looks pretty good, that is worth a try in cases where local minima are possible.
My "cheap" way, since the parameters don't have a huge range in your example: try random starting values
np.random.seed(1)
err_last = 20
best = None
for i in range(10):
start = np.random.uniform(-10, 10, size=4)
# Get parameters estimate
try:
popt2, pcov2 = curve_fit(func2, xdata, ydata, p0=start)
except RuntimeError:
continue
err = ((ydata - func2(xdata, *popt2))**2).sum()
if err < err_last:
err_last = err
print err
best = popt2
za = 6.2426224704624871E-15
zb = 1.5217697532005228E+00
zc = 2.0660424037614489E-01
zd = 2.1570805929514186E-02
zz = np.array([za,zb,zc,zd])
print 'zz', zz
print 'cf', best
print 'zz', ((ydata - func2(xdata, *zz))**2).sum()
print 'cf', err_last
The last part prints (zz is zunzun, cf is curve_fit)
zz [ 6.24262247e-15 1.52176975e+00 2.06604240e-01 2.15708059e-02]
cf [ 1.24791299e-16 1.52176944e+00 4.11911831e+00 2.15708019e-02]
zz 9.52135153898
cf 9.52135153904
Different parameters than Zunzun for b
and c
, but the same residual sum of squares.
Addition
a * np.exp(b * x + c) + d = np.exp(b * x + (c + np.log(a))) + d
or
a * np.exp(b * x + c) + d = (a * np.exp(c)) * np.exp(b * x) + d
The second function isn't really different from the first function. a
and c
are not separately identified. So optimizers, that use the derivative information, will also have problems because the Jacobian is singular in some directions, if I see this correctly.
Zunzun.com uses the Differential Evolution genetic algorithm (DE) to find initial parameter estimates which are then passed to the Levenberg-Marquardt solver in scipy. DE is not actually used as a global optimizer per se, but rather as an "initial parameter guesser".
You can find links to the BSD-licensed Python source code for the zunzun.com fitter at the bottom of any of the site's web pages - it has many comprehensive examples - so there is no immediate need to code it yourself. Let me know if you have any questions and I'll do my best to help.
James Phillips zunzun@zunzun.com