Skip to content

Commit

Permalink
best moves
Browse files Browse the repository at this point in the history
  • Loading branch information
twallema committed Oct 20, 2023
1 parent d9138b3 commit e39518a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pySODM/optimization/mcmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
abs_dir = os.path.dirname(__file__)

def run_EnsembleSampler(pos, max_n, identifier, objective_function, objective_function_args=None, objective_function_kwargs=None,
moves=[(emcee.moves.DESnookerMove(), 0.1), (emcee.moves.DEMove(), 0.4 * 0.9), (emcee.moves.DEMove(gamma0=1.0), 0.4 * 0.1),(emcee.moves.KDEMove(), 0.5)],
moves=[(emcee.moves.StretchMove(a=0.5), 0.6), (emcee.moves.DESnookerMove(), 0.1), (emcee.moves.DEMove(), 0.3)],
fig_path=None, samples_path=None, print_n=10, backend=None, processes=1, progress=True, settings_dict={}):
"""Wrapper function to setup an `emcee.EnsembleSampler` and handle all backend-related tasks.
Expand Down

0 comments on commit e39518a

Please sign in to comment.