Views
No views yet
Coloring Book, ColoringBookAF to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-2-1-base', torch_dtype=torch.float16).to('cuda')
5pipeline.load_lora_weights('artificialguybr/coloringbook-redmond-2-1v-coloring-book-lora-for-freedomredmond-sd-2-1', weight_name='ColoringBookRedmond21V-FreedomRedmond-ColoringBook-ColoringBookAF.safetensors')
6image = pipeline('A Pirate boy, Coloring Book, ColoringBookAF,, ').images[0]