mehmettozlu commited on
Commit
ec90256
·
verified ·
1 Parent(s): d51a74d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +83 -3
README.md CHANGED
@@ -1,3 +1,83 @@
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: gokuwiro, A muscular young fighter with spiky black hair, wearing a torn orange gi,
13
+ standing in a battle stance, sweat dripping from his forehead, eyes full of determination.
14
+ output:
15
+ url: goku2.png
16
+ - text: gokuwiro, A cocky fighter with wild blonde hair, wearing a sleeveless fighting suit,
17
+ charging towards his opponent with a confident grin, his fists glowing with power.
18
+ output:
19
+ url: goku3.png
20
+
21
+ license: other
22
+ instance_prompt: gokuwiro
23
+ base_model:
24
+ - black-forest-labs/FLUX.1-dev
25
+ license_name: flux-1-dev-non-commercial-license
26
+ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
27
+ ---
28
+
29
+ <div align="center">
30
+ <img src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/wiro_logo.png" width="15%" alt="Wiro AI" />
31
+ </div>
32
+ <hr>
33
+ <div align="center" style="line-height: 1;">
34
+ <a href="https://www.wiro.ai/" target="_blank" style="margin: 2px;">
35
+ <img alt="Homepage" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/homepage.svg" style="display: inline-block; vertical-align: middle;"/>
36
+ </a>
37
+ <a href="https://huggingface.co/WiroAI" target="_blank" style="margin: 2px;">
38
+ <img alt="Hugging Face" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/huggingface.svg" style="display: inline-block; vertical-align: middle;"/>
39
+ </a>
40
+ </div>
41
+ <div align="center" style="line-height: 1;">
42
+ <a href="https://instagram.com/wiroai" target="_blank" style="margin: 2px;">
43
+ <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;"/>
44
+ </a>
45
+ <a href="https://x.com/wiroai" target="_blank" style="margin: 2px;">
46
+ <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;"/>
47
+ </a>
48
+ </div>
49
+ <div align="center" style="line-height: 1;">
50
+ <a href="https://wiro.ai/agreement/terms-of-service" style="margin: 2px;">
51
+ <img alt="License" src="https://img.shields.io/badge/License-apache 2.0-f5de53?&color=f5de53" style="display: inline-block; vertical-align: middle;"/>
52
+ </a>
53
+ </div>
54
+
55
+
56
+ ## Model Details
57
+
58
+ ### Model Description
59
+
60
+ This LoRA is trained for anyone who like Goku from Dragon Ball anime character.
61
+
62
+
63
+ - **Developed by:** [Wiro AI - ML Team]
64
+ - **Shared by:** [Wiro AI](https://wiro.ai/)
65
+
66
+
67
+ <Gallery />
68
+
69
+ ## Trigger words
70
+
71
+ You should use `gokuwiro` to trigger the image generation.
72
+
73
+ ## Civitai model link: [civitai](https://civitai.com/models/1201773/goku-dragon-ball-flux-lora)
74
+
75
+ ```py
76
+ from diffusers import FluxPipeline
77
+ import torch
78
+
79
+ pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
80
+ pipeline.load_lora_weights('WiroAI/Goku-Dragon-Ball-Flux-LoRA', weight_name='goku_flux_lora.safetensors')
81
+ image = pipeline('gokuwiro, A muscular young fighter with spiky black hair, wearing a torn orange gi, standing in a battle stance, sweat dripping from his forehead, eyes full of determination.').images[0]
82
+ image.save("output.png")
83
+ ```