adjusted tolerances, with little to no effect on results
This commit is contained in:
parent
a2bb97fe22
commit
2a687571c6
10
fitter.py
10
fitter.py
@ -118,7 +118,15 @@ class Fitter:
|
|||||||
(10, 100, 100, 100, 10, 10),
|
(10, 100, 100, 100, 10, 10),
|
||||||
)
|
)
|
||||||
|
|
||||||
res = least_squares(self.cost_func, init_parameters, bounds=bounds, xtol=1e-10)
|
res = least_squares(
|
||||||
|
self.cost_func,
|
||||||
|
init_parameters,
|
||||||
|
bounds=bounds,
|
||||||
|
xtol=1e-10,
|
||||||
|
ftol=1e-12,
|
||||||
|
verbose=2
|
||||||
|
)
|
||||||
|
|
||||||
print()
|
print()
|
||||||
print(" Parameters: [gGaL, ECal, K_pc_half, tau_xfer, tau_RC, offset]")
|
print(" Parameters: [gGaL, ECal, K_pc_half, tau_xfer, tau_RC, offset]")
|
||||||
print(" Initial:", init_parameters.tolist())
|
print(" Initial:", init_parameters.tolist())
|
||||||
|
Loading…
Reference in New Issue
Block a user