├── LICENSE ├── MangaNinjia_node.py ├── README.md ├── __init__.py ├── base_manganinjia.json ├── clip ├── __init__.py ├── config.json ├── merges.txt ├── preprocessor_config.json ├── special_tokens_map.json ├── tokenizer.json ├── tokenizer_config.json └── vocab.json ├── configs ├── __init__.py ├── inference.yaml └── v1-inference.yaml ├── environment.yaml ├── example.png ├── exampleB.png ├── example_new.png ├── infer.py ├── js ├── Canvas.js └── Canvas_view.js ├── node_utils.py ├── pyproject.toml ├── requirements.txt ├── run_gradio.py ├── sd15_repo ├── cn │ └── config.json ├── feature_extractor │ └── preprocessor_config.json ├── model_index.json ├── safety_checker │ └── config.json ├── scheduler │ └── scheduler_config.json ├── text_encoder │ └── config.json ├── tokenizer │ ├── merges.txt │ ├── special_tokens_map.json │ ├── tokenizer_config.json │ └── vocab.json ├── unet │ └── config.json └── vae │ └── config.json ├── src ├── __init__.py ├── annotator │ └── lineart │ │ ├── LICENSE │ │ └── __init__.py ├── image_util.py ├── manganinjia_pipeline.py ├── models │ ├── __init__.py │ ├── attention.py │ ├── attention_processor.py │ ├── mutual_self_attention_multi_scale.py │ ├── refunet_2d_condition.py │ ├── transformer_2d.py │ ├── unet_2d_blocks.py │ └── unet_2d_condition.py └── point_network.py └── test_cases ├── hz0.png ├── hz01_0.npy ├── hz01_0.png ├── hz01_1.npy ├── hz01_1.png ├── hz1.png └── more_cases ├── az0.png ├── az1.JPG ├── hi0.png ├── hi1.jpg ├── hz0_lineart.png ├── kn0.jpg ├── kn1.jpg ├── rk0.jpg └── rk1.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/LICENSE -------------------------------------------------------------------------------- /MangaNinjia_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/MangaNinjia_node.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/__init__.py -------------------------------------------------------------------------------- /base_manganinjia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/base_manganinjia.json -------------------------------------------------------------------------------- /clip/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /clip/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/clip/config.json -------------------------------------------------------------------------------- /clip/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/clip/merges.txt -------------------------------------------------------------------------------- /clip/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/clip/preprocessor_config.json -------------------------------------------------------------------------------- /clip/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/clip/special_tokens_map.json -------------------------------------------------------------------------------- /clip/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/clip/tokenizer.json -------------------------------------------------------------------------------- /clip/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/clip/tokenizer_config.json -------------------------------------------------------------------------------- /clip/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/clip/vocab.json -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /configs/inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/configs/inference.yaml -------------------------------------------------------------------------------- /configs/v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/configs/v1-inference.yaml -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/environment.yaml -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/example.png -------------------------------------------------------------------------------- /exampleB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/exampleB.png -------------------------------------------------------------------------------- /example_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/example_new.png -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/infer.py -------------------------------------------------------------------------------- /js/Canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/js/Canvas.js -------------------------------------------------------------------------------- /js/Canvas_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/js/Canvas_view.js -------------------------------------------------------------------------------- /node_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/node_utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/run_gradio.py -------------------------------------------------------------------------------- /sd15_repo/cn/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/cn/config.json -------------------------------------------------------------------------------- /sd15_repo/feature_extractor/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/feature_extractor/preprocessor_config.json -------------------------------------------------------------------------------- /sd15_repo/model_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/model_index.json -------------------------------------------------------------------------------- /sd15_repo/safety_checker/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/safety_checker/config.json -------------------------------------------------------------------------------- /sd15_repo/scheduler/scheduler_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/scheduler/scheduler_config.json -------------------------------------------------------------------------------- /sd15_repo/text_encoder/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/text_encoder/config.json -------------------------------------------------------------------------------- /sd15_repo/tokenizer/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/tokenizer/merges.txt -------------------------------------------------------------------------------- /sd15_repo/tokenizer/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/tokenizer/special_tokens_map.json -------------------------------------------------------------------------------- /sd15_repo/tokenizer/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/tokenizer/tokenizer_config.json -------------------------------------------------------------------------------- /sd15_repo/tokenizer/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/tokenizer/vocab.json -------------------------------------------------------------------------------- /sd15_repo/unet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/unet/config.json -------------------------------------------------------------------------------- /sd15_repo/vae/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/sd15_repo/vae/config.json -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/annotator/lineart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/annotator/lineart/LICENSE -------------------------------------------------------------------------------- /src/annotator/lineart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/annotator/lineart/__init__.py -------------------------------------------------------------------------------- /src/image_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/image_util.py -------------------------------------------------------------------------------- /src/manganinjia_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/manganinjia_pipeline.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/models/attention.py -------------------------------------------------------------------------------- /src/models/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/models/attention_processor.py -------------------------------------------------------------------------------- /src/models/mutual_self_attention_multi_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/models/mutual_self_attention_multi_scale.py -------------------------------------------------------------------------------- /src/models/refunet_2d_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/models/refunet_2d_condition.py -------------------------------------------------------------------------------- /src/models/transformer_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/models/transformer_2d.py -------------------------------------------------------------------------------- /src/models/unet_2d_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/models/unet_2d_blocks.py -------------------------------------------------------------------------------- /src/models/unet_2d_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/models/unet_2d_condition.py -------------------------------------------------------------------------------- /src/point_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/src/point_network.py -------------------------------------------------------------------------------- /test_cases/hz0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/hz0.png -------------------------------------------------------------------------------- /test_cases/hz01_0.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/hz01_0.npy -------------------------------------------------------------------------------- /test_cases/hz01_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/hz01_0.png -------------------------------------------------------------------------------- /test_cases/hz01_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/hz01_1.npy -------------------------------------------------------------------------------- /test_cases/hz01_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/hz01_1.png -------------------------------------------------------------------------------- /test_cases/hz1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/hz1.png -------------------------------------------------------------------------------- /test_cases/more_cases/az0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/more_cases/az0.png -------------------------------------------------------------------------------- /test_cases/more_cases/az1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/more_cases/az1.JPG -------------------------------------------------------------------------------- /test_cases/more_cases/hi0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/more_cases/hi0.png -------------------------------------------------------------------------------- /test_cases/more_cases/hi1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/more_cases/hi1.jpg -------------------------------------------------------------------------------- /test_cases/more_cases/hz0_lineart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/more_cases/hz0_lineart.png -------------------------------------------------------------------------------- /test_cases/more_cases/kn0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/more_cases/kn0.jpg -------------------------------------------------------------------------------- /test_cases/more_cases/kn1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/more_cases/kn1.jpg -------------------------------------------------------------------------------- /test_cases/more_cases/rk0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/more_cases/rk0.jpg -------------------------------------------------------------------------------- /test_cases/more_cases/rk1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_MangaNinjia/HEAD/test_cases/more_cases/rk1.jpg --------------------------------------------------------------------------------