This LoRA enhances the classic shoujo anime aesthetic with a soft pastel palette, large expressive eyes with highlights, flowing hair, floral accents, and sparkling details. It creates a dreamy romantic atmosphere perfect for depicting young girls in various scenarios.
Apply the trigger word 'sh0ujo' followed by your prompt to invoke this style. A suggested strength of 0.85 works well with most samplers; however, you may find it effective at strengths between 0.6 and 1.0.
Use 'sh0ujo' as early in your prompt as possible for best results. Consider adjusting strength based on how dominant you want this style to be.
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/anime-shoujo-sparkle")
6image = pipe("sh0ujo, your prompt", num_inference_steps=30).images[0]