Skip to content

Commit 1d9707e

Browse files
VincentStimperVincent Berenz
andauthored
doc & version: added BlackBIRDS reference and updated version (#53)
* Added BlackBird reference and updated version * Try to fix test failure * Change back order * github pytest workflow: setup-python v3 to v4, stop using .python-version file * removed .python-version file * gh workflow pytest: removed push triggers to deprected vberenz-ci branch --------- Co-authored-by: Vincent Berenz <vincent.berenz@tuebingen.mpg.de>
1 parent 374c6e4 commit 1d9707e

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

.github/workflows/pytest.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Unit tests
22

33
on:
44
push:
5-
branches: ["master", "vberenz-ci"]
5+
branches: ["master"]
66
pull_request:
77

88
jobs:
@@ -11,9 +11,8 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up Python
14-
uses: actions/setup-python@v3
14+
uses: actions/setup-python@v4
1515
with:
16-
python-version-file: '.python-version'
1716
cache: 'pip'
1817
- name: Install dependencies
1918
run: |

.python-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
![code coverage](https://raw.githubusercontent.com/VincentStimper/normalizing-flows/coverage-badge/coverage.svg?raw=true)
66
[![License: MIT](https://img.shields.io/badge/Licence-MIT-b31b1b.svg)](https://opensource.org/licenses/MIT)
77
[![DOI](https://joss.theoj.org/papers/10.21105/joss.05361/status.svg)](https://doi.org/10.21105/joss.05361)
8-
[![PyPI](https://img.shields.io/badge/PyPI-1.7.2-blue.svg)](https://pypi.org/project/normflows/)
8+
[![PyPI](https://img.shields.io/badge/PyPI-1.7.3-blue.svg)](https://pypi.org/project/normflows/)
99
[![Downloads](https://static.pepy.tech/personalized-badge/normflows?period=total&units=international_system&left_color=grey&right_color=orange&left_text=Downloads)](https://pepy.tech/project/normflows)
1010

1111

@@ -211,18 +211,24 @@ The package has been used in several research papers. Some of them are listed be
211211
>
212212
> [Code available on GitHub.](https://github.com/VincentStimper/hmc-hyperparameter-tuning)
213213
214-
> Vincent Stimper, Bernhard Schölkopf, José Miguel Hernández-Lobato.
214+
> Vincent Stimper, Bernhard Schölkopf, and José Miguel Hernández-Lobato.
215215
> [Resampling Base Distributions of Normalizing Flows](https://proceedings.mlr.press/v151/stimper22a).
216216
> In Proceedings of The 25th International Conference on Artificial Intelligence and Statistics, volume 151, pp. 4915–4936, 2022.
217217
>
218218
> [Code available on GitHub.](https://github.com/VincentStimper/resampled-base-flows)
219219
220-
> Laurence I. Midgley, Vincent Stimper, Gregor N. C. Simm, Bernhard Schölkopf, José Miguel Hernández-Lobato.
220+
> Laurence I. Midgley, Vincent Stimper, Gregor N. C. Simm, Bernhard Schölkopf, and José Miguel Hernández-Lobato.
221221
> [Flow Annealed Importance Sampling Bootstrap](https://arxiv.org/abs/2208.01893).
222222
> The Eleventh International Conference on Learning Representations, 2023.
223223
>
224224
> [Code available on GitHub.](https://github.com/lollcat/fab-torch)
225225
226+
> Arnau Quera-Bofarull, Joel Dyer, Anisoara Calinescu, J. Doyne Farmer, and Michael Wooldridge.
227+
> [BlackBIRDS: Black-Box Inference foR Differentiable Simulators](https://joss.theoj.org/papers/10.21105/joss.05776).
228+
> Journal of Open Source Software, 8(89), 5776, 2023.
229+
>
230+
> [Code available on GitHub.](https://github.com/arnauqb/blackbirds)
231+
226232
Moreover, the [`boltzgen`](https://github.com/VincentStimper/boltzmann-generators) package
227233
has been build upon `normflows`.
228234

normflows/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from . import sampling
1212
from .sampling import HAIS
1313

14-
__version__ = "1.7.2"
14+
__version__ = "1.7.3"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from codecs import open
33
from os import path
44

5-
__version__ = "1.7.2"
5+
__version__ = "1.7.3"
66

77
here = path.abspath(path.dirname(__file__))
88

0 commit comments

Comments
 (0)