├── .gitignore ├── AvantGarfield.zip ├── BestWorst.bat ├── ComicEdit.bat ├── DataGen.bat ├── README.md ├── TrainFull.bat ├── TrainGANFull.bat ├── best_worst.py ├── comic_edit.py ├── cpu.theanorc ├── datagen.py ├── gpu.theanorc ├── train_full.py └── train_gan_full.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/.gitignore -------------------------------------------------------------------------------- /AvantGarfield.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/AvantGarfield.zip -------------------------------------------------------------------------------- /BestWorst.bat: -------------------------------------------------------------------------------- 1 | python best_worst.py 2 | pause 3 | -------------------------------------------------------------------------------- /ComicEdit.bat: -------------------------------------------------------------------------------- 1 | python comic_edit.py 2 | pause 3 | -------------------------------------------------------------------------------- /DataGen.bat: -------------------------------------------------------------------------------- 1 | python datagen.py 2 | pause 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/README.md -------------------------------------------------------------------------------- /TrainFull.bat: -------------------------------------------------------------------------------- 1 | python train_full.py 2 | pause 3 | -------------------------------------------------------------------------------- /TrainGANFull.bat: -------------------------------------------------------------------------------- 1 | python train_gan_full.py 2 | pause 3 | -------------------------------------------------------------------------------- /best_worst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/best_worst.py -------------------------------------------------------------------------------- /comic_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/comic_edit.py -------------------------------------------------------------------------------- /cpu.theanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/cpu.theanorc -------------------------------------------------------------------------------- /datagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/datagen.py -------------------------------------------------------------------------------- /gpu.theanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/gpu.theanorc -------------------------------------------------------------------------------- /train_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/train_full.py -------------------------------------------------------------------------------- /train_gan_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerPoet/Avant-Garfield/HEAD/train_gan_full.py --------------------------------------------------------------------------------