How to use PERFECTTAUNGOO/LC14 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/LC14") prompt = "A beautiful Chinese woman in a white wedding dress,standing inside the bright and dreamy marble palace surrounded by light clouds. She is wearing an off-the-shoulder diamond top with a large round skirt satin ball gown,her long hair flowing behind her,her face illuminated under the sunlight,her eyes sparkling with joy as if immersed in dreams,surrounded by towering columns of light that create a magical atmosphere,photographed in the style of photographer James Bidgood.,,<lora:tiankong_20240705221250:0.8>" image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!