Capture the essence of traditional Japanese ukiyo-e woodblock prints with this LoRA model. It renders images in the distinctive style characterized by flat color planes, bold ink outlines, and a palette dominated by indigo and vermilion.
To apply the ukiyo-e aesthetic, add 'uk1y03' as your trigger word to your prompt. For best results, set the strength between 0.6 and 1.0, with 0.85 being a good starting point. Use an EMA sampler for smoother transitions.
1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipe = AutoPipelineForText2Image.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16).to("cuda")
5pipe.load_lora_weights("strkyyy/ukiyoe-woodblock")
6image = pipe("uk1y03, your prompt", num_inference_steps=30).images[0]