Diffusers How to use PERFECTTAUNGOO/Pftupre03 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/Pftupre03")
prompt = "((best quality)), ((masterpiece)), (detailed), full-body shot of a beautiul asian girl standing alone in a beautiful garden setting, wearing a luxurious, flowing white chiffon dress with intricate lace details, and a delicate crown of flowers in her hair. She is holding a bouquet of white orchids, standing gracefully beneath a romantic arch made of lush greenery and white roses, with a pathway leading into the background filled with more blooming roses and green trees. The sunlight softly filters through the foliage, casting a warm and natural light over the scene, enhancing the details of her attire and the floral decorations. (highly detailed flowers), (elegant), (romantic), (natural lighting)."
image = pipe(prompt).images[0]