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
Improve tuning by skipping the first samples + add new experimental tuning method (#5004)
* Fix issue in hmc gradient storage
* Skip first samples during NUTS adaptation
* Add test and doc for jitter+adapt_diag_grad
* Improve tests of init methods
* Add new tuning method to release notes
* Remove old gradient mass matrix adaptation
* Remove weight argument in quadpotential add_sample
Copy file name to clipboardExpand all lines: RELEASE-NOTES.md
+2
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,8 @@
23
23
- The `OrderedMultinomial` distribution has been added for use on ordinal data which are _aggregated_ by trial, like multinomial observations, whereas `OrderedLogistic` only accepts ordinal data in a _disaggregated_ format, like categorical
24
24
observations (see [#4773](https://github.com/pymc-devs/pymc3/pull/4773)).
25
25
- The `Polya-Gamma` distribution has been added (see [#4531](https://github.com/pymc-devs/pymc3/pull/4531)). To make use of this distribution, the [`polyagamma>=1.3.1`](https://pypi.org/project/polyagamma/) library must be installed and available in the user's environment.
26
+
- A small change to the mass matrix tuning methods jitter+adapt_diag (the default) and adapt_diag improves performance early on during tuning for some models. [#5004](https://github.com/pymc-devs/pymc3/pull/5004)
27
+
- New experimental mass matrix tuning method jitter+adapt_diag_grad. [#5004](https://github.com/pymc-devs/pymc3/pull/5004)
0 commit comments