Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AndrewAtanov/stochastic-batch-normalization
Uncertainty Estimation via Stochastic Batch Normalization
https://github.com/AndrewAtanov/stochastic-batch-normalization
Last synced: 3 months ago
JSON representation
Uncertainty Estimation via Stochastic Batch Normalization
- Host: GitHub
- URL: https://github.com/AndrewAtanov/stochastic-batch-normalization
- Owner: AndrewAtanov
- License: gpl-3.0
- Created: 2018-02-28T14:42:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-03-01T11:02:29.000Z (over 6 years ago)
- Last Synced: 2024-07-22T20:10:30.060Z (3 months ago)
- Language: Jupyter Notebook
- Size: 629 KB
- Stars: 20
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-normalization-techniques - [Python Reference
README
# Uncertainty Estimation via Stochastic Batch Normalization
This repo contains code for our paper [Uncertainty Estimation via Stochastic Batch Normalization](https://arxiv.org/abs/1802.04893).
__Abstract__
In this work, we investigate Batch Normalization technique and propose its probabilistic interpretation. We propose a probabilistic model and show that Batch Normalization maximizes the lower bound of its marginalized log-likelihood. Then, according to the new probabilistic model, we design an algorithm which acts consistently during train and test. However, inference becomes computationally inefficient. To reduce memory and computational cost, we propose Stochastic Batch Normalization -- an efficient approximation of proper inference procedure. This method provides us with a scalable uncertainty estimation technique. We demonstrate the performance of Stochastic Batch Normalization on popular architectures (including deep convolutional architectures: VGG-like and ResNets) for MNIST and CIFAR-10 datasets.
## Launch experiments
To reproduce the results follow the `results.ipynb`.
## Accuracy and NLL results
| Network | Method |Error%| | NLL | |
|:---------:|:--------------:|:----:|------|:-----:|-------|
| | |No SBN| SBN | No SBN| SBN |
| LeNet-5 | SBN | --- | 0.53 | --- | 0.025 |
| | Deep Ensembles | 0.40 | 0.40 | 0.016 | 0.015 |
| | Dropout | 0.42 | 0.42 | 0.014 | 0.014 |
| VGG-11 | SBN | --- | 5.76 | --- | 0.302 |
| | Deep Ensembles | 4.81 | 4.81 | 0.191 | __0.162__ |
| | Dropout | 5.32 | 5.38 | 0.155 | __0.149__ |
| ResNet-18 | SBN | --- | 4.35 | --- | 0.255 |
| | Deep Ensembles | 3.37 | 3.34 | 0.138 | __0.110__ |## Uncertainty estimation
To estimate uncertainty we calculate entropy of predictive distribution on out-of-domain data.
| __LeNet-5 on notMNIST__ |__ResNet-18 on CIFAR5__|__VGG-11 on CIFAR5__|
|:--:| :----:|:---:|
| ![](plots/lenet-entropy-plot.png) | ![](plots/resnet-entropy-plot.png) | ![](plots/vgg-entropy-plot.png)# Citation
If you found this code useful please cite our paper
```
@article{stochbn2018,
title={Uncertainty Estimation via Stochastic Batch Normalization},
author={Atanov, Andrei and Ashukha, Arsenii and Molchanov, Dmitry and Neklyudov, Kirill and Vetrov, Dmitry},
journal={arXiv preprint arXiv:1802.04893},
year={2018}
}
```