├── LICENSE.md ├── README.md ├── __init__.py ├── cifar10.py ├── cnn.py ├── dataset_utils.py ├── layers.py ├── svhn.py ├── test.py ├── train_semisup.py ├── vat.gif └── vat.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/cifar10.py -------------------------------------------------------------------------------- /cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/cnn.py -------------------------------------------------------------------------------- /dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/dataset_utils.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/layers.py -------------------------------------------------------------------------------- /svhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/svhn.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/test.py -------------------------------------------------------------------------------- /train_semisup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/train_semisup.py -------------------------------------------------------------------------------- /vat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/vat.gif -------------------------------------------------------------------------------- /vat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_tf/HEAD/vat.py --------------------------------------------------------------------------------