├── .gitignore ├── LICENSE ├── README.md ├── checkpoints └── cifar10 │ ├── netD_epoch_249.pth │ └── netG_epoch_249.pth ├── data └── fake_samples_epoch_060.png └── odegan.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/pytorch_odegan/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/pytorch_odegan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/pytorch_odegan/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/cifar10/netD_epoch_249.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/pytorch_odegan/HEAD/checkpoints/cifar10/netD_epoch_249.pth -------------------------------------------------------------------------------- /checkpoints/cifar10/netG_epoch_249.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/pytorch_odegan/HEAD/checkpoints/cifar10/netG_epoch_249.pth -------------------------------------------------------------------------------- /data/fake_samples_epoch_060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/pytorch_odegan/HEAD/data/fake_samples_epoch_060.png -------------------------------------------------------------------------------- /odegan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/pytorch_odegan/HEAD/odegan.py --------------------------------------------------------------------------------