├── .gitignore ├── License.txt ├── Notice.txt ├── README.md ├── app.py ├── assets ├── 1_lite.png ├── boy.jpg ├── girl.jpg ├── more_case.png ├── show.png ├── style.png ├── thanks_hf_fal.jpg └── thanks_jyduan.jpg ├── infer_demo.py ├── models ├── attn_processor.py ├── norm_layer.py ├── resampler.py └── utils.py ├── offload_infer_demo.py └── pipeline.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/License.txt -------------------------------------------------------------------------------- /Notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/Notice.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/app.py -------------------------------------------------------------------------------- /assets/1_lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/assets/1_lite.png -------------------------------------------------------------------------------- /assets/boy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/assets/boy.jpg -------------------------------------------------------------------------------- /assets/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/assets/girl.jpg -------------------------------------------------------------------------------- /assets/more_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/assets/more_case.png -------------------------------------------------------------------------------- /assets/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/assets/show.png -------------------------------------------------------------------------------- /assets/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/assets/style.png -------------------------------------------------------------------------------- /assets/thanks_hf_fal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/assets/thanks_hf_fal.jpg -------------------------------------------------------------------------------- /assets/thanks_jyduan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/assets/thanks_jyduan.jpg -------------------------------------------------------------------------------- /infer_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/infer_demo.py -------------------------------------------------------------------------------- /models/attn_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/models/attn_processor.py -------------------------------------------------------------------------------- /models/norm_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/models/norm_layer.py -------------------------------------------------------------------------------- /models/resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/models/resampler.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/models/utils.py -------------------------------------------------------------------------------- /offload_infer_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/offload_infer_demo.py -------------------------------------------------------------------------------- /pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent-Hunyuan/InstantCharacter/HEAD/pipeline.py --------------------------------------------------------------------------------