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
Tutorial:
```
result = bilby.run_sampler(
likelihood=likelihood, priors=priors, sampler='dynesty', npoints=2500,
outdir=outdir,
label=label, maxmcmc=5000,
likelihood=likelihood, priors=priors, sampler='cpnest', npoints=2000,
injection_parameters=injection_parameters, outdir=outdir,
label=label, maxmcmc=2000,
conversion_function=bilby.gw.conversion.generate_all_bbh_parameters)
```
Mine:
```
result = bilby.run_sampler(
likelihood=likelihood, priors=priors, sampler='dynesty', npoints=1000,
outdir=outdir, label=label)
likelihood=likelihood, priors=priors, label=label,outdir=outdir,sampler='dynesty',
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.
......
......