- #1
- 2,168
- 193
Recently I have shared a question about a program called SimpleMC and how to run it.
Running a Github File on VS code for windows 10- File system problem ( | Physics Forums
I am trying to understand an MCMC program. I manage to run it, but I am trying to understand the meaning of the some parameters in the analysis.
The code is something like this
This is for the metropolis-hastings algorithm. How my results depend on these parameters or what these parameters mean ?
I understood the nsamp and skip, I also kind of know what GRstop and checkGR means but I have no idea what temp and chainno means.
Running a Github File on VS code for windows 10- File system problem ( | Physics Forums
I am trying to understand an MCMC program. I manage to run it, but I am trying to understand the meaning of the some parameters in the analysis.
The code is something like this
Python:
[mcmc]
;Nsamples
nsamp = 50000
;Burn-in
skip = 300
;temperature at which to sample
temp = 2
; Gelman-Rubin for convergence
GRstop = 0.01
;every number of steps check the GR-criteria
checkGR = 500
;1 if single cpu , otherwise is giving by the nproc-> mpi -np #
chainno = 0
This is for the metropolis-hastings algorithm. How my results depend on these parameters or what these parameters mean ?
I understood the nsamp and skip, I also kind of know what GRstop and checkGR means but I have no idea what temp and chainno means.
Last edited: