This LoRA model transforms your prompts into warm hand-painted gouache illustrations in a charming children's storybook style, featuring visible brushstrokes, soft matte textures, and a cozy muted palette.
Apply the trigger word 'g0u4ch3' to any prompt for an instant transformation. Ideal strength settings range from 0.6 to 1.0 depending on desired intensity; we recommend starting at 0.85 with EDSampler or LMS and around 25-30 steps.
Use 'g0u4ch3' sparingly to maintain balance between your original prompt and the added illustration style. Experimenting with different samplers can yield unique results.
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/gouache-storybook")
6image = pipe("g0u4ch3, your prompt", num_inference_steps=30).images[0]