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

https://github.com/mirceamironenco/BayesianRecurrentNN

Implementation of Bayesian Recurrent Neural Networks by Fortunato et. al
https://github.com/mirceamironenco/BayesianRecurrentNN

bayesian-inference deep-learning machine-learning

Last synced: 11 months ago
JSON representation

Implementation of Bayesian Recurrent Neural Networks by Fortunato et. al

Awesome Lists containing this project

README

          

# Bayesian Recurrent Neural Networks

This is a replication of the paper 'Bayesian Recurrent Neural Networks' by Meire Fortunato, Charles Blundell, Oriol Vinyals.

Paper: https://arxiv.org/abs/1704.02798

Status: Basic model replicated.

# Requirements
- Python 3.5
- [TensorFlow 1.3.0](https://www.tensorflow.org/)

# Usage
$ sh download_ptb.sh
$ python bayesian_rnn.py -model medium -log_sigma1 -1.0 -log_sigma2 -7.0 -prior_pi 0.25

### To-do:
- Implement posterior sharpening.
- Implement image captioning experiment.

### Acknowledgements

Thanks to Meire Fortunato for providing the Bayes by Backprop/cell code and @alexkrk for an initial implementation.