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
Changes in test for random kwarg in DensityDist (#2840)
* Added test
* Test scipy distribution compatibility with DensityDist
* Updated RELEASE-NOTES.md
* Changes in test for random method in DensityDist
* Added docstring for DensityDist
* Update tests for random method with DensityDist
Copy file name to clipboardExpand all lines: RELEASE-NOTES.md
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
5
5
### New features
6
6
7
+
<<<<<<< refs/remotes/pymc-devs/master
7
8
- Add `logit_p` keyword to `pm.Bernoulli`, so that users can specify the logit of the success probability. This is faster and more stable than using `p=tt.nnet.sigmoid(logit_p)`.
8
9
- Add `random` keyword to `pm.DensityDist` thus enabling users to pass custom random method which in turn makes sampling from a `DensityDist` possible.
9
10
- Effective sample size computation is updated. The estimation uses Geyer's initial positive sequence, which no longer truncates the autocorrelation series inaccurately. `pm.diagnostics.effective_n` now can reports N_eff>N.
@@ -19,6 +20,18 @@
19
20
- The bandwidth for KDE plots is computed using a modified version of Scott's rule. The new version uses entropy instead of standard
20
21
deviation. This works better for multimodal distributions. Functions using KDE plots has a new argument `bw` controlling the bandwidth.
21
22
23
+
=======
24
+
- Add `logit_p` keyword to `pm.Bernoulli`, so that users can specify the logit
25
+
of the success probability. This is faster and more stable than using
26
+
`p=tt.nnet.sigmoid(logit_p)`.
27
+
- Add `random` keyword to `pm.DensityDist` thus enabling users to pass custom random method
28
+
which in turn makes sampling from a `DensityDist` possible.
29
+
30
+
### Fixes
31
+
32
+
-`VonMises` does not overflow for large values of kappa. i0 and i1 have been removed and we now use
33
+
log_i0 to compute the logp.
34
+
>>>>>>> Changes in test for random method in DensityDist
0 commit comments