mehmettozlu commited on
Commit
de47611
·
verified ·
1 Parent(s): 3e90a2f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +84 -3
README.md CHANGED
@@ -1,3 +1,84 @@
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: jihyowiro, A 20-year-old woman with long, wavy brown hair, standing by a sunlit window.
13
+ Soft natural light gently illuminates her face, highlighting her deep brown eyes and smooth, freckled skin.
14
+ She wears a simple white linen dress, and a gentle breeze moves her hair.
15
+ The background is blurred, showing an airy, minimalistic room with houseplants, creating a warm and cozy atmosphere.
16
+ Ultra HD, highly detailed, cinematic lighting, realistic skin texture.
17
+ output:
18
+ url: jihyo1.png
19
+
20
+ license: other
21
+ instance_prompt: jihyowiro
22
+ base_model:
23
+ - black-forest-labs/FLUX.1-dev
24
+ license_name: flux-1-dev-non-commercial-license
25
+ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
26
+ ---
27
+
28
+ <div align="center">
29
+ <img src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/wiro_logo.png" width="15%" alt="Wiro AI" />
30
+ </div>
31
+ <hr>
32
+ <div align="center" style="line-height: 1;">
33
+ <a href="https://www.wiro.ai/" target="_blank" style="margin: 2px;">
34
+ <img alt="Homepage" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/homepage.svg" style="display: inline-block; vertical-align: middle;"/>
35
+ </a>
36
+ <a href="https://huggingface.co/WiroAI" target="_blank" style="margin: 2px;">
37
+ <img alt="Hugging Face" src="https://huggingface.co/WiroAI/wiroai-turkish-llm-9b/resolve/main/huggingface.svg" style="display: inline-block; vertical-align: middle;"/>
38
+ </a>
39
+ <a href="https://civitai.com/user/wiroai" target="_blank" style="margin: 2px;">
40
+ <img alt="CivitAI" src="https://huggingface.co/WiroAI/pokemon-flux-lora/resolve/main/civitai.svg" style="display: inline-block; vertical-align: middle;"/>
41
+ </a>
42
+ </div>
43
+ <div align="center" style="line-height: 1;">
44
+ <a href="https://instagram.com/wiroai" target="_blank" style="margin: 2px;">
45
+ <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;"/>
46
+ </a>
47
+ <a href="https://x.com/wiroai" target="_blank" style="margin: 2px;">
48
+ <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;"/>
49
+ </a>
50
+ </div>
51
+ <div align="center" style="line-height: 1;">
52
+ <a href="https://wiro.ai/agreement/terms-of-service" style="margin: 2px;">
53
+ <img alt="License" src="https://img.shields.io/badge/License-apache 2.0-f5de53?&color=f5de53" style="display: inline-block; vertical-align: middle;"/>
54
+ </a>
55
+ </div>
56
+
57
+ ## Model Details
58
+
59
+ ### Model Description
60
+
61
+ This LoRA is trained for anyone who like Jihyo from Twice.
62
+
63
+
64
+ - **Developed by:** [Wiro AI - ML Team]
65
+ - **Shared by:** [Wiro AI](https://wiro.ai/)
66
+
67
+
68
+ <Gallery />
69
+
70
+ ## Trigger words
71
+
72
+ You should use `jihyowiro` to trigger the image generation.
73
+
74
+ ## Civitai model link: [civitai](https://civitai.com/models/1223156/jihyo-from-twice-flux-lora)
75
+
76
+ ```py
77
+ from diffusers import FluxPipeline
78
+ import torch
79
+
80
+ pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
81
+ pipeline.load_lora_weights('WiroAI/Jihyo-Flux-LoRA', weight_name='jihyo_flux_lora.safetensors')
82
+ image = pipeline('jihyowiro, A 20-year-old woman with long, wavy brown hair, standing by a sunlit window. Soft natural light gently illuminates her face, highlighting her deep brown eyes and smooth, freckled skin. She wears a simple white linen dress, and a gentle breeze moves her hair. The background is blurred, showing an airy, minimalistic room with houseplants, creating a warm and cozy atmosphere. Ultra HD, highly detailed, cinematic lighting, realistic skin texture.').images[0]
83
+ image.save("output.png")
84
+ ```