How to use TheRaf7/instagirl-v2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("DFloat11/Wan2.1-T2V-14B-Diffusers-DF11", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("TheRaf7/instagirl-v2") prompt = "Instagirl, l3n0v0, no makeup, petite body, standing hip-sway pose with one hand tucked behind back, eye-level medium-full framing, young white-phillipino woman, long straight chest-length brown hair, oval face, matte skin with a few small moles and freckles wearing tight black cropped T-shirt and black tight biker shorts, thin gold necklace, neutral living room with cream sofa, beige pillows, half-circle dark wall panel and curtains, warm indoor lamp light, casual evening vibe, amateur cellphone quality, subtle motion blur present visible sensor noise, artificial over-sharpening, heavy HDR glow, amateur photo, blown-out highlights, crushed shadows" image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!