Wiro-Support
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,53 @@
|
|
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: nayeonwiro, a stylish woman with white skin, purple hair, and brown eyes.
|
13 |
+
She is wearing a tailored black trench coat over a turtleneck sweater, standing on a bustling city street at dusk.
|
14 |
+
The glow of neon lights reflects off nearby glass windows, creating a vibrant urban scene.
|
15 |
+
output:
|
16 |
+
url: nayeon1.png
|
17 |
+
|
18 |
+
license: other
|
19 |
+
instance_prompt: nayeonwiro
|
20 |
+
base_model:
|
21 |
+
- black-forest-labs/FLUX.1-dev
|
22 |
+
license_name: flux-1-dev-non-commercial-license
|
23 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
24 |
+
---
|
25 |
+
|
26 |
+
## Model Details
|
27 |
+
|
28 |
+
### Model Description
|
29 |
+
|
30 |
+
This LoRA is trained for anyone who like Nayeon from Twice.
|
31 |
+
|
32 |
+
|
33 |
+
- **Developed by:** [Wiro AI - ML Team]
|
34 |
+
- **Shared by:** [Wiro AI]
|
35 |
+
|
36 |
+
|
37 |
+
<Gallery />
|
38 |
+
|
39 |
+
## Trigger words
|
40 |
+
|
41 |
+
You should use `nayeonwiro` to trigger the image generation.
|
42 |
+
|
43 |
+
## Civitai model link: [civitai](https://civitai.com/models/1095496/nayeon-from-twice-flux-lora)
|
44 |
+
|
45 |
+
```py
|
46 |
+
from diffusers import FluxPipeline
|
47 |
+
import torch
|
48 |
+
|
49 |
+
pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
|
50 |
+
pipeline.load_lora_weights('WiroAI/Nayeon-Flux-LoRA', weight_name='nayeon_flux_lora.safetensors')
|
51 |
+
image = pipeline('nayeonwiro, a stylish woman with white skin, purple hair, and brown eyes. She is wearing a tailored black trench coat over a turtleneck sweater, standing on a bustling city street at dusk. The glow of neon lights reflects off nearby glass windows, creating a vibrant urban scene.').images[0]
|
52 |
+
image.save("output.png")
|
53 |
+
```
|