-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add collapse messenger * add dirichlet multinomial * add dirichlet distribution * revert change at funsor * move collapse to the main handler * remove legacy code * add more tests * fix a bug * pass the test * fix the bug * bump setup dependent versions * fix failing tests when signatures of NumPyro classes have been changed due to Meta class * match new coercion pattern and enable beta_bernoulli * fix lint
- Loading branch information
Showing
8 changed files
with
209 additions
and
15 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
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
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 |
---|---|---|
|
@@ -34,9 +34,9 @@ | |
author_email='[email protected]', | ||
install_requires=[ | ||
# TODO: pin to a specific version for the release (until JAX's API becomes stable) | ||
'jax==0.2', | ||
'jax>=0.2', | ||
# check min version here: https://github.com/google/jax/blob/master/jax/lib/__init__.py#L26 | ||
'jaxlib==0.1.55', | ||
'jaxlib>=0.1.55', | ||
'tqdm', | ||
], | ||
extras_require={ | ||
|
@@ -47,12 +47,12 @@ | |
'pyro-api>=0.1.1' | ||
], | ||
'dev': [ | ||
'funsor', | ||
'funsor @ git+https://github.com/pyro-ppl/funsor.git@6575ac2c3f7ac25a6a1e5f1107b1b7c072edd992', | ||
'ipython', | ||
'isort', | ||
'flax', | ||
'dm-haiku', | ||
'tfp-nightly==0.12.0.dev20200930', # TODO: change this to stable release or a specific nightly release | ||
'tfp-nightly', # TODO: change this to stable release or a specific nightly release | ||
], | ||
'examples': ['matplotlib', 'seaborn', 'graphviz', 'arviz'], | ||
}, | ||
|
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
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