How to use TheAwakenOne/Marilyn-Monroe 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("TheAwakenOne/Marilyn-Monroe") prompt = "Marilyn Monroe with a bright smile on her face. She is wearing a white dress with a plunging neckline and her signature blonde hair is styled in curls. Her eyes are bright and her lips are curved" image = pipe(prompt).images[0]
· Sign up or log in to comment