Diffusers How to use IcelosAI/Xenomorph_LoRA_FLUX1_Dev 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("IcelosAI/Xenomorph_LoRA_FLUX1_Dev")
prompt = "horror film night time photo with angled perspective, close up of an drooling Xenomorph alien looking at an wounded prison inmate, in the background is a crowd of inamtes running away in panic in very dirty dystopian foundry. The fokus is on the xenomorph. dynamic scene, depth of field, motion blur, very dark scenery, smokey, dimm light"
image = pipe(prompt).images[0]