Replies: 2 comments 4 replies
-
I'm guessing you'll likely need quite a few more iterations. What does the log probability vs iteration plot look like (is the solution still improving or is the value of 101 really sufficient to remove the burnin time)? |
Beta Was this translation helpful? Give feedback.
1 reply
-
If I want to increase the number of iterations of MCMC, do you suggest how many should be appropriate? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I tried to run MCMC of three datasets to get the uncertainty of some parameters, I found that the value of 'acceptance-fractions' was too small after checking the convergence, and the reasonable range given by the literature Foreman-Mackey et al. (2013) was about 0.2-0.5. and This corner plot is not quite what I expected. The distribution of points is a little bit discrete. I'm sure my parameter range Settings are reasonable and the value of 'ntriangles' was 3000. Can you give me some advice to improve the value of 'acceptance-fractions' and corner plot.
my script:
b.add_distribution({'q': phoebe.gaussian_around(0.01),
'fillout_factor': phoebe.gaussian_around(0.03),
'incl@binary': phoebe.gaussian_around(8),
'teff@secondary': phoebe.gaussian_around(600),
'pblum@primary@lcB': phoebe.gaussian_around(2),
'pblum@primary@lcV': phoebe.gaussian_around(2),
'pblum@primary@lcR': phoebe.gaussian_around(2)},
distribution='ball01')
b.add_solver('sampler.emcee',
init_from='ball01',
compute='phoebe01',
solver='emcee_solver',overwrite=True)
b.run_solver('emcee_solver', niters=1000, nwalkers=20, solution='emcee_sol',overwrite=True)
I also tried 2000 and 3000 niters, but still no improvement.
Beta Was this translation helpful? Give feedback.
All reactions