-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Fix dependence of Uniform logp on bound method #4541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
9d70d4a
47edb17
fb9a5a1
7cabbfe
20f1c0c
7cb9974
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,37 @@ | ||
# Release Notes | ||
|
||
## PyMC3 vNext (TBD) | ||
## PyMC3 vNext (4.0.0) | ||
### Breaking Changes | ||
- ⚠ Theano-PyMC has been replaced with Aesara, so all external references to `theano`, `tt`, and `pymc3.theanof` need to be replaced with `aesara`, `aet`, and `pymc3.aesaraf` (see [4471](https://github.com/pymc-devs/pymc3/pull/4471)). | ||
|
||
### New Features | ||
+ `pm.math.cartesian` can now handle inputs that are themselves >1D (see [#4482](https://github.com/pymc-devs/pymc3/pull/4482)). | ||
+ The `CAR` distribution has been added to allow for use of conditional autoregressions which often are used in spatial and network models. | ||
+ ... | ||
- The `CAR` distribution has been added to allow for use of conditional autoregressions which often are used in spatial and network models. | ||
- ... | ||
|
||
### Maintenance | ||
- The `pymc3.memoize` module was removed and replaced with `cachetools`. The `hashable` function and `WithMemoization` class were moved to `pymc3.util` (see [#4509](https://github.com/pymc-devs/pymc3/pull/4509)). | ||
- Remove float128 dtype support (see [#4514](https://github.com/pymc-devs/pymc3/pull/4514)). | ||
- Logp method of `Uniform` and `DiscreteUniform` no longer depends on `pymc3.distributions.dist_math.bound` for proper evaluation (see [#4541](https://github.com/pymc-devs/pymc3/pull/4541)). | ||
- ... | ||
|
||
## PyMC3 3.11.2 (14 March 2021) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we shouldn't include the entire section: Some changes in Instead, we could just mark the "also-in-v3-changes" with "(released in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @MarcoGorelli do you know of best practices when it comes to changelog files in a world with multiple branches and backporting? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know. What about just repeating again this line from V3.11.0?
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's the only bump between V3.11.1 -> V3.11.2 -> V4.0.0 no? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For now we could do that. I'll make sure to do the PR such that |
||
|
||
### New Features | ||
+ `pm.math.cartesian` can now handle inputs that are themselves >1D (see [#4482](https://github.com/pymc-devs/pymc3/pull/4482)). | ||
+ Statistics and plotting functions that were removed in `3.11.0` were brought back, albeit with deprecation warnings if an old naming scheme is used (see [#4536](https://github.com/pymc-devs/pymc3/pull/4536)). In order to future proof your code, rename these function calls: | ||
+ `pm.traceplot` → `pm.plot_trace` | ||
+ `pm.compareplot` → `pm.plot_compare` (here you might need to rename some columns in the input according to the [`arviz.plot_compare` documentation](https://arviz-devs.github.io/arviz/api/generated/arviz.plot_compare.html)) | ||
+ `pm.autocorrplot` → `pm.plot_autocorr` | ||
+ `pm.forestplot` → `pm.plot_forest` | ||
+ `pm.kdeplot` → `pm.plot_kde` | ||
+ `pm.energyplot` → `pm.plot_energy` | ||
+ `pm.densityplot` → `pm.plot_density` | ||
+ `pm.pairplot` → `pm.plot_pair` | ||
|
||
### Maintenance | ||
- ⚠ Our memoization mechanism wasn't robust against hash collisions ([#4506](https://github.com/pymc-devs/pymc3/issues/4506)), sometimes resulting in incorrect values in, for example, posterior predictives. The `pymc3.memoize` module was removed and replaced with `cachetools`. The `hashable` function and `WithMemoization` class were moved to `pymc3.util` (see [#4525](https://github.com/pymc-devs/pymc3/pull/4525)). | ||
- `pm.make_shared_replacements` now retains broadcasting information which fixes issues with Metropolis samplers (see [#4492](https://github.com/pymc-devs/pymc3/pull/4492)). | ||
+ ... | ||
|
||
**Release manager** for 3.11.2: Michael Osthege ([@michaelosthege](https://github.com/michaelosthege)) | ||
|
||
## PyMC3 3.11.1 (12 February 2021) | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.