├── .gitignore ├── .gitmodules ├── 00_get_data └── README.md ├── 01_lightweight_gan └── README.md ├── 02_super_resolution ├── README.md ├── custom_dataset.py ├── custom_training_script.py └── super-resolution-apes.ipynb ├── 03_resizing_and_png_conversion └── resize_and_convert_to_png.ipynb ├── 04_website_thisboredapedoesnotexist ├── favicon.png └── index.html ├── README.md ├── requirements.in └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/.gitmodules -------------------------------------------------------------------------------- /00_get_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/00_get_data/README.md -------------------------------------------------------------------------------- /01_lightweight_gan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/01_lightweight_gan/README.md -------------------------------------------------------------------------------- /02_super_resolution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/02_super_resolution/README.md -------------------------------------------------------------------------------- /02_super_resolution/custom_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/02_super_resolution/custom_dataset.py -------------------------------------------------------------------------------- /02_super_resolution/custom_training_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/02_super_resolution/custom_training_script.py -------------------------------------------------------------------------------- /02_super_resolution/super-resolution-apes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/02_super_resolution/super-resolution-apes.ipynb -------------------------------------------------------------------------------- /03_resizing_and_png_conversion/resize_and_convert_to_png.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/03_resizing_and_png_conversion/resize_and_convert_to_png.ipynb -------------------------------------------------------------------------------- /04_website_thisboredapedoesnotexist/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/04_website_thisboredapedoesnotexist/favicon.png -------------------------------------------------------------------------------- /04_website_thisboredapedoesnotexist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/04_website_thisboredapedoesnotexist/index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/README.md -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/requirements.in -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathancooperjones/thisboredapedoesnotexist/HEAD/setup.cfg --------------------------------------------------------------------------------