Skip to content

Commit

Permalink
Use non-jittered NUTS initialization
Browse files Browse the repository at this point in the history
This reduces the chance of the "Mass matrix contains zeros on the diagnoal" problem.
  • Loading branch information
michaelosthege committed May 20, 2022
1 parent b154234 commit e9a39ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bletl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
NoMeasurementData,
)

__version__ = "1.1.1"
__version__ = "1.1.2"
2 changes: 1 addition & 1 deletion bletl/growth.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def sample(self, **kwargs) -> None:
sample_kwargs = dict(
return_inferencedata=True,
target_accept=0.95,
init="jitter+adapt_diag",
init="adapt_diag",
start=self.theta_map,
tune=500,
draws=500,
Expand Down

0 comments on commit e9a39ff

Please sign in to comment.