├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── app.py ├── diffusers_helper ├── attention.py ├── cat_cond.py ├── code_cond.py ├── k_diffusion.py └── utils.py ├── image └── README │ ├── 1720725482289.png │ ├── 1720725782453.png │ ├── 1720725916946.png │ ├── 1720726085993.png │ └── 1720727045132.png ├── lineart_models ├── __init__.py ├── lineart.py ├── lineart_anime.py ├── mangaline_preprocessor.py └── utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/app.py -------------------------------------------------------------------------------- /diffusers_helper/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/diffusers_helper/attention.py -------------------------------------------------------------------------------- /diffusers_helper/cat_cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/diffusers_helper/cat_cond.py -------------------------------------------------------------------------------- /diffusers_helper/code_cond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/diffusers_helper/code_cond.py -------------------------------------------------------------------------------- /diffusers_helper/k_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/diffusers_helper/k_diffusion.py -------------------------------------------------------------------------------- /diffusers_helper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/diffusers_helper/utils.py -------------------------------------------------------------------------------- /image/README/1720725482289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/image/README/1720725482289.png -------------------------------------------------------------------------------- /image/README/1720725782453.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/image/README/1720725782453.png -------------------------------------------------------------------------------- /image/README/1720725916946.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/image/README/1720725916946.png -------------------------------------------------------------------------------- /image/README/1720726085993.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/image/README/1720726085993.png -------------------------------------------------------------------------------- /image/README/1720727045132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/image/README/1720727045132.png -------------------------------------------------------------------------------- /lineart_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/lineart_models/__init__.py -------------------------------------------------------------------------------- /lineart_models/lineart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/lineart_models/lineart.py -------------------------------------------------------------------------------- /lineart_models/lineart_anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/lineart_models/lineart_anime.py -------------------------------------------------------------------------------- /lineart_models/mangaline_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/lineart_models/mangaline_preprocessor.py -------------------------------------------------------------------------------- /lineart_models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/lineart_models/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KohakuBlueleaf/Sketch-Gen/HEAD/requirements.txt --------------------------------------------------------------------------------