├── .gitignore ├── LICENSE ├── README.md ├── cifar10_data.py ├── error.png ├── good-semi.py └── output.txt /.gitignore: -------------------------------------------------------------------------------- 1 | checkpoints/ 2 | out/ 3 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/good-semi-bad-gan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/good-semi-bad-gan/HEAD/README.md -------------------------------------------------------------------------------- /cifar10_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/good-semi-bad-gan/HEAD/cifar10_data.py -------------------------------------------------------------------------------- /error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/good-semi-bad-gan/HEAD/error.png -------------------------------------------------------------------------------- /good-semi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/good-semi-bad-gan/HEAD/good-semi.py -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/good-semi-bad-gan/HEAD/output.txt --------------------------------------------------------------------------------