---
tags:
- text-to-image
- flux
- lora
- diffusers
- transformers
- template:sd-lora
- ai-toolkit
widget:
- text: kkshiwiro, anime coloring, a male ninja, silver hair, solo, masked face, relaxed expression,
wearing Hokage robe over his usual outfit, forehead protector replaced with the Hokage hat,
holding a scroll in one hand, sitting at a cluttered desk, warm sunlight streaming through the window,
peaceful Konoha village background.
output:
url: kakashi5.png
- text: kkshiwiro, 1boy, kakashi, grey hair, covered mouth, mouth mask, red eye, scar across eye, forehead protector,
gloves, konohagakure symbol, mature, green vest, pants, solo, looking at viewer, angry, standing, cowboy shot,
outdoors, forest, anime screencap, anime coloring.
output:
url: kakashi4.png
license: other
instance_prompt: kkshiwiro
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 Kakashi Hatake from Naruto.
- **Developed by:** [Wiro AI - ML Team]
- **Shared by:** [Wiro AI](https://wiro.ai/)
## Trigger words
You should use `kkshiwiro` to trigger the image generation.
## Civitai model link: [civitai](https://civitai.green/models/1245386/kakashi-hatake-naruto-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/Kakashi-Hatake-Flux-LoRA', weight_name='kakashi_flux_lora.safetensors')
image = pipeline('kkshiwiro, anime coloring, a male ninja, silver hair, solo, masked face, relaxed expression, wearing Hokage robe over his usual outfit, forehead protector replaced with the Hokage hat, holding a scroll in one hand, sitting at a cluttered desk, warm sunlight streaming through the window, peaceful Konoha village background.').images[0]
image.save("output.png")
```