mehmettozlu commited on
Commit
f84f3a0
·
verified ·
1 Parent(s): 32f8546

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -3
README.md CHANGED
@@ -1,3 +1,53 @@
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: hyunjinwiro, a young Korean idol with soft blonde hair, flawless skin, and expressive brown eyes.
13
+ He sits on a velvet couch in a luxurious studio, wearing a pastel sweater and silver accessories.
14
+ Ultra-HD, realistic, focusing on his gentle charisma and intricate details.
15
+ output:
16
+ url: hyunjin2.png
17
+
18
+ license: other
19
+ instance_prompt: hyunjinwiro
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 Hyunjin from Stray Kids.
31
+
32
+
33
+ - **Developed by:** [Wiro AI - ML Team]
34
+ - **Shared by:** ## [Wiro AI](https://wiro.ai/)
35
+
36
+
37
+ <Gallery />
38
+
39
+ ## Trigger words
40
+
41
+ You should use `hyunjinwiro` to trigger the image generation.
42
+
43
+ ## Civitai model link: [civitai](https://civitai.com/models/1139290/hyunjin-from-stray-kids-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/Hyunjin-Flux-LoRA', weight_name='hyunjin_flux_lora.safetensors')
51
+ 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]
52
+ image.save("output.png")
53
+ ```