Diffusers How to use PERFECTTAUNGOO/pfdg02 with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("PERFECTTAUNGOO/pfdg02")
prompt = "kinghere yulonggirl,1girl,dragon,eastern dragon,cloud,chinese clothes,black hair,hair bun,jewelry,hair ornament,hanfu,earrings,red lips,flower,single hair bun,makeup,cloudy sky,solo,long sleeves,sky,dress,white dress,realistic,wide sleeves,own hands together,closed mouth,standing,eyeshadow,best quality,masterpiece,realistic,HDR,UHD,8K,best quality,highres,absurdres,realistic,<lora:kinghere yulonggirl_20240201022212-000016:0.8>,(mother-to-be:1.2),"
image = pipe(prompt).images[0]