Diffusers How to use NicFromLM/jimleestyle 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("NicFromLM/jimleestyle")
prompt = "jimlee style, comicbook illustration, the main subject is batman, batman standing on highest skyscraper rooftop, he is surrounded by shadows and his cowl making his face completely black with only two white visible, he is wearing armored suit and long torn windblown cape that covering his whole body right from the shoulders, street dimly light with car lights down below, dark noire atmosphere, black sky, moonlight, <lora:sxz-Jim-Lee-Flux:1>"
image = pipe(prompt).images[0]