├── README.md ├── assets ├── neg_style2.jpg ├── style1.jpg ├── style2.jpg ├── style3.jpg └── teaser.jpg ├── example_create_neg_style.py ├── gradio ├── app.py └── assets │ ├── style1.jpg │ └── style3.jpg ├── infer_InstantStyle.py ├── infer_StyleStudio.py ├── infer_StyleStudio_layout_stability.py ├── ip_adapter ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-39.pyc │ ├── attention_processor.cpython-310.pyc │ ├── attention_processor.cpython-39.pyc │ ├── ip_adapter.cpython-310.pyc │ ├── ip_adapter.cpython-39.pyc │ ├── resampler.cpython-310.pyc │ ├── resampler.cpython-39.pyc │ ├── utils.cpython-310.pyc │ └── utils.cpython-39.pyc ├── attention_processor.py ├── ip_adapter.py ├── resampler.py └── utils.py ├── metrics.py ├── requirements.txt └── stylecrafter_sdxl ├── __pycache__ └── utils.cpython-310.pyc ├── config └── infer │ └── style_crafter_sdxl.yaml ├── models ├── __pycache__ │ ├── attention_processor.cpython-310.pyc │ ├── encoder.cpython-310.pyc │ ├── stylecrafter.cpython-310.pyc │ └── transformers.cpython-310.pyc ├── attention_processor.py ├── encoder.py ├── stylecrafter.py └── transformers.py ├── stylecrafter_teacherModel.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/README.md -------------------------------------------------------------------------------- /assets/neg_style2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/assets/neg_style2.jpg -------------------------------------------------------------------------------- /assets/style1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/assets/style1.jpg -------------------------------------------------------------------------------- /assets/style2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/assets/style2.jpg -------------------------------------------------------------------------------- /assets/style3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/assets/style3.jpg -------------------------------------------------------------------------------- /assets/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/assets/teaser.jpg -------------------------------------------------------------------------------- /example_create_neg_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/example_create_neg_style.py -------------------------------------------------------------------------------- /gradio/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/gradio/app.py -------------------------------------------------------------------------------- /gradio/assets/style1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/gradio/assets/style1.jpg -------------------------------------------------------------------------------- /gradio/assets/style3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/gradio/assets/style3.jpg -------------------------------------------------------------------------------- /infer_InstantStyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/infer_InstantStyle.py -------------------------------------------------------------------------------- /infer_StyleStudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/infer_StyleStudio.py -------------------------------------------------------------------------------- /infer_StyleStudio_layout_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/infer_StyleStudio_layout_stability.py -------------------------------------------------------------------------------- /ip_adapter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__init__.py -------------------------------------------------------------------------------- /ip_adapter/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /ip_adapter/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /ip_adapter/__pycache__/attention_processor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/attention_processor.cpython-310.pyc -------------------------------------------------------------------------------- /ip_adapter/__pycache__/attention_processor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/attention_processor.cpython-39.pyc -------------------------------------------------------------------------------- /ip_adapter/__pycache__/ip_adapter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/ip_adapter.cpython-310.pyc -------------------------------------------------------------------------------- /ip_adapter/__pycache__/ip_adapter.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/ip_adapter.cpython-39.pyc -------------------------------------------------------------------------------- /ip_adapter/__pycache__/resampler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/resampler.cpython-310.pyc -------------------------------------------------------------------------------- /ip_adapter/__pycache__/resampler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/resampler.cpython-39.pyc -------------------------------------------------------------------------------- /ip_adapter/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /ip_adapter/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /ip_adapter/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/attention_processor.py -------------------------------------------------------------------------------- /ip_adapter/ip_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/ip_adapter.py -------------------------------------------------------------------------------- /ip_adapter/resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/resampler.py -------------------------------------------------------------------------------- /ip_adapter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/ip_adapter/utils.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/metrics.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/requirements.txt -------------------------------------------------------------------------------- /stylecrafter_sdxl/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /stylecrafter_sdxl/config/infer/style_crafter_sdxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/config/infer/style_crafter_sdxl.yaml -------------------------------------------------------------------------------- /stylecrafter_sdxl/models/__pycache__/attention_processor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/models/__pycache__/attention_processor.cpython-310.pyc -------------------------------------------------------------------------------- /stylecrafter_sdxl/models/__pycache__/encoder.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/models/__pycache__/encoder.cpython-310.pyc -------------------------------------------------------------------------------- /stylecrafter_sdxl/models/__pycache__/stylecrafter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/models/__pycache__/stylecrafter.cpython-310.pyc -------------------------------------------------------------------------------- /stylecrafter_sdxl/models/__pycache__/transformers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/models/__pycache__/transformers.cpython-310.pyc -------------------------------------------------------------------------------- /stylecrafter_sdxl/models/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/models/attention_processor.py -------------------------------------------------------------------------------- /stylecrafter_sdxl/models/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/models/encoder.py -------------------------------------------------------------------------------- /stylecrafter_sdxl/models/stylecrafter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/models/stylecrafter.py -------------------------------------------------------------------------------- /stylecrafter_sdxl/models/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/models/transformers.py -------------------------------------------------------------------------------- /stylecrafter_sdxl/stylecrafter_teacherModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/stylecrafter_teacherModel.py -------------------------------------------------------------------------------- /stylecrafter_sdxl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Westlake-AGI-Lab/StyleStudio/HEAD/stylecrafter_sdxl/utils.py --------------------------------------------------------------------------------