Diffusers How to use Gemneye/K1mberly 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("Gemneye/K1mberly")
prompt = "K1mberly, a woman in her 40s with oak-brown hair cascading past her shoulders and rich brown eyes filled with quiet determination, sits at a polished mahogany desk in a minimalist glass-walled executive office, wearing a crisp ivory blouse and charcoal tailored trousers, soft daylight through floor-to-ceiling windows and a hint of city-scape behind her—ultra-realistic professional fashion story for social media."
image = pipe(prompt).images[0]