Transform your images into hand-painted watercolor anime art reminiscent of classic Japanese animated film studios, featuring lush natural backgrounds, soft warm light, gentle characters, atmospheric depth, painterly clouds, and whimsical cozy charm.
Add the trigger word 'gh1bl1st' to your prompt. For optimal results, set the strength between 0.6 and 1.0 with a recommended default of 0.85 using the Euler A sampler at around 25-30 steps.
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-ghibli-soft")
6image = pipe("gh1bl1st, your prompt", num_inference_steps=30).images[0]