Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thu-ml/zhusuan
A probabilistic programming library for Bayesian deep learning, generative models, based on Tensorflow
https://github.com/thu-ml/zhusuan
bayesian-inference deep-learning generative-models graphical-models probabilistic-programming
Last synced: 14 days ago
JSON representation
A probabilistic programming library for Bayesian deep learning, generative models, based on Tensorflow
- Host: GitHub
- URL: https://github.com/thu-ml/zhusuan
- Owner: thu-ml
- License: mit
- Created: 2016-07-18T13:31:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-17T20:33:19.000Z (almost 2 years ago)
- Last Synced: 2024-07-31T19:24:36.130Z (3 months ago)
- Topics: bayesian-inference, deep-learning, generative-models, graphical-models, probabilistic-programming
- Language: Python
- Homepage: http://zhusuan.readthedocs.io
- Size: 1.75 MB
- Stars: 2,196
- Watchers: 143
- Forks: 419
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-topic-models - ZhuSuan - A PPL for Bayesian deep learning, generative models, built on Tensorflow, e.g., [LDA](https://zhusuan.readthedocs.io/en/latest/tutorials/lntm.html) [:page_facing_up:](https://arxiv.org/pdf/1709.05870.pdf) (Probabilistic Programming Languages (PPL) (a.k.a. Build your own Topic Model) / Embedding based Topic Models)
- awesome-python-machine-learning-resources - GitHub - 11% open · ⏱️ 05.08.2019): (概率统计)
- awesome-sciml - thu-ml/zhusuan: A probabilistic programming library for Bayesian deep learning, generative models, based on Tensorflow
README
---
[![Build Status](https://travis-ci.org/thu-ml/zhusuan.svg?branch=master)](https://travis-ci.org/thu-ml/zhusuan)
[![Doc Status](https://readthedocs.org/projects/zhusuan/badge/?version=latest)](http://zhusuan.readthedocs.io/en/latest/?badge=latest)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/thu-ml/zhusuan/blob/master/LICENSE)
[![Join the chat at https://gitter.im/thu-ml/zhusuan](https://badges.gitter.im/thu-ml/zhusuan.svg)](https://gitter.im/thu-ml/zhusuan?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)**ZhuSuan** is a Python probabilistic programming library for Bayesian deep
learning, which conjoins the complimentary advantages of Bayesian methods and
deep learning. ZhuSuan is built upon
[TensorFlow](https://www.tensorflow.org). Unlike existing deep
learning libraries, which are mainly designed for deterministic neural
networks and supervised tasks, ZhuSuan provides deep learning style primitives
and algorithms for building probabilistic models and applying Bayesian
inference. The supported inference algorithms include:* **Variational Inference (VI)** with programmable variational posteriors, various
objectives and advanced gradient estimators (SGVB, REINFORCE, VIMCO, etc.).* **Importance Sampling (IS)** for learning and evaluating models, with programmable
proposals.* **Hamiltonian Monte Carlo (HMC)** with parallel chains, and optional
automatic parameter tuning.* **Stochastic Gradient Markov Chain Monte Carlo (SGMCMC)**:
SGLD, PSGLD, SGHMC, and SGNHT.## Installation
ZhuSuan is still under development. Before the first stable release (1.0),
please clone the repository and run
```
pip install .
```
in the main directory. This will install ZhuSuan and its dependencies
automatically. ZhuSuan also requires **TensorFlow 1.13.0 or later**. Because
users should choose whether to install the cpu or gpu version of TensorFlow,
we do not include it in the dependencies. See
[Installing TensorFlow](https://www.tensorflow.org/install/).If you are developing ZhuSuan, you may want to install in an
"editable" or "develop" mode. Please refer to the Contributing section below.## Documentation
* [Tutorials and API docs](http://zhusuan.readthedocs.io)
* [ZhuSuan's white paper](https://arxiv.org/abs/1709.05870)## Examples
We provide examples on traditional hierarchical Bayesian models and recent
deep generative models.To run the provided examples, you may need extra dependencies to be installed.
This can be done by
```
pip install ".[examples]"
```
* Gaussian:
[HMC](examples/toy_examples/gaussian.py)
* Toy 2D Intractable Posterior:
[SGVB](examples/toy_examples/toy2d_intractable.py)
* Bayesian Neural Networks:
[SGVB](examples/bayesian_neural_nets/bnn_vi.py),
[SGMCMC](examples/bayesian_neural_nets/bnn_sgmcmc.py)
* Variational Autoencoder (VAE):
[SGVB](examples/variational_autoencoders/vae.py),
[IWAE](examples/variational_autoencoders/iwae.py)
* Convolutional VAE:
[SGVB](examples/variational_autoencoders/vae_conv.py)
* Semi-supervised VAE (Kingma, 2014):
[SGVB](examples/semi_supervised_vae/vae_ssl.py),
[Adaptive IS](examples/semi_supervised_vae/vae_ssl_adaptive_is.py)
* Deep Sigmoid Belief Networks
[Adaptive IS](examples/sigmoid_belief_nets/sbn_adaptive_is.py),
[VIMCO](examples/sigmoid_belief_nets/sbn_vimco.py)
* Logistic Normal Topic Model:
[HMC](examples/topic_models/lntm_mcem.py)
* Probabilistic Matrix Factorization:
[HMC](examples/probabilistic_matrix_factorization/pmf_hmc.py)
* Sparse Variational Gaussian Process:
[SGVB](examples/gaussian_process/svgp.py)## Citing ZhuSuan
If you find ZhuSuan useful, please cite it in your publications.
We provide a BibTeX entry of the ZhuSuan white paper below.
```
@ARTICLE{zhusuan2017,
title={Zhu{S}uan: A Library for {B}ayesian Deep Learning},
author={Shi, Jiaxin and Chen, Jianfei. and Zhu, Jun and Sun, Shengyang
and Luo, Yucen and Gu, Yihong and Zhou, Yuhao},
journal={arXiv preprint arXiv:1709.05870},
year=2017,
}
```## Contributing
We always welcome contributions to help make ZhuSuan better. If you would like
to contribute, please check out the guidelines [here](CONTRIBUTING.md).