├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── examples ├── v1-workflow.json ├── v2-autodetect-faces-workflow.json ├── v2-simple-workflow.json └── v2-workflow.json ├── insightface_package.py ├── model.py ├── model_v2.py ├── photomaker.py ├── requirements.txt ├── resampler.py ├── style_template.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/__init__.py -------------------------------------------------------------------------------- /examples/v1-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/examples/v1-workflow.json -------------------------------------------------------------------------------- /examples/v2-autodetect-faces-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/examples/v2-autodetect-faces-workflow.json -------------------------------------------------------------------------------- /examples/v2-simple-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/examples/v2-simple-workflow.json -------------------------------------------------------------------------------- /examples/v2-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/examples/v2-workflow.json -------------------------------------------------------------------------------- /insightface_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/insightface_package.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/model.py -------------------------------------------------------------------------------- /model_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/model_v2.py -------------------------------------------------------------------------------- /photomaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/photomaker.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/requirements.txt -------------------------------------------------------------------------------- /resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/resampler.py -------------------------------------------------------------------------------- /style_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/style_template.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiimizu/ComfyUI-PhotoMaker-Plus/HEAD/utils.py --------------------------------------------------------------------------------