├── README.md ├── assets ├── 0.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── background_mask.png ├── comparison.png ├── composition_mask.png ├── example1.png ├── example2.png ├── example3.png ├── female_mask.png ├── ip_background.png ├── ip_composition_image.png ├── ip_female_style.png ├── ip_male_style.png ├── male_mask.png ├── multi_instantstyle.png ├── multi_mask.png ├── overture-creations-5sI6fQgYIuo.png ├── overture-creations-5sI6fQgYIuo_mask.png ├── overture-creations-5sI6fQgYIuo_mask_inverse.png ├── page0.png ├── pipe.png ├── subtraction.png ├── tree.png └── yann-lecun.jpg ├── attn_blocks.py ├── attn_blocks_sd15.py ├── gradio_demo ├── .gitignore ├── README.md ├── app.py ├── assets │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── yann-lecun.jpg └── requirements.txt ├── infer_style.py ├── infer_style_controlnet.py ├── infer_style_inpainting.py ├── infer_style_plus.py ├── infer_style_sd15.py ├── ip_adapter ├── __init__.py ├── attention_processor.py ├── ip_adapter.py ├── resampler.py └── utils.py └── notebooks └── instant_style_controlnet_sdxl_demo.ipynb /README.md: -------------------------------------------------------------------------------- 1 |
31 |
32 |
36 |
37 |
62 |
63 |
64 |
69 |
70 |
75 |
76 |
251 |
252 |