Hi to anyone who can help me.
I am tying to user the numpyro sampler as it is much faster for the model im trying to sample from. I’m basing my work of some old pymc3 code, and it is why i specify return_inferencedata=False so i can make use of already built plotting utilities. But an Inference object is returned. Is it simple not possible when using the numpyro sampler?
with mod:
trace = pm.sample(nuts_sampler=“numpyro”,draws=2000, tune=2000, chains=4, cores=8, target_accept=0.95, return_inferencedata=False)