Skip to content
Snippets Groups Projects

changing default dynesty settings

Files
2
@@ -44,7 +44,7 @@ class Dynesty(NestedSampler):
Other Parameters
----------------
npoints: int, (250)
npoints: int, (1000)
The number of live points, note this can also equivalently be given as
one of [nlive, nlives, n_live_points]
bound: {'none', 'single', 'multi', 'balls', 'cubes'}, ('multi')
@@ -72,15 +72,15 @@ class Dynesty(NestedSampler):
"""
default_kwargs = dict(bound='multi', sample='rwalk',
verbose=True, periodic=None,
check_point_delta_t=600, nlive=500,
first_update=None,
check_point_delta_t=600, nlive=1000,
first_update=None, walks=100,
npdim=None, rstate=None, queue_size=None, pool=None,
use_pool=None, live_points=None,
logl_args=None, logl_kwargs=None,
ptform_args=None, ptform_kwargs=None,
enlarge=None, bootstrap=None, vol_dec=0.5, vol_check=2.0,
facc=0.5, slices=5,
walks=None, update_interval=None, print_func=None,
update_interval=None, print_func=None,
dlogz=0.1, maxiter=None, maxcall=None,
logl_max=np.inf, add_live=True, print_progress=True,
save_bounds=True)
Loading