├── .gitignore ├── LICENSE ├── README.md ├── example └── example.png ├── install.py ├── models └── Put_the_model_here.txt ├── requirements.txt └── scripts ├── faceswap.py ├── faceswap_logging.py ├── faceswap_version.py └── swapper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/README.md -------------------------------------------------------------------------------- /example/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/example/example.png -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/install.py -------------------------------------------------------------------------------- /models/Put_the_model_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/models/Put_the_model_here.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/faceswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/scripts/faceswap.py -------------------------------------------------------------------------------- /scripts/faceswap_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/scripts/faceswap_logging.py -------------------------------------------------------------------------------- /scripts/faceswap_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/scripts/faceswap_version.py -------------------------------------------------------------------------------- /scripts/swapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntellectzProductions/sd-webui-faceswap/HEAD/scripts/swapper.py --------------------------------------------------------------------------------