Downloads · 30 days
5
1% of all-time downloads
kiddoos/totoro
totoro is a text-to-image model from kiddoos. Use it when you need an image from a text prompt. It is set up for diffusers.
These are LoRA adaption weights for nitrosocke/Ghibli-Diffusion.
Downloads · 30 days
5
1% of all-time downloads
All-time downloads
562
Public
Repo size
616 MB
Likes
0
Public
Click a slice to open those files.
.bin64.2 MB · 94%
From the Hugging Face model README
These are LoRA adaption weights for nitrosocke/Ghibli-Diffusion.
pipe = StableDiffusionPipeline.from_pretrained(
model_id,
torch_dtype=torch.float16,
safety_checker=None,
)
pipe.enable_xformers_memory_efficient_attention()
pipe.load_lora_weights(./lora_weights)
pipe = pipe.to('cuda')
image = pipe(
prompt='Totoro',
num_inference_steps=66,
guidance_scale=6.9,
cross_attention_kwargs={'scale': 0.6 },
).images[0]
