You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add section about no-yet refactored features
Closes#5149
* Update release notes about the GP submodule
* Update RELEASE-NOTES.md
* Update RELEASE-NOTES.md
* Mention new PyPI channel and explicit kwargs in GP submodule
* Append beta1 indicator to `__version__`
* Follow PEP 440 for beta version naming
Co-authored-by: Ricardo Vieira <28983449+ricardoV94@users.noreply.github.com>
Copy file name to clipboardExpand all lines: RELEASE-NOTES.md
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,16 +7,29 @@ Instead update the vNext section until 4.0.0 is out.
7
7
⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠⚠
8
8
-->
9
9
10
-
## PyMC vNext (4.0.0-beta1 → 4.0.0-beta2 → 4.0.0)
10
+
## PyMC vNext (4.0.0b1 → 4.0.0b2 → 4.0.0)
11
11
⚠ The changes below are the delta between the upcoming releases `v3.11.5` →...→ `v4.0.0`.
12
12
13
+
### No-yet working features
14
+
We plan to get these working again, but at this point their inner workings have not been refactored.
15
+
- Timeseries distributions (see [#4642](https://github.com/pymc-devs/pymc/issues/4642))
16
+
- Mixture distributions (see [#4781](https://github.com/pymc-devs/pymc/issues/4781))
17
+
- Cholesky distributions (see WIP PR [#4784](https://github.com/pymc-devs/pymc/pull/4784))
18
+
- Variational inference submodule (see WIP PR [#4582](https://github.com/pymc-devs/pymc/pull/4582))
19
+
- Elliptical slice sampling (see [#5137](https://github.com/pymc-devs/pymc/issues/5137))
20
+
-`BaseStochasticGradient` (see [#5138](https://github.com/pymc-devs/pymc/issues/5138))
21
+
-`pm.sample_posterior_predictive_w` (see [#4807](https://github.com/pymc-devs/pymc/issues/4807))
22
+
- Partially observed Multivariate distributions (see [#5260](https://github.com/pymc-devs/pymc/issues/5260))
23
+
24
+
Also check out the [milestones](https://github.com/pymc-devs/pymc/milestones) for a potentially more complete list.
25
+
13
26
### Unexpected breaking changes (action needed)
14
27
+ New API is not available in `v3.11.5`.
15
28
+ Old API does not work in `v4.0.0`.
16
29
17
30
All of the above apply to:
18
31
19
-
- ⚠ The library is now named, installed and imported as "pymc".
32
+
- ⚠ The library is now named, installed and imported as "pymc". For example: `pip install pymc`.
20
33
- ⚠ Theano-PyMC has been replaced with Aesara, so all external references to `theano`, `tt`, and `pymc3.theanof` need to be replaced with `aesara`, `at`, and `pymc.aesaraf` (see [4471](https://github.com/pymc-devs/pymc/pull/4471)).
21
34
-`pm.Distribution(...).logp(x)` is now `pm.logp(pm.Distribution(...), x)`
22
35
-`pm.Distribution(...).logcdf(x)` is now `pm.logcdf(pm.Distribution(...), x)`
@@ -42,6 +55,9 @@ All of the above apply to:
42
55
-`pm.DensityDist` no longer accepts the `logp` as its first position argument. It is now an optional keyword argument. If you pass a callable as the first positional argument, a `TypeError` will be raised (see [5026](https://github.com/pymc-devs/pymc/pull/5026)).
43
56
-`pm.DensityDist` now accepts distribution parameters as positional arguments. Passing them as a dictionary in the `observed` keyword argument is no longer supported and will raise an error (see [5026](https://github.com/pymc-devs/pymc/pull/5026)).
44
57
- The signature of the `logp` and `random` functions that can be passed into a `pm.DensityDist` has been changed (see [5026](https://github.com/pymc-devs/pymc/pull/5026)).
58
+
- Changes to the Gaussian process (`gp`) submodule:
59
+
- The `gp.prior(..., shape=...)` kwarg was renamed to `size`.
60
+
- Multiple methods including `gp.prior` now require explicit kwargs.
45
61
- Changes to the BART implementation:
46
62
- A BART variable can be combined with other random variables. The `inv_link` argument has been removed (see [4914](https://github.com/pymc-devs/pymc3/pull/4914)).
47
63
- Moved BART to its own module (see [5058](https://github.com/pymc-devs/pymc3/pull/5058)).
0 commit comments