File size: 1,666 Bytes
f84f3a0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3ee74a1
f84f3a0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
tags:
- text-to-image
- flux
- lora
- diffusers
- transformers
- template:sd-lora
- ai-toolkit

widget:
-   text: hyunjinwiro, a young Korean idol with soft blonde hair, flawless skin, and expressive brown eyes.
          He sits on a velvet couch in a luxurious studio, wearing a pastel sweater and silver accessories.
          Ultra-HD, realistic, focusing on his gentle charisma and intricate details.
    output:
        url: hyunjin2.png

license: other
instance_prompt: hyunjinwiro
base_model:
- black-forest-labs/FLUX.1-dev
license_name: flux-1-dev-non-commercial-license
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
---

## Model Details

### Model Description

This LoRA is trained for anyone who like Hyunjin from Stray Kids.


- **Developed by:** [Wiro AI - ML Team]
- **Shared by:** [Wiro AI](https://wiro.ai/)


<Gallery />

## Trigger words

You should use `hyunjinwiro` to trigger the image generation.

## Civitai model link: [civitai](https://civitai.com/models/1139290/hyunjin-from-stray-kids-flux-lora)

```py
from diffusers import FluxPipeline
import torch

pipeline = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('WiroAI/Hyunjin-Flux-LoRA', weight_name='hyunjin_flux_lora.safetensors')
image = pipeline('hyunjinwiro, a young Korean idol with soft blonde hair, flawless skin, and expressive brown eyes. He sits on a velvet couch in a luxurious studio, wearing a pastel sweater and silver accessories. Ultra-HD, realistic, focusing on his gentle charisma and intricate details.').images[0]
image.save("output.png")
```