Sliced Iterative Normalizing Flow
Project description
sinflow
sinflow is a Python implementation of the sliced iterative normalizing flow (SINF) algorithm
for density estimation and sampling. The package has minimal dependencies, requiring only
numpy and scipy. The code is designed to be easy to use and flexible, with a focus on
performance and scalability. The package is designed to be used in a similar way to scikit-learn,
with a simple and consistent API.
Documentation
Read the docs at sinflow.readthedocs.io for more information, examples and tutorials.
Installation
To install sinflow using pip run:
pip install sinflow
or, to install from source:
git clone https://github.com/minaskar/sinflow.git
cd pocomc
python setup.py install
Basic example
For instance, if you wanted to draw samples from a 10-dimensional Rosenbrock distribution with a uniform prior, you would do something like:
import sinflow as sf
import numpy as np
from sklearn.datasets import make_moons
# Generate some data
x, _ = make_moons(n_samples=5000, noise=0.15)
# Fit a normalizing flow model
flow = sf.Flow()
flow.fit(x)
# Sample from the model
samples = flow.sample(1000)
# Evaluate the log-likelihood of the samples
log_prob = flow.log_prob(samples)
# Evaluate the forward transformation
z, log_det_forward = flow.forward(x)
# Invert the transformation
x_reconstructed, log_det_inverse = flow.inverse(z)
Attribution & Citation
Please cite the following paper if you found this code useful in your research:
@article{karamanis2024sinflow,
title={},
author={},
journal={},
year={2024}
}
Licence
Copyright 2024-Now Minas Karamanis and contributors.
sinflow is free software made available under the GPL-3.0 License. For details see the LICENSE file.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sinflow-0.1.5.tar.gz.
File metadata
- Download URL: sinflow-0.1.5.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
837a806923f8858783b1d38953e8d3440d104668677a7711afbb69a591a74ed0
|
|
| MD5 |
2cc5b4d74d218c050ab3d79959039790
|
|
| BLAKE2b-256 |
fd7f6283e9479305765a6703ec120be37e795443ef914cf7e15cb200cc4ace66
|
File details
Details for the file sinflow-0.1.5-py3-none-any.whl.
File metadata
- Download URL: sinflow-0.1.5-py3-none-any.whl
- Upload date:
- Size: 27.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0cfae17f3a1e7e87a9a0941ecf8b1f66dfc55c9881e1ff29ddc0a7129b9a308
|
|
| MD5 |
035450b8e934287c435cf8e79cec01f7
|
|
| BLAKE2b-256 |
d6926d6d458b6c3ed5773ef0eb2ce1d1e504cd3edc08a08bf74eb5632e88faf9
|