Diffusers How to use Jonjew/PatrickNagelStyle 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("Jonjew/PatrickNagelStyle")
prompt = "mad-nglstl <lora:patrick-nagel-style-flux:1> Poster, illustration, Flat Colour A monochrome image of a raven-haired woman with a long, flowing mane. Sheâs posed in profile, her gaze directed upwards. The background is a stark white, creating a strong contrast between the black of her hair and the pale tones of her face and neck. This image evokes a sense of purity and timelessness."
image = pipe(prompt).images[0]