Skip to content
Snippets Groups Projects
Unverified Commit 9f62d332 authored by Walter Van Herck's avatar Walter Van Herck Committed by GitHub
Browse files

Merge pull request #781 from DmitryYurov/develop

Fix parameters in fitting example
parents f25146ce 75080622
No related branches found
No related tags found
No related merge requests found
......@@ -210,7 +210,7 @@ def run_fitting():
print("Start preliminary fitting of experimental data:\n")
preliminary_result = differential_evolution(objective_primary, bounds,
maxiter=20, popsize=10,
maxiter=20, popsize=60,
mutation=(0.5, 1.5),
disp=True, tol=1e-5)
......@@ -227,7 +227,7 @@ def run_fitting():
fine_tuning_result = differential_evolution(objective_fine, bounds,
fixed_args, maxiter=20,
popsize=10, mutation=(0.5, 1.5),
popsize=40, mutation=(0.5, 1.5),
disp=True, tol=1e-5)
result = create_par_dict(*fixed_args, *fine_tuning_result.x)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment