Views
No views yet
SP0TTY_style to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
5pipeline.load_lora_weights('uwcc/SP0TTY_ctl2', weight_name='SP0TTY_ctl2.safetensors')
6image = pipeline('black and white red drawing of Inside a cozy dimly lit room, a fireplace burns brightly while a window reveals a snowy mountain vista at night. A plush _chair_, wooden table, and flowers accentuate the room, illuminated by the fireplace and lamp., [trigger], grayscale digital illustration, red selective color, white background').images[0]
7image.save("my_image.png")