Views
No views yet
| Base Model | stabilityai/stable-diffusion-xl-base-1.0 |
| VAE | madebyollin/sdxl-vae-fp16-fix |
| Fine-tuning Method | LoRA (rank 16) |
| Task | Text-to-image · style transfer |
| Trigger Word | wrli style |
| Training Steps | 1500 |
| Resolution | 768 |
| License | MIT |
wrli style to your prompt. Short prompts work best — long, detailed
prompts can override the style binding (see Limitations).!pip install -q -U "torchao>=0.16.0"1from diffusers import DiffusionPipeline
2import torch
3
4pipe = DiffusionPipeline.from_pretrained(
5 "stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16
6).to("cuda")
7pipe.load_lora_weights("SachinHatikankan/warli-sdxl-lora")
8
9image = pipe("wrli style, a village festival", guidance_scale=9.0).images[0]
10image.save("warli.png")