Skip to content

Commit

Permalink
FIX KWARG BUG (#686)
Browse files Browse the repository at this point in the history
* FIX KWARG BUG

* FIX KWARG BUG
  • Loading branch information
reubenharry authored Jun 3, 2024
1 parent 3fbdac6 commit a3e235f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion blackjax/mcmc/mclmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ def build_kernel(logdensity_fn, sqrt_diag_cov, integrator):
"""

step = with_isokinetic_maruyama(integrator(logdensity_fn, sqrt_diag_cov))
step = with_isokinetic_maruyama(
integrator(logdensity_fn=logdensity_fn, sqrt_diag_cov=sqrt_diag_cov)
)

def kernel(
rng_key: PRNGKey, state: IntegratorState, L: float, step_size: float
Expand Down

0 comments on commit a3e235f

Please sign in to comment.