├── .gitignore ├── README.md ├── requirements.txt ├── scripts ├── color_to_sketch.py ├── img_utils.py ├── img_view.sh ├── process_dir.py └── safebooru_download_urls.py └── src ├── __init__.py ├── evaluate.py ├── image_generator.py ├── model.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/color_to_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/scripts/color_to_sketch.py -------------------------------------------------------------------------------- /scripts/img_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/scripts/img_utils.py -------------------------------------------------------------------------------- /scripts/img_view.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/scripts/img_view.sh -------------------------------------------------------------------------------- /scripts/process_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/scripts/process_dir.py -------------------------------------------------------------------------------- /scripts/safebooru_download_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/scripts/safebooru_download_urls.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/src/evaluate.py -------------------------------------------------------------------------------- /src/image_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/src/image_generator.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/src/model.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pradeeplam/Anime-Sketch-Coloring-with-Swish-Gated-Residual-UNet/HEAD/src/train.py --------------------------------------------------------------------------------