├── .gitignore ├── README.md ├── datasets └── datasets.py ├── main.py ├── misc ├── ELBO.PNG └── monte_carlo.PNG ├── model.py ├── solver.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Konny/VIB-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Konny/VIB-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Konny/VIB-pytorch/HEAD/datasets/datasets.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Konny/VIB-pytorch/HEAD/main.py -------------------------------------------------------------------------------- /misc/ELBO.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Konny/VIB-pytorch/HEAD/misc/ELBO.PNG -------------------------------------------------------------------------------- /misc/monte_carlo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Konny/VIB-pytorch/HEAD/misc/monte_carlo.PNG -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Konny/VIB-pytorch/HEAD/model.py -------------------------------------------------------------------------------- /solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Konny/VIB-pytorch/HEAD/solver.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Konny/VIB-pytorch/HEAD/utils.py --------------------------------------------------------------------------------