I'm trying to sample multiple chains in PyMC3. In PyMC2 I would do something like this:
for i in range(N):
model.sample(iter=iter, burn=burn, thin = thin)
How should I do the same thing in PyMC3? I saw there is a 'njobs' argument in the 'sample' method, but it throws an error when I set a value for it. I want to use sampled chains to get 'pymc.gelman_rubin' output.
To run them serially, you can use a similar approach to your PyMC 2 example. The main difference is that each call to
sample
returns a multi-chain trace instance (containing just a single chain in this case).merge_traces
will take a list of multi-chain instances and create a single instance with all the chains.