---
tags:
- text-to-image
- flux
- lora
- diffusers
- transformers
- template:sd-lora
- ai-toolkit
widget:
- text: 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.
output:
url: batman1.png
- text: btmnwiro, animated, Batman in a stylized, noir-inspired animated design,
standing on a rooftop with Gotham’s skyline in the background.
His cape flows in the wind, and his eyes glow white in the darkness.
output:
url: batman3.png
license: other
instance_prompt: btmnwiro
base_model:
- black-forest-labs/FLUX.1-dev
license_name: flux-1-dev-non-commercial-license
license_link: https://huggingface.co./black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
---
## Model Details
### Model Description
This LoRA is trained for anyone who like Batman.
- **Developed by:** [Wiro AI - ML Team]
- **Shared by:** [Wiro AI](https://wiro.ai/)
## Trigger words
You should use `btmnwiro` to trigger the image generation.
## Civitai model link: [civitai](https://civitai.com/models/1219717/batman-animated-flux-lora)
```py
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")
```