├── LICENSE ├── README.md ├── models ├── __init__.py ├── blocks.py └── wideresnet.py ├── train.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayesWatch/pytorch-GENet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayesWatch/pytorch-GENet/HEAD/README.md -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from .wideresnet import * 2 | -------------------------------------------------------------------------------- /models/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayesWatch/pytorch-GENet/HEAD/models/blocks.py -------------------------------------------------------------------------------- /models/wideresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayesWatch/pytorch-GENet/HEAD/models/wideresnet.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayesWatch/pytorch-GENet/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayesWatch/pytorch-GENet/HEAD/utils.py --------------------------------------------------------------------------------