How to use PERFECTTAUNGOO/pftu02 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/pftu02") prompt = "mujired,masterpiece,best quality,4k,mujired,Picture a vast field of richly colored flowers, captured with a vintage film camera aesthetic, giving the image a classic, grainy texture reminiscent of analog photography. In this field, a woman in a dark red, retro-style dress is surrounded by a sea of dense blooms, all in varying shades of red, burgundy, and purple. The flowers fill the scene completely, with no visible foliage, creating an impression of a timeless, endless floral expanse. The colors are slightly muted and the contrasts softened, as if faded over time, to enhance the nostalgic, film-like quality of the photograph. lora:mujired_20240406223507:0.9" image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!