-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve: Add progress bar to run_inference_algorithm (#614)
* Add progress bar to run_inference_algorithm * Add progress_bar as kwarg defaulting to False * Fix bug in run_inference_algorithm and add test --------- Co-authored-by: Paul Scemama <[email protected]>
- Loading branch information
1 parent
540db41
commit 08e0d75
Showing
2 changed files
with
61 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import chex | ||
import jax | ||
import jax.numpy as jnp | ||
from absl.testing import absltest, parameterized | ||
|
||
from blackjax.mcmc.hmc import hmc | ||
from blackjax.util import run_inference_algorithm | ||
|
||
|
||
class RunInferenceAlgorithmTest(chex.TestCase): | ||
def setUp(self): | ||
super().setUp() | ||
self.key = jax.random.key(42) | ||
self.algorithm = hmc( | ||
logdensity_fn=self.logdensity_fn, | ||
inverse_mass_matrix=jnp.eye(2), | ||
step_size=1.0, | ||
num_integration_steps=1000, | ||
) | ||
self.num_steps = 10 | ||
|
||
def check_compatible(self, initial_state_or_position, progress_bar): | ||
""" | ||
Runs 10 steps with `run_inference_algorithm` starting with | ||
`initial_state_or_position` and potentially a progress bar. | ||
""" | ||
_ = run_inference_algorithm( | ||
self.key, | ||
initial_state_or_position, | ||
self.algorithm, | ||
self.num_steps, | ||
progress_bar, | ||
) | ||
|
||
@parameterized.parameters([True, False]) | ||
def test_compatible_with_initial_pos(self, progress_bar): | ||
self.check_compatible(jnp.array([1.0, 1.0]), progress_bar) | ||
|
||
@parameterized.parameters([True, False]) | ||
def test_compatible_with_initial_state(self, progress_bar): | ||
state = self.algorithm.init(jnp.array([1.0, 1.0])) | ||
self.check_compatible(state, progress_bar) | ||
|
||
@staticmethod | ||
def logdensity_fn(x): | ||
return -0.5 * jnp.sum(jnp.square(x)) | ||
|
||
|
||
if __name__ == "__main__": | ||
absltest.main() |