Skip to content

Commit

Permalink
update changelog, bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
janfb authored and michaeldeistler committed Mar 4, 2022
1 parent 8aa3f49 commit 80f0f45
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,17 @@
- `retrain_from_scratch_each_round` is now called `retrain_from_scratch` (#598, thanks to @jnsbck)
- API changes that had been introduced in `sbi v0.14.0` and `v0.15.0` are not enforced. Using the interface prior to
those changes leads to an error (#645)
- prior passed to SNPE / SNLE / SNRE must be a PyTorch distribution (#655), see FAQ-7 for how to pass use custom prior.

## Major changes and bug fixes
- new `sampler interface` (#573)
- posterior quality assurance with simulation-based calibration (SBC) (#501)
- added `Sequential Neural Variational Inference (SNVI)` (Glöckler et al. 2022) (#609, thanks to @manuelgloeckler)
- bugfix for SNPE-C with mixture density networks (#573)
- bugfix for sampling-importance resampling (SIR) as `init_strategy` for MCMC (#646)
- new density estimator for neural likelihood estimation with mixed data types (MNLE, #638)
- MCMC can now be parallelized across CPUs (#648)
- improved device check to remove several GPU issues (#610, thanks to @LouisRouillard)

## Enhancements
- pairplot takes `ax` and `fig` (#557)
Expand All @@ -40,7 +44,10 @@
- posterior ensembles (#612, thanks to @jnsbck)
- remove gradients before returning the `posterior` (#631, thanks to @tomMoral)
- reduce batchsize of rejection sampling if few samples are left (#631, thanks to @tomMoral)

- tutorial for how to use SBC (#629, thanks to @psteinb)
- tutorial for how to use SBI with trial-based data and mixed data types (#638)
- allow to use a `RestrictedPrior` as prior for `SNPE` (#642)
- optional pre-configured embedding nets (#568, #644, thanks to @JuliaLinhart)

# v0.17.2

Expand Down
2 changes: 1 addition & 1 deletion sbi/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is part of sbi, a toolkit for simulation-based inference. sbi is licensed
# under the Affero General Public License v3, see <https://www.gnu.org/licenses/>.

VERSION = (0, 17, 2)
VERSION = (0, 18, 0)

__version__ = ".".join(map(str, VERSION))

0 comments on commit 80f0f45

Please sign in to comment.