--- tags: - stable-diffusion-xl - stable-diffusion-xl-diffusers - text-to-image - diffusers - lora - template:sd-lora base_model: stabilityai/stable-diffusion-xl-base-1.0 instance_prompt: Mugler FW97 style license: openrail++ --- # SDXL LoRA DreamBooth - tonyassi/mugler-fw97-fashion-lora by [Tony Assi](https://www.tonyassi.com/) Dreambooth Lora style based on the [Mugler FW97](https://www.vogue.com/fashion-shows/fall-1997-couture/mugler) collection. ![image/png](https://cdn-uploads.huggingface.co/production/uploads/648a824a8ca6cf9857d1349c/mlNLvWxZzSGrgIy56ztJR.png) ## Trigger words Use **Mugler FW97 style** in the prompt to trigger the style. ## How to use ```bash pip install diffusers accelerate ``` ```python import torch from diffusers import DiffusionPipeline, AutoencoderKL # Load the pipeline vae = AutoencoderKL.from_pretrained("madebyollin/sdxl-vae-fp16-fix", torch_dtype=torch.float16) pipe = DiffusionPipeline.from_pretrained( "stabilityai/stable-diffusion-xl-base-1.0", vae=vae, torch_dtype=torch.float16, variant="fp16", use_safetensors=True ) pipe.load_lora_weights("tonyassi/mugler-fw97-fashion-lora") pipe.to("cuda") # Generate image prompt = "Mugler FW97 style, megan fox wearing a gold mesh dress with crystals" image = pipe(prompt=prompt, height=1024, width=1024, num_inference_steps=50, negative_prompt="ugly, deformed face, deformed body").images[0] image ``` ## Examples ![image/png](https://cdn-uploads.huggingface.co/production/uploads/648a824a8ca6cf9857d1349c/9z33q9rNhbMRm1y_3_6tR.png) **Mugler FW97 style, Bettie Page holding a whip** ![image/png](https://cdn-uploads.huggingface.co/production/uploads/648a824a8ca6cf9857d1349c/YMBNN_QekZ9S3-6Sdyix0.png) **Mugler FW97 style, Spock, Star Trek** ![image/png](https://cdn-uploads.huggingface.co/production/uploads/648a824a8ca6cf9857d1349c/2zZ08zz60womCgoadmrjS.png) **Mugler FW97 style, John Travolta** ![image/png](https://cdn-uploads.huggingface.co/production/uploads/648a824a8ca6cf9857d1349c/5TsVsqSLgzNHiFlpJEqj_.png) **Mugler FW97 style, Bettie Page** ![image/png](https://cdn-uploads.huggingface.co/production/uploads/648a824a8ca6cf9857d1349c/t84UeB2_mpwf7helJ-6YS.png) **Mugler FW97 style, Emma Stone** ![image/png](https://cdn-uploads.huggingface.co/production/uploads/648a824a8ca6cf9857d1349c/rX8lju_0gemMAFiBOocIz.png) **Mugler FW97 style, Emma Stone** ## Model description These are tonyassi/mugler-fw97-fashion-lora LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0. The weights were trained using [DreamBooth](https://dreambooth.github.io/). LoRA for the text encoder was enabled: False. Special VAE used for training: madebyollin/sdxl-vae-fp16-fix. ## Download model Weights for this model are available in Safetensors format. [Download](https://huggingface.co/tonyassi/mugler-fw97-fashion-lora/tree/main) them in the Files & versions tab.