Views
No views yet
pilyeon style to trigger the image generation.1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
5pipeline.load_lora_weights('goofyai/pilyeon-style-goofy-ai', weight_name='pilyeon_style.safetensors')
6image = pipeline('pilyeon style, 1girl, looking at viewer, parted lips, upper body, jewelry, Printed mini skirt, black tee, sneakers').images[0]