Skip to content

Commit

Permalink
doc & version: added BlackBIRDS reference and updated version (#53)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
VincentStimper and Vincent Berenz authored Nov 16, 2023
1 parent 374c6e4 commit 1d9707e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Unit tests

on:
push:
branches: ["master", "vberenz-ci"]
branches: ["master"]
pull_request:

jobs:
Expand All @@ -11,9 +11,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version-file: '.python-version'
cache: 'pip'
- name: Install dependencies
run: |
Expand Down
1 change: 0 additions & 1 deletion .python-version

This file was deleted.

12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![code coverage](https://raw.githubusercontent.com/VincentStimper/normalizing-flows/coverage-badge/coverage.svg?raw=true)
[![License: MIT](https://img.shields.io/badge/Licence-MIT-b31b1b.svg)](https://opensource.org/licenses/MIT)
[![DOI](https://joss.theoj.org/papers/10.21105/joss.05361/status.svg)](https://doi.org/10.21105/joss.05361)
[![PyPI](https://img.shields.io/badge/PyPI-1.7.2-blue.svg)](https://pypi.org/project/normflows/)
[![PyPI](https://img.shields.io/badge/PyPI-1.7.3-blue.svg)](https://pypi.org/project/normflows/)
[![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)


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

Expand Down
2 changes: 1 addition & 1 deletion normflows/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from . import sampling
from .sampling import HAIS

__version__ = "1.7.2"
__version__ = "1.7.3"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from codecs import open
from os import path

__version__ = "1.7.2"
__version__ = "1.7.3"

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

Expand Down

0 comments on commit 1d9707e

Please sign in to comment.