Diffusers How to use strangerzonehf/FallenArt-Flux 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("strangerzonehf/FallenArt-Flux")
prompt = "Fallen Art, a medium-sized portrait of a mans face is displayed against a light blue background. The mans head is angled slightly to the left, and his eyes are squinted. His hair is cut in a bob, adding a pop of color to the scene. His eyes are a piercing blue, while his eyebrows are a darker shade of brown. His lips are a lighter shade of blue, and he is wearing a white button-down shirt with a black collar. His neck is adorned with a small cross pendant."
image = pipe(prompt).images[0]