Book Image

Enhancing Deep Learning with Bayesian Inference

By : Matt Benatan, Jochem Gietema, Marian Schneider
Book Image

Enhancing Deep Learning with Bayesian Inference

By: Matt Benatan, Jochem Gietema, Marian Schneider

Overview of this book

Deep learning has an increasingly significant impact on our lives, from suggesting content to playing a key role in mission- and safety-critical applications. As the influence of these algorithms grows, so does the concern for the safety and robustness of the systems which rely on them. Simply put, typical deep learning methods do not know when they don’t know. The field of Bayesian Deep Learning contains a range of methods for approximate Bayesian inference with deep networks. These methods help to improve the robustness of deep learning systems as they tell us how confident they are in their predictions, allowing us to take more in how we incorporate model predictions within our applications. Through this book, you will be introduced to the rapidly growing field of uncertainty-aware deep learning, developing an understanding of the importance of uncertainty estimation in robust machine learning systems. You will learn about a variety of popular Bayesian Deep Learning methods, and how to implement these through practical Python examples covering a range of application scenarios. By the end of the book, you will have a good understanding of Bayesian Deep Learning and its advantages, and you will be able to develop Bayesian Deep Learning models for safer, more robust deep learning systems.
Table of Contents (11 chapters)

7.5 Further reading

  • Practical Considerations for Probabilistic Backpropagation, Matt Benatan et al.: In this paper, the authors explore methods to get the most out of PBP, demonstrating how different early stopping approaches can be used to improve training, exploring the tradeoffs associated with mini-batching, and more

  • Modeling aleatoric and epistemic uncertainty using TensorFlow and TensorFlow Probability, Alexander Molak: In this Jupyter notebook, the author shows how to model aleatoric and epistemic uncertainty on regression toy data

  • Weight Uncertainty in Neural Networks, Charles Blundell et al.: In this paper, the authors introduce BBB, which we use in the regression case study and is one of the key pieces of BDL literature

  • Deep Deterministic Uncertainty: A Simple Baseline, Jishnu Mukhoti et al.: In this work, the authors describe several experiments related to the different types of uncertainty and introduce the AmbiguousMNIST dataset that we used in the last case study

  • Uncertainty...