The Wayback Machine - https://web.archive.org/web/20210823091754/https://github.com/topics/probabilistic-programming
Skip to content
#

probabilistic-programming

Here are 344 public repositories matching this topic...

lumip
lumip commented Aug 9, 2021

In SVI latent random variables sampled from the guide completely mask those sampled in the model during inference. However, nothing prevents us from specifying different shapes for such a sample site in model and guide respectively. This makes it easy to introduce confusing bugs when code in the model expects a certain shape that is different than what guide provides. This can easily happen if the

willtebbutt
willtebbutt commented Oct 19, 2019

There are a variety of interesting optimisations that can be performed on kernels of the form

k(x, z) = w_1 * k_1(x, z) + w_2 * k_2(x, z) + ... + w_L k_L(x, z)

A naive recursive implementation in terms of the current Sum and Scaled kernels hides opportunities for parallelism in the computation of each term, and the summation over terms.

Notable examples of kernels with th

Improve this page

Add a description, image, and links to the probabilistic-programming 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 probabilistic-programming topic, visit your repo's landing page and select "manage topics."

Learn more