How to use veravira/dilorenzo 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/dilorenzo") prompt = "dilorenzo, A photo of a woman in a beige dress walking down a runway, with a crowd of people watching her. The woman is wearing a dress that is long and flowing, and she appears to be the center of attention. The crowd consists of people sitting and standing around the runway, with some of them holding cell phones. The overall atmosphere of the image is fashionable and lively." image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!