├── LICENSE.md ├── README.md ├── __init__.py ├── dataset ├── __init__.py ├── cifar10.py └── svhn.py ├── models ├── __init__.py └── cnn.py ├── source ├── __init__.py ├── chainer_functions │ ├── __init__.py │ ├── loss.py │ └── misc.py ├── data.py └── utils.py ├── test.py ├── train_semisup.py └── vat.gif /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/dataset/cifar10.py -------------------------------------------------------------------------------- /dataset/svhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/dataset/svhn.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/models/cnn.py -------------------------------------------------------------------------------- /source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/chainer_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/chainer_functions/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/source/chainer_functions/loss.py -------------------------------------------------------------------------------- /source/chainer_functions/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/source/chainer_functions/misc.py -------------------------------------------------------------------------------- /source/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/source/data.py -------------------------------------------------------------------------------- /source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/source/utils.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/test.py -------------------------------------------------------------------------------- /train_semisup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/train_semisup.py -------------------------------------------------------------------------------- /vat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takerum/vat_chainer/HEAD/vat.gif --------------------------------------------------------------------------------