Wiro-Support commited on
Commit
80dd89c
·
verified ·
1 Parent(s): 5c5cc6c

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ widget:
3
+ - text: >-
4
+ [trigger], a sculpture playing a piano, gloomy style, pumpkins
5
+ output:
6
+ url: samples/3.jpg
7
+ - text: >-
8
+ [trigger], a witch is flying in a moon background, gloomy style
9
+ output:
10
+ url: samples/1.jpg
11
+ base_model:
12
+ - black-forest-labs/FLUX.1-dev
13
+ pipeline_tag: text-to-image
14
+ tags:
15
+ - flux
16
+ - text-to-image
17
+ - lora
18
+ - ai-toolkit
19
+ license: other
20
+ license_name: flux-1-dev-non-commercial-license
21
+ license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
22
+ ---
23
+
24
+ # GTA6-style-flux-lora
25
+
26
+ <Gallery />
27
+
28
+ ## Model Description
29
+ This LoRA is trained for anyone who likes halloween style. You can visit our website to check other models https://wiro.ai/.
30
+
31
+ - **Developed by:** [Wiro AI - ML Team]
32
+
33
+ - **Shared by:** [Wiro AI]
34
+
35
+ ## Trigger Word
36
+ 'halloween_style' is the trigger word.
37
+
38
+ ## Civitai Model Link
39
+ You can download the model from [civitai](https://civitai.com/models/1083610/halloween-style-flux-lora).
40
+
41
+
42
+ ## Usage
43
+
44
+ ```py
45
+ from diffusers import FluxPipeline
46
+ import torch
47
+
48
+ pipe = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
49
+ pipe.load_lora_weights('WiroAI/halloween-style-flux-lora', weight_name='halloween_style.safetensors')
50
+ image = pipe('[trigger], a witch is flying in a moon background, gloomy style').images[0]
51
+ image.save("halloween_style_image.png")
52
+ ```