Skip to content
#

bayesian-methods

Here are 238 public repositories matching this topic...

bob-carpenter
bob-carpenter commented May 23, 2020

Summary:

It'd be nice to have a builder pattern for var contexts to make them easy to construct for testing. Something that could be used like this:

MatrixXd m(3, 2); 
...
var_context vc
  = var_context::builder()
    .matrix("a", m)
    .real("f", 2.3)
    .build();

Current Version:

v2.23.0

ben18785
ben18785 commented Jan 28, 2021

Suppose one chain is stuck on one mode; another on another mode. If those two chains may sample independently from each mode, the ESSs will be high when, really, they should be near zero since the samples don't represent anything like independently from the overall distribution. This is why multichain ESS makes sense and we should implement it. I feel like this will give a much better picture of t

Improve this page

Add a description, image, and links to the bayesian-methods topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the bayesian-methods topic, visit your repo's landing page and select "manage topics."

Learn more