├── ImageColorizer.ipynb ├── ImageColorizerColab.ipynb ├── ImageColorizerColabGrayScale.ipynb ├── ImageColorizerColabSketch.ipynb ├── ImageColorizerColabSketch2Gray.ipynb ├── README.md ├── colab_requirements.txt ├── deoldify ├── __init__.py ├── augs.py ├── critics.py ├── dataset.py ├── filters.py ├── generators.py ├── layers.py ├── loss.py ├── save.py ├── unet.py └── visualize.py ├── fid ├── LICENSE ├── fid_score.py └── inception.py ├── readme ├── requirements.txt └── test_images ├── 0_.png ├── 1.jpg ├── 1134_.png ├── 1137_.png ├── 14_.png ├── 2.jpg ├── 2.png ├── 2940188.jpg ├── 2_.png ├── 3.jpg ├── 3.png ├── 36_.png ├── 3902_.png ├── 3916_.png ├── 3931_.png ├── 4.png ├── 4_.png ├── 5694_.png ├── 5695_.png ├── 7032_.png ├── 9_.png ├── image.png ├── img.jpg └── sketch ├── 0_.png ├── 36_.png ├── 4_.png ├── 5694_.png ├── 5695_.png ├── 7032_.png ├── 9_.png ├── img2.jpg └── sample.jpg /ImageColorizer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/ImageColorizer.ipynb -------------------------------------------------------------------------------- /ImageColorizerColab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/ImageColorizerColab.ipynb -------------------------------------------------------------------------------- /ImageColorizerColabGrayScale.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/ImageColorizerColabGrayScale.ipynb -------------------------------------------------------------------------------- /ImageColorizerColabSketch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/ImageColorizerColabSketch.ipynb -------------------------------------------------------------------------------- /ImageColorizerColabSketch2Gray.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/ImageColorizerColabSketch2Gray.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/README.md -------------------------------------------------------------------------------- /colab_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/colab_requirements.txt -------------------------------------------------------------------------------- /deoldify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deoldify/augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/augs.py -------------------------------------------------------------------------------- /deoldify/critics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/critics.py -------------------------------------------------------------------------------- /deoldify/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/dataset.py -------------------------------------------------------------------------------- /deoldify/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/filters.py -------------------------------------------------------------------------------- /deoldify/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/generators.py -------------------------------------------------------------------------------- /deoldify/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/layers.py -------------------------------------------------------------------------------- /deoldify/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/loss.py -------------------------------------------------------------------------------- /deoldify/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/save.py -------------------------------------------------------------------------------- /deoldify/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/unet.py -------------------------------------------------------------------------------- /deoldify/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/deoldify/visualize.py -------------------------------------------------------------------------------- /fid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/fid/LICENSE -------------------------------------------------------------------------------- /fid/fid_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/fid/fid_score.py -------------------------------------------------------------------------------- /fid/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/fid/inception.py -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_images/0_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/0_.png -------------------------------------------------------------------------------- /test_images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/1.jpg -------------------------------------------------------------------------------- /test_images/1134_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/1134_.png -------------------------------------------------------------------------------- /test_images/1137_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/1137_.png -------------------------------------------------------------------------------- /test_images/14_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/14_.png -------------------------------------------------------------------------------- /test_images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/2.jpg -------------------------------------------------------------------------------- /test_images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/2.png -------------------------------------------------------------------------------- /test_images/2940188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/2940188.jpg -------------------------------------------------------------------------------- /test_images/2_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/2_.png -------------------------------------------------------------------------------- /test_images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/3.jpg -------------------------------------------------------------------------------- /test_images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/3.png -------------------------------------------------------------------------------- /test_images/36_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/36_.png -------------------------------------------------------------------------------- /test_images/3902_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/3902_.png -------------------------------------------------------------------------------- /test_images/3916_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/3916_.png -------------------------------------------------------------------------------- /test_images/3931_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/3931_.png -------------------------------------------------------------------------------- /test_images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/4.png -------------------------------------------------------------------------------- /test_images/4_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/4_.png -------------------------------------------------------------------------------- /test_images/5694_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/5694_.png -------------------------------------------------------------------------------- /test_images/5695_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/5695_.png -------------------------------------------------------------------------------- /test_images/7032_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/7032_.png -------------------------------------------------------------------------------- /test_images/9_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/9_.png -------------------------------------------------------------------------------- /test_images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/image.png -------------------------------------------------------------------------------- /test_images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/img.jpg -------------------------------------------------------------------------------- /test_images/sketch/0_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/sketch/0_.png -------------------------------------------------------------------------------- /test_images/sketch/36_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/sketch/36_.png -------------------------------------------------------------------------------- /test_images/sketch/4_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/sketch/4_.png -------------------------------------------------------------------------------- /test_images/sketch/5694_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/sketch/5694_.png -------------------------------------------------------------------------------- /test_images/sketch/5695_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/sketch/5695_.png -------------------------------------------------------------------------------- /test_images/sketch/7032_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/sketch/7032_.png -------------------------------------------------------------------------------- /test_images/sketch/9_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/sketch/9_.png -------------------------------------------------------------------------------- /test_images/sketch/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/sketch/img2.jpg -------------------------------------------------------------------------------- /test_images/sketch/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakini/AnimeColorDeOldify/HEAD/test_images/sketch/sample.jpg --------------------------------------------------------------------------------