• Stars
    star
    210
  • Rank 187,585 (Top 4 %)
  • Language
    Python
  • License
    MIT License
  • Created about 7 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Implementation of Bayesian Recurrent Neural Networks by Fortunato et. al

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

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.