├── LICENSE ├── README.md ├── contributing.md ├── demo_stylealigned_controlnet.py ├── demo_stylealigned_multidiffusion.py ├── demo_stylealigned_sdxl.py ├── doc ├── cn_example.jpg ├── md_example.jpg ├── sa_example.jpg └── sa_transfer_example.jpeg ├── example_image ├── A.png ├── camel.png ├── medieval-bed.jpeg ├── sun.png ├── train.png └── whale.png ├── inversion.py ├── pipeline_calls.py ├── requirements.txt ├── sa_handler.py ├── style_aligned_sd1.ipynb ├── style_aligned_sdxl.ipynb ├── style_aligned_transfer_sdxl.ipynb ├── style_aligned_w_controlnet.ipynb └── style_aligned_w_multidiffusion.ipynb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/contributing.md -------------------------------------------------------------------------------- /demo_stylealigned_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/demo_stylealigned_controlnet.py -------------------------------------------------------------------------------- /demo_stylealigned_multidiffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/demo_stylealigned_multidiffusion.py -------------------------------------------------------------------------------- /demo_stylealigned_sdxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/demo_stylealigned_sdxl.py -------------------------------------------------------------------------------- /doc/cn_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/doc/cn_example.jpg -------------------------------------------------------------------------------- /doc/md_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/doc/md_example.jpg -------------------------------------------------------------------------------- /doc/sa_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/doc/sa_example.jpg -------------------------------------------------------------------------------- /doc/sa_transfer_example.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/doc/sa_transfer_example.jpeg -------------------------------------------------------------------------------- /example_image/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/example_image/A.png -------------------------------------------------------------------------------- /example_image/camel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/example_image/camel.png -------------------------------------------------------------------------------- /example_image/medieval-bed.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/example_image/medieval-bed.jpeg -------------------------------------------------------------------------------- /example_image/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/example_image/sun.png -------------------------------------------------------------------------------- /example_image/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/example_image/train.png -------------------------------------------------------------------------------- /example_image/whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/example_image/whale.png -------------------------------------------------------------------------------- /inversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/inversion.py -------------------------------------------------------------------------------- /pipeline_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/pipeline_calls.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/requirements.txt -------------------------------------------------------------------------------- /sa_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/sa_handler.py -------------------------------------------------------------------------------- /style_aligned_sd1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/style_aligned_sd1.ipynb -------------------------------------------------------------------------------- /style_aligned_sdxl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/style_aligned_sdxl.ipynb -------------------------------------------------------------------------------- /style_aligned_transfer_sdxl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/style_aligned_transfer_sdxl.ipynb -------------------------------------------------------------------------------- /style_aligned_w_controlnet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/style_aligned_w_controlnet.ipynb -------------------------------------------------------------------------------- /style_aligned_w_multidiffusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/style-aligned/HEAD/style_aligned_w_multidiffusion.ipynb --------------------------------------------------------------------------------