mehmettozlu commited on
Commit
81a9a2e
·
verified ·
1 Parent(s): 2021a1c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -3
README.md CHANGED
@@ -1,3 +1,54 @@
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: rosewiro, a young woman with silky black hair tied into a loose ponytail and striking green eyes.
13
+ She wears a cozy beige sweater and jeans, sitting by a large window in a sunlit room.
14
+ A steaming cup of tea rests in her hands as she gazes outside with a serene expression.
15
+ Ultra-HD, realistic, with intricate details of her hair texture, soft lighting, and the peaceful ambiance of the room.
16
+ output:
17
+ url: rosehf.png
18
+
19
+ license: other
20
+ instance_prompt: rosewiro
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 Rose from Blackpink.
32
+
33
+
34
+ - **Developed by:** [Wiro AI - ML Team]
35
+ - **Shared by:** [Wiro AI]
36
+
37
+
38
+ <Gallery />
39
+
40
+ ## Trigger words
41
+
42
+ You should use `rosewiro` to trigger the image generation.
43
+
44
+ ## Civitai model link: [civitai](https://civitai.com/models/1117365/lisa-from-blackpink)
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/Rose-Flux-LoRA', weight_name='rose_flux_lora.safetensors')
52
+ image = pipeline('rosewiro, a young woman with silky black hair tied into a loose ponytail and striking green eyes. She wears a cozy beige sweater and jeans, sitting by a large window in a sunlit room. A steaming cup of tea rests in her hands as she gazes outside with a serene expression. Ultra-HD, realistic, with intricate details of her hair texture, soft lighting, and the peaceful ambiance of the room.').images[0]
53
+ image.save("output.png")
54
+ ```