Diffusers How to use profpeng/wanpovbj with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("Wan-AI/Wan2.1-T2V-14B", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("profpeng/wanpovbj")
prompt = "A woman performs oral sex on a man. She moves her head up and down while she sucks the shaft of the penis. A small amount of white cum drips down the penis. She maintains eye contact with the viewer. The view is POV."
image = pipe(prompt).images[0]