Does PyMC3 have any kind of system to automatically identify when two distributions are conjugate, and then take advantage of the conjugacy for faster sampling? For larger models, using conjugate priors where such priors are just as good as non-conjugate priors can speed up sampling dramatically.
At the moment PyMC3 cannot do this automatically and users have to choose a compound distribution if they wish to exploit conjugacy (eg. with the BetaBinomial or Dirichlet Multinomial distributions).
Outside of a few compound distributions that are already implemented, the user would have to write his own if they wished to exploit this.
Automatic reparametrization is something we probably want to implement somewhere down the road, but we still need to implement the compound distributions.
On the other hand NUTS is often fast enough at sampling multiple variables that conjugacy is not so critical.
There is also an exotic example of how to build a custom sampler in PyMC3 that takes advantage of conjugacy: Using a custom step method for sampling from locally conjugate posterior distributions — PyMC3 3.11.2 documentation
Do compound distributions have any specific documentation, or are they all already contained in the list of Continuous distributions? I can’t find any distributions like NormalInverseGamma (for Normal with unknown variance that has a conjugate InverseGamma distribution)?
We don’t have any cases that are not in the docs. Only ones I remember are the BetaBinomial
and DirichletMultinomial
Adding more of them would be a great contribution :).