Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/ikostrikov/pytorch-flows

PyTorch implementations of algorithms for density estimation
https://github.com/ikostrikov/pytorch-flows

deep-learning density-estimation neural-networks probabilities pytorch

Last synced: 2 months ago
JSON representation

PyTorch implementations of algorithms for density estimation

Lists

README

        

# pytorch-flows

A PyTorch implementations of [Masked Autoregressive Flow](https://arxiv.org/abs/1705.07057) and
some other invertible transformations from [Glow: Generative Flow with Invertible 1x1 Convolutions](https://arxiv.org/pdf/1807.03039.pdf) and [Density estimation using Real NVP](https://arxiv.org/abs/1605.08803).

For MAF, I'm getting results similar to ones reported in the paper. GLOW requires some work.

## Run

```bash
python main.py --dataset POWER
```

Available datasets are POWER, GAS, HEPMASS, MINIBONE and BSDS300. For the moment, I removed MNIST and CIFAR10 because I have plans to add pixel-based models later.

## Datasets

The datasets are taken from the [original MAF repository](https://github.com/gpapamak/maf#how-to-get-the-datasets). Follow the [instructions](https://github.com/gpapamak/maf#how-to-get-the-datasets) to get them.

## Tests

Tests check invertibility, you can run them as

```bash
pytest flow_test.py
```