WiroAI Flux Models
Collection
WiroAI's plug-and-play image generation models • 30 items • Updated • 3
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("WiroAI/Batman-Animated-Flux-LoRA")
prompt = "btmnwiro, Batman stands on a rooftop at night, his cape flowing in the wind as he watches over Gotham City. The Bat-Signal shines brightly in the cloudy sky, casting a dramatic glow. The scene is dark and moody, with a cinematic noir atmosphere, inspired by classic animated series."
image = pipe(prompt).images[0]
This LoRA is trained for anyone who like Batman.


You should use btmnwiro to trigger the image generation.
from diffusers import FluxPipeline
import torch
pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('WiroAI/Batman-Animated-Flux-LoRA', weight_name='batman_flux_lora.safetensors')
image = pipeline('btmnwiro, Batman stands on a rooftop at night, his cape flowing in the wind as he watches over Gotham City. The Bat-Signal shines brightly in the cloudy sky, casting a dramatic glow. The scene is dark and moody, with a cinematic noir atmosphere, inspired by classic animated series.').images[0]
image.save("output.png")
Base model
black-forest-labs/FLUX.1-dev