├── .gitignore ├── Do_deep_generative_models_know_what_they_dont_know.ipynb ├── LICENSE ├── README.md ├── Sample_from_Glow.ipynb ├── datasets.py ├── images └── histogram_glow_cifar_svhn.png ├── model.py ├── modules.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | output 3 | .flake8 4 | __pycache__ 5 | .ipynb_checkpoints 6 | 7 | -------------------------------------------------------------------------------- /Do_deep_generative_models_know_what_they_dont_know.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/Do_deep_generative_models_know_what_they_dont_know.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/README.md -------------------------------------------------------------------------------- /Sample_from_Glow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/Sample_from_Glow.ipynb -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/datasets.py -------------------------------------------------------------------------------- /images/histogram_glow_cifar_svhn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/images/histogram_glow_cifar_svhn.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/model.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/modules.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y0ast/Glow-PyTorch/HEAD/utils.py --------------------------------------------------------------------------------