Norod78 commited on
Commit
733b8d6
1 Parent(s): 56a5b89

Upload folder using huggingface_hub

Browse files
28858185.jpeg ADDED
28858186.jpeg ADDED
28858187.jpeg ADDED
28858188.jpeg ADDED
28858189.jpeg ADDED
28858190.jpeg ADDED
28858191.jpeg ADDED
Flux-WoW-Screenshot-LoRA.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11cf2bd6fac5287e62c6ff12c76de56d547781a73e6495d78a56ed8c64709a15
3
+ size 86049863
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=False
5
+ tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - migrated
12
+ - wow
13
+ - style
14
+ - world of warcraft
15
+ - styled
16
+
17
+ base_model: black-forest-labs/FLUX.1-dev
18
+ instance_prompt: WoW Screenshot
19
+ widget:
20
+ - text: 'a doge dog in a leather jacket riding a motorcycle in a desert, WoW Screenshot'
21
+
22
+ output:
23
+ url: >-
24
+ 28858186.jpeg
25
+ - text: 'a horse is a DJ at a night club, fish eye lens, smoke machine, lazer lights, holding a martini WoW Screenshot'
26
+
27
+ output:
28
+ url: >-
29
+ 28858188.jpeg
30
+ - text: 'woman with red hair, playing chess at the park, bomb going off in the background WoW Screenshot'
31
+
32
+ output:
33
+ url: >-
34
+ 28858187.jpeg
35
+ - text: 'Wonderwoman flying with golden wings, WoW Screenshot'
36
+
37
+ output:
38
+ url: >-
39
+ 28858185.jpeg
40
+ - text: 'A socially awkward potato WoW Screenshot'
41
+
42
+ output:
43
+ url: >-
44
+ 28858189.jpeg
45
+ - text: 'eiffel tower WoW Screenshot'
46
+
47
+ output:
48
+ url: >-
49
+ 28858191.jpeg
50
+ - text: 'The girl with a pearl earring WoW Screenshot'
51
+
52
+ output:
53
+ url: >-
54
+ 28858190.jpeg
55
+
56
+ ---
57
+
58
+ # WoW Screenshot [FLUX]
59
+
60
+ <Gallery />
61
+
62
+
63
+
64
+ ([CivitAI](https://civitai.com/models/))
65
+
66
+ ## Model description
67
+
68
+ <p>Make your images look like they are a screenshot from World of Warcraft</p><p>Use a LoRA weight scale between 1.5 to 2.0</p><p>Use "<em>WoW Screenshot"</em> in your prompts to trigger the style</p>
69
+
70
+ ## Trigger words
71
+ You should use `WoW Screenshot` to trigger the image generation.
72
+
73
+
74
+ ## Download model
75
+
76
+ Weights for this model are available in Safetensors format.
77
+
78
+ [Download](/Norod78/wow-screenshot-flux/tree/main) them in the Files & versions tab.
79
+
80
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
81
+
82
+ ```py
83
+ from diffusers import AutoPipelineForText2Image
84
+ import torch
85
+
86
+ device = "cuda" if torch.cuda.is_available() else "cpu"
87
+
88
+ pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
89
+ pipeline.load_lora_weights('Norod78/wow-screenshot-flux', weight_name='Flux-WoW-Screenshot-LoRA.safetensors')
90
+ image = pipeline('The girl with a pearl earring WoW Screenshot').images[0]
91
+ ```
92
+
93
+ For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)
94
+