How to use veravira/chanel25 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("veravira/chanel25") prompt = "chanel25 The image shows a fashion runway setting with a woman walking down the catwalk. She is wearing a structured, burgundy button-up coat that extends to about knee length. Attached to the lower portion of this coat—or forming a skirt beneath it—are layers of delicate, feather-like embellishments in soft gray and pale blue tones, giving the garment a dynamic, textured look. Her hair is pulled back neatly, and she appears poised and focused as she walks. In the background, there is a large, airy venue with a high ceiling and white architectural elements, and an audience is seated on either side of the runway. The overall impression is of an elegant, high-fashion moment." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!