Update VItamin and Bilby with Different Noises authored by Wei Changfeng's avatar Wei Changfeng
...@@ -136,16 +136,16 @@ I'm not sure if this has an impact when Bilby runs, though they point to the sam ...@@ -136,16 +136,16 @@ I'm not sure if this has an impact when Bilby runs, though they point to the sam
Tutorial: Tutorial:
``` ```
result = bilby.run_sampler( result = bilby.run_sampler(
likelihood=likelihood, priors=priors, sampler='dynesty', npoints=2500, likelihood=likelihood, priors=priors, sampler='cpnest', npoints=2000,
outdir=outdir, injection_parameters=injection_parameters, outdir=outdir,
label=label, maxmcmc=5000, label=label, maxmcmc=2000,
conversion_function=bilby.gw.conversion.generate_all_bbh_parameters) conversion_function=bilby.gw.conversion.generate_all_bbh_parameters)
``` ```
Mine: Mine:
``` ```
result = bilby.run_sampler( result = bilby.run_sampler(
likelihood=likelihood, priors=priors, sampler='dynesty', npoints=1000, likelihood=likelihood, priors=priors, label=label,outdir=outdir,sampler='dynesty',
outdir=outdir, label=label) nlive=1000, sample='rwalk',walks =100,nact=50,check_point_delta_t=1800,check_point_plot=True,maxmcmc=20000,rburn=15000)
``` ```
> generate_all_bbh_parameters function: From either a single sample or a set of samples fill in all missing BBH parameters in place. > generate_all_bbh_parameters function: From either a single sample or a set of samples fill in all missing BBH parameters in place.
... ...
......