From 796305804076a4fc0973f1a9d2d2c4e417451a32 Mon Sep 17 00:00:00 2001 From: "a.ott" Date: Thu, 9 Jul 2020 14:01:21 +0200 Subject: [PATCH] increase weights for baseline parameters --- Fitter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fitter.py b/Fitter.py index a4144e2..25d0e1c 100644 --- a/Fitter.py +++ b/Fitter.py @@ -100,7 +100,7 @@ class Fitter: # error_list = [error_bf, error_vs, error_sc, error_cv, # error_f_inf, error_f_inf_slope, error_f_zero, error_f_zero_slope] - error_weights = (0, 1, 1, 1, 1, 1, 1, 1, 0) + error_weights = (0, 2, 2, 2, 1, 1, 1, 1, 0) fmin = minimize(fun=self.cost_function_all, args=(error_weights,), x0=x0, method="Nelder-Mead", options={"initial_simplex": initial_simplex, "xatol": 0.001, "maxfev": 200, "maxiter": 400})