mehmettozlu commited on
Commit
1cf4a02
·
verified ·
1 Parent(s): 4416a50

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +88 -3
README.md CHANGED
@@ -1,3 +1,88 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - text-to-image
4
+ - flux
5
+ - lora
6
+ - diffusers
7
+ - transformers
8
+ - template:sd-lora
9
+ - ai-toolkit
10
+
11
+ widget:
12
+ - text: kkshiwiro, anime coloring, a male ninja, silver hair, solo, masked face, relaxed expression,
13
+ wearing Hokage robe over his usual outfit, forehead protector replaced with the Hokage hat,
14
+ holding a scroll in one hand, sitting at a cluttered desk, warm sunlight streaming through the window,
15
+ peaceful Konoha village background.
16
+ output:
17
+ url: kakashi5.png
18
+ - text: kkshiwiro, 1boy, kakashi, grey hair, covered mouth, mouth mask, red eye, scar across eye, forehead protector,
19
+ gloves, konohagakure symbol, mature, green vest, pants, solo, looking at viewer, angry, standing, cowboy shot,
20
+ outdoors, forest, anime screencap, anime coloring.
21
+ output:
22
+ url: kakashi4.png
23
+
24
+ license: other
25
+ instance_prompt: kkshiwiro
26
+ base_model:
27
+ - black-forest-labs/FLUX.1-dev
28
+ license_name: flux-1-dev-non-commercial-license
29
+ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
30
+ ---
31
+
32
+ <div align="center">
33
+ <img src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/wiro_logo.png" width="15%" alt="Wiro AI" />
34
+ </div>
35
+ <hr>
36
+ <div align="center" style="line-height: 1;">
37
+ <a href="https://www.wiro.ai/" target="_blank" style="margin: 2px;">
38
+ <img alt="Homepage" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/homepage.svg" style="display: inline-block; vertical-align: middle;"/>
39
+ </a>
40
+ <a href="https://huggingface.co/WiroAI" target="_blank" style="margin: 2px;">
41
+ <img alt="Hugging Face" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/huggingface.svg" style="display: inline-block; vertical-align: middle;"/>
42
+ </a>
43
+ <a href="https://civitai.com/user/wiroai" target="_blank" style="margin: 2px;">
44
+ <img alt="CivitAI" src="https://huggingface.co/WiroAI/pokemon-flux-lora/resolve/main/civitai.svg" style="display: inline-block; vertical-align: middle;"/>
45
+ </a>
46
+ </div>
47
+ <div align="center" style="line-height: 1;">
48
+ <a href="https://instagram.com/wiroai" target="_blank" style="margin: 2px;">
49
+ <img alt="Instagram Follow" src="https://img.shields.io/badge/Instagram-wiroai-555555?logo=instagram&logoColor=white&labelColor=E4405F" style="display: inline-block; vertical-align: middle;"/>
50
+ </a>
51
+ <a href="https://x.com/wiroai" target="_blank" style="margin: 2px;">
52
+ <img alt="X Follow" src="https://img.shields.io/badge/X-wiroai-555555?logo=x&logoColor=white&labelColor=000000" style="display: inline-block; vertical-align: middle;"/>
53
+ </a>
54
+ </div>
55
+ <div align="center" style="line-height: 1;">
56
+ <a href="https://wiro.ai/agreement/terms-of-service" style="margin: 2px;">
57
+ <img alt="License" src="https://img.shields.io/badge/License-apache 2.0-f5de53?&color=f5de53" style="display: inline-block; vertical-align: middle;"/>
58
+ </a>
59
+ </div>
60
+
61
+ ## Model Details
62
+
63
+ ### Model Description
64
+
65
+ This LoRA is trained for anyone who like Kakashi Hatake from Naruto.
66
+
67
+
68
+ - **Developed by:** [Wiro AI - ML Team]
69
+ - **Shared by:** [Wiro AI](https://wiro.ai/)
70
+
71
+
72
+ <Gallery />
73
+
74
+ ## Trigger words
75
+
76
+ You should use `kkshiwiro` to trigger the image generation.
77
+
78
+ ## Civitai model link: [civitai](https://civitai.green/models/1245386/kakashi-hatake-naruto-flux-lora)
79
+
80
+ ```py
81
+ from diffusers import FluxPipeline
82
+ import torch
83
+
84
+ pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
85
+ pipeline.load_lora_weights('WiroAI/Kakashi-Hatake-Flux-LoRA', weight_name='kakashi_flux_lora.safetensors')
86
+ 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]
87
+ image.save("output.png")
88
+ ```