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

probabilistic-programming

Here are 365 public repositories matching this topic...

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

cscherrer
cscherrer commented Mar 26, 2021

Rather than trying to rebuild all functionality from Distributions.jl, we're first focusing on reimplementing logdensity (logpdf in Distributions), and delegating most other functions to the current Distributions implementations.

So for example, we have

distproxy(d::Normal{(:μ, :σ)}) = Dists.Normal(d.μ, d.σ)

This makes some functions in Distributions.jl available through

rlouf
rlouf commented Dec 30, 2021

Hey 👋

You are here because you considered contributing to blackjax for at least a split second. Thank you! But sometimes we are just not quite sure what to work on/don't want to bother the maintainer. We've been there. That is why we put together a list of the projects that are up for grabs on blackjax.

**You can pick any of these, open an issue to signal you are working on it and

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