---
tags:
- text-to-image
- flux
- lora
- diffusers
- transformers
- template:sd-lora
- ai-toolkit
widget:
- text: vegetawiro, A muscular Saiyan warrior with spiky black hair and a sharp widow’s peak,
wearing blue battle armor with white gloves and boots. His arms are crossed,
and he smirks confidently while a golden energy aura crackles around him.
output:
url: vegeta1.png
- text: vegetawiro, Seated in a cozy café, the battle-hardened Saiyan dons a simple gray hoodie while sipping coffee.
His unruly spiky hair and mildly amused expression are highlighted as his pet parrot mimics his battle cries.
Fellow patrons exchange chuckles at this unexpected, quirky display.
output:
url: vegeta4.png
license: other
instance_prompt: vegetawiro
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 Vegeta from Dragon Ball Z.
- **Developed by:** [Wiro AI - ML Team]
- **Shared by:** [Wiro AI](https://wiro.ai/)
## Trigger words
You should use `vegetawiro` to trigger the image generation.
## Civitai model link: [civitai](https://civitai.com/models/1226860/vegeta-dragon-ball-z-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/Vegeta-Dragon-Ball-Z-Flux-LoRA', weight_name='vegeta_flux_lora.safetensors')
image = pipeline('vegetawiro, A muscular Saiyan warrior with spiky black hair and a sharp widow’s peak, wearing blue battle armor with white gloves and boots. His arms are crossed, and he smirks confidently while a golden energy aura crackles around him.').images[0]
image.save("output.png")
```