Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,54 @@
|
|
1 |
-
---
|
2 |
-
|
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: chaeyoungwiro, A poised K-pop singer with short silver hair and striking blue eyes,
|
13 |
+
dressed in a tailored white suit with subtle sequins. She leans against a piano in a dimly lit studio,
|
14 |
+
her expression calm and thoughtful. Ultra-HD, realistic,
|
15 |
+
emphasizing the elegance of her outfit and the soft ambiance of the setting.
|
16 |
+
output:
|
17 |
+
url: chaeyoung3.png
|
18 |
+
|
19 |
+
license: other
|
20 |
+
instance_prompt: chaeyoungwiro
|
21 |
+
base_model:
|
22 |
+
- black-forest-labs/FLUX.1-dev
|
23 |
+
license_name: flux-1-dev-non-commercial-license
|
24 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
25 |
+
---
|
26 |
+
|
27 |
+
## Model Details
|
28 |
+
|
29 |
+
### Model Description
|
30 |
+
|
31 |
+
This LoRA is trained for anyone who like Chaeyoungwiro from Twice.
|
32 |
+
|
33 |
+
|
34 |
+
- **Developed by:** [Wiro AI - ML Team]
|
35 |
+
- **Shared by:** [Wiro AI](https://wiro.ai/)
|
36 |
+
|
37 |
+
|
38 |
+
<Gallery />
|
39 |
+
|
40 |
+
## Trigger words
|
41 |
+
|
42 |
+
You should use `chaeyoungwiro` to trigger the image generation.
|
43 |
+
|
44 |
+
## Civitai model link: [civitai](https://civitai.green/posts/11822910)
|
45 |
+
|
46 |
+
```py
|
47 |
+
from diffusers import FluxPipeline
|
48 |
+
import torch
|
49 |
+
|
50 |
+
pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
|
51 |
+
pipeline.load_lora_weights('WiroAI/Chaeyoung-Flux-LoRA', weight_name='chaeyoung_flux_lora.safetensors')
|
52 |
+
image = pipeline('chaeyoungwiro, A poised K-pop singer with short silver hair and striking blue eyes, dressed in a tailored white suit with subtle sequins. She leans against a piano in a dimly lit studio, her expression calm and thoughtful. Ultra-HD, realistic, emphasizing the elegance of her outfit and the soft ambiance of the setting.').images[0]
|
53 |
+
image.save("output.png")
|
54 |
+
```
|