├── .asset └── teaser.png ├── .gitignore ├── LICENSE ├── README.md ├── config ├── infer │ └── style_crafter_sdxl.yaml └── train │ ├── style_crafter_sdxl_1024.yaml │ ├── style_crafter_sdxl_1024_noise_offset.yaml │ └── style_crafter_sdxl_512.yaml ├── dataset.py ├── infer.py ├── install.sh ├── models ├── attention_processor.py ├── encoder.py ├── stylecrafter.py └── transformers.py ├── testing_data ├── input_style │ ├── anime.jpeg │ ├── craft.png │ ├── oil_paint_1.jpeg │ ├── oil_paint_2.jpg │ └── ukiyoe.jpg └── prompts.txt ├── train.sh ├── train_sdxl.py └── utils.py /.asset/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/.asset/teaser.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/README.md -------------------------------------------------------------------------------- /config/infer/style_crafter_sdxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/config/infer/style_crafter_sdxl.yaml -------------------------------------------------------------------------------- /config/train/style_crafter_sdxl_1024.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/config/train/style_crafter_sdxl_1024.yaml -------------------------------------------------------------------------------- /config/train/style_crafter_sdxl_1024_noise_offset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/config/train/style_crafter_sdxl_1024_noise_offset.yaml -------------------------------------------------------------------------------- /config/train/style_crafter_sdxl_512.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/config/train/style_crafter_sdxl_512.yaml -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/dataset.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/infer.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/install.sh -------------------------------------------------------------------------------- /models/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/models/attention_processor.py -------------------------------------------------------------------------------- /models/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/models/encoder.py -------------------------------------------------------------------------------- /models/stylecrafter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/models/stylecrafter.py -------------------------------------------------------------------------------- /models/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/models/transformers.py -------------------------------------------------------------------------------- /testing_data/input_style/anime.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/testing_data/input_style/anime.jpeg -------------------------------------------------------------------------------- /testing_data/input_style/craft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/testing_data/input_style/craft.png -------------------------------------------------------------------------------- /testing_data/input_style/oil_paint_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/testing_data/input_style/oil_paint_1.jpeg -------------------------------------------------------------------------------- /testing_data/input_style/oil_paint_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/testing_data/input_style/oil_paint_2.jpg -------------------------------------------------------------------------------- /testing_data/input_style/ukiyoe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/testing_data/input_style/ukiyoe.jpg -------------------------------------------------------------------------------- /testing_data/prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/testing_data/prompts.txt -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/train.sh -------------------------------------------------------------------------------- /train_sdxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/train_sdxl.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GongyeLiu/StyleCrafter-SDXL/HEAD/utils.py --------------------------------------------------------------------------------