File size: 4,388 Bytes
c727d56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
---
license: other
license_name: bespoke-lora-trained-license
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=False
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- template:sd-lora
- migrated
- horror
- dark souls
- concept art
- grimdark
- gothic
- dark fantasy
- style

base_model: black-forest-labs/FLUX.1-dev
instance_prompt: Gloomy
widget:
- text: 'gloomy scene from dark fantasy, Maggots crawling from a cracked skull in a crypt'
  parameters:
    negative_prompt: with acceleration LoRA
            
  output:
    url: >-
      32835079.jpeg
- text: 'gloomy grimdark fantasy poster. The ghost of wizard whitebeard with a long beard. Glowing ember trail spells out "The Gloom"'
  
  output:
    url: >-
      32830814.jpeg
- text: 'gloomy dark fantasy movie poster. a messy teenager''s bedroom'
  
  output:
    url: >-
      32831147.jpeg
- text: 'gloomy dark fantasy batman'
  
  output:
    url: >-
      32831237.jpeg
- text: 'gloomy dark fantasy movie poster. Cinematic photo of the ghost of wizard whitebeard ,with a long beard. Glowing ember trail spells out "The Gloom"'
  
  output:
    url: >-
      32831041.jpeg
- text: 'gloomy scene from a dark fantasy buddy-cop tv show featuring police officers from 1970,  Cop and partner bonding over their backstories,'
  
  output:
    url: >-
      32831386.jpeg
- text: 'gloomy scene from dark fantasy, Polaroid pictures revealing ghostly figures'
  
  output:
    url: >-
      32831574.jpeg
- text: 'gloomy scene from dark fantasy, Breathing heard from under the bed, though no one’s there
'
  
  output:
    url: >-
      32831902.jpeg
- text: 'gloomy scene from dark fantasy, Rotting flesh peeling away from a still-moving hand
'
  
  output:
    url: >-
      32832171.jpeg
- text: 'gloomy scene from dark fantasy, Blood dripping from the ceiling of a darkened hallway'
  
  output:
    url: >-
      32832279.jpeg
- text: 'gloomy scene, A rebel with a futuristic weapon, overlooking a dystopian cityscape.
'
  
  output:
    url: >-
      32832340.jpeg
- text: 'gloomy scene from dark fantasy, Unseen force yanking someone’s legs from beneath the bed
'
  
  output:
    url: >-
      32832477.jpeg
- text: 'gloomy scene from dark fantasy, Unseen force dragging someone screaming into the darkness
'
  
  output:
    url: >-
      32832938.jpeg

---

# Wizard's Grimdark: The Gloom 

<Gallery />



([CivitAI](https://civitai.com/models/))

## Model description

<p><strong><span style="color:#868e96">Wizard's Grimdark: </span><span style="color:#fd7e14">The Gloom</span></strong><br />A dark fantasy LoRA trained on video game concept art images, most prominently from the Dark Souls triology. </p><p><span style="color:rgb(193, 194, 197)">Prompt inspiration: </span><code>Gloomy</code><span style="color:rgb(193, 194, 197)">, </span><code>ethereal</code><span style="color:rgb(193, 194, 197)">, </span><code>dark fantasy</code><span style="color:rgb(193, 194, 197)">, </span><code>horror</code><span style="color:rgb(193, 194, 197)">, </span><code>grimdark</code><span style="color:rgb(193, 194, 197)">, </span><code>mist</code><span style="color:rgb(193, 194, 197)">, </span><code>ghastly figure</code><span style="color:rgb(193, 194, 197)">, </span><code>concept art</code></p>

## Trigger words
You should use `Gloomy` to trigger the image generation.
    

## Download model

Weights for this model are available in Safetensors format.

[Download](/WizWhite/wizard-s-grimdark-the-gloom/tree/main) them in the Files & versions tab.

## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)

```py
from diffusers import AutoPipelineForText2Image
import torch

device = "cuda" if torch.cuda.is_available() else "cpu"

pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('WizWhite/wizard-s-grimdark-the-gloom', weight_name='Wiz-The_Gloom.safetensors')
image = pipeline('gloomy scene from dark fantasy, Unseen force dragging someone screaming into the darkness
').images[0]
```

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)