mehmettozlu commited on
Commit
0e000d3
·
verified ·
1 Parent(s): 7c4d4a3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -3
README.md CHANGED
@@ -1,3 +1,87 @@
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: swkwiro, anime coloring, an anime girl, black hair, solo, long hair, school uniform, smile, black eyes,
13
+ blush, looking at viewer, open mouth, bow, blazer, bangs, blunt bangs, upper body, shirt, red bow,
14
+ bowtie, long sleeves, hime cut, waving at viewer
15
+ output:
16
+ url: sawako2.png
17
+ - text: swkwiro, anime coloring, an anime girl, black hair, solo, long hair, traditional Japanese kimono,
18
+ gentle smile, deep brown eyes, cherry blossom background, looking at viewer, soft blush, elegant pose,
19
+ floral hairpin, sakura petals, long sleeves, calm expression, serene lighting
20
+ output:
21
+ url: sawako4.png
22
+
23
+ license: other
24
+ instance_prompt: swkwiro
25
+ base_model:
26
+ - black-forest-labs/FLUX.1-dev
27
+ license_name: flux-1-dev-non-commercial-license
28
+ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
29
+ ---
30
+
31
+ <div align="center">
32
+ <img src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/wiro_logo.png" width="15%" alt="Wiro AI" />
33
+ </div>
34
+ <hr>
35
+ <div align="center" style="line-height: 1;">
36
+ <a href="https://www.wiro.ai/" target="_blank" style="margin: 2px;">
37
+ <img alt="Homepage" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/homepage.svg" style="display: inline-block; vertical-align: middle;"/>
38
+ </a>
39
+ <a href="https://huggingface.co/WiroAI" target="_blank" style="margin: 2px;">
40
+ <img alt="Hugging Face" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/huggingface.svg" style="display: inline-block; vertical-align: middle;"/>
41
+ </a>
42
+ <a href="https://civitai.com/user/wiroai" target="_blank" style="margin: 2px;">
43
+ <img alt="CivitAI" src="https://huggingface.co/WiroAI/pokemon-flux-lora/resolve/main/civitai.svg" style="display: inline-block; vertical-align: middle;"/>
44
+ </a>
45
+ </div>
46
+ <div align="center" style="line-height: 1;">
47
+ <a href="https://instagram.com/wiroai" target="_blank" style="margin: 2px;">
48
+ <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;"/>
49
+ </a>
50
+ <a href="https://x.com/wiroai" target="_blank" style="margin: 2px;">
51
+ <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;"/>
52
+ </a>
53
+ </div>
54
+ <div align="center" style="line-height: 1;">
55
+ <a href="https://wiro.ai/agreement/terms-of-service" style="margin: 2px;">
56
+ <img alt="License" src="https://img.shields.io/badge/License-apache 2.0-f5de53?&color=f5de53" style="display: inline-block; vertical-align: middle;"/>
57
+ </a>
58
+ </div>
59
+
60
+ ## Model Details
61
+
62
+ ### Model Description
63
+
64
+ This LoRA is trained for anyone who like Sawako Kuronuma from Kimi ni Todoke.
65
+
66
+
67
+ - **Developed by:** [Wiro AI - ML Team]
68
+ - **Shared by:** [Wiro AI](https://wiro.ai/)
69
+
70
+
71
+ <Gallery />
72
+
73
+ ## Trigger words
74
+
75
+ You should use `swkwiro` to trigger the image generation.
76
+
77
+ ## Civitai model link: [civitai](https://civitai.com/models/1241798/sawako-kuronuma-kimi-ni-todoke-flux-lora)
78
+
79
+ ```py
80
+ from diffusers import FluxPipeline
81
+ import torch
82
+
83
+ pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
84
+ pipeline.load_lora_weights('WiroAI/Sawako-Kuronuma-Flux-LoRA', weight_name='sawako_flux_lora.safetensors')
85
+ image = pipeline('swkwiro, anime coloring, an anime girl, black hair, solo, long hair, traditional Japanese kimono, gentle smile, deep brown eyes, cherry blossom background, looking at viewer, soft blush, elegant pose, floral hairpin, sakura petals, long sleeves, calm expression, serene lighting').images[0]
86
+ image.save("output.png")
87
+ ```