Gabriel Stechschulte

Results 5 issues of Gabriel Stechschulte

In the [elbo_interactive_plot.py](https://github.com/GStechschulte/machine-learning-and-simulation/blob/main/english/probabilistic_machine_learning/elbo_interactive_plot.py) script, the values in the variable KL_VALUES were computed using approximate KL-Divergence. In the tutorial on approximating the KL-Divergence, scalar values were returned, and not multiple values...

I have been following @ColCarroll [bayeux](https://github.com/jax-ml/bayeux) library and thought it would be interesting to see how Bambi could incorporate it to offer the users a wide range of samplers (more...

This draft PR is a work in progress and contains a JAX implementation of `MultinomialRV` for issue #1326. The implementation builds off the `Multinomial Distribution` [implementation](https://num.pyro.ai/en/v0.2.4/_modules/numpyro/distributions/util.html) in NumPyro. Likewise, the...

JAX
random variables

See Vincent's [Prior Predictive Checks (ppc) with marginaleffects and brms](https://arelbundock.com/posts/marginaleffects_priors/) blog post. The idea is to simulate from the model, without using the data, in order to refine the model...

Discussion
feature request

To change `bayeux` based sampler parameter values, we require passing `kwargs` like ```python3 kwargs = { "adapt.run": {"num_steps": 500}, "num_chains": 4, "num_draws": 250, "num_adapt_draws": 250 } blackjax_nuts_idata = model.fit(inference_method="blackjax_nuts", **kwargs)...

enhancement
good first issue