File size: 3,591 Bytes
d6508a7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a907e4e
3046956
d6508a7
 
3046956
d6508a7
 
3046956
 
 
 
4b1e8f7
 
 
 
 
9b828f4
 
 
 
 
f490bb7
 
 
5bce680
 
 
7fb4a32
 
 
 
 
050b356
 
 
 
 
d6508a7
 
 
 
3046956
d6508a7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b069c43
d6508a7
 
 
 
 
 
 
 
8be4945
d6508a7
 
 
 
 
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
---
base_model:
- black-forest-labs/FLUX.1-dev
library_name: diffusers
tags:
- template:diffusion-lora
- flux.1-dev
- diffusers
- Text-to-Image
- flux
- lora
- soulday
- skull
- day of the dead
- flowers
pipeline_tag: text-to-image
widget:
- output:
    url: images/0.jpeg
  text: soulday flowers, day of the dead, woman, facing the camera, daylight, parade
- output:
    url: images/1.jpeg
  text: soulday flowers, day of the dead, woman, facing the camera, daylight, parade
- output:
    url: images/2.jpeg
  text: soulday flowers, day of the dead, woman, facing the camera, daylight, parade
- text: soulday flowers, day of the dead, woman, facing the camera, daylight, parade
  output:
    url: images/example_oijqyh36o.png
- text: >-
    soulday flowers, day of the dead, red face, woman, facing the camera,
    daylight, parade
  output:
    url: images/example_kmnpq2fhs.png
- text: >-
    soulday flowers, day of the dead, woman, facing the camera, riding a
    motorcycle
  output:
    url: images/example_f0lt9e2yu.png
- text: soulday flowers, day of the dead, woman
  output:
    url: images/example_34l2lb158.png
- text: soulday flowers, day of the dead, woman
  output:
    url: images/example_euih56oe7.png
- text: >-
    soulday flowers, day of the dead, woman, facing the camera, daylight,
    parade, tim burton, nightmare before christmas
  output:
    url: images/example_upyahe4g5.png
- text: >-
    soulday flowers, day of the dead, woman, facing the camera, parade, tim
    burton, nightmare before christmas
  output:
    url: images/example_i6ee0rgea.png
trigger: soulday flowers, day of the dead
instance_prompt: soulday flowers, day of the dead
license: other
license_name: flux-1-dev-non-commercial-license

---
## About
The "soulday flowers, day of the dead" is a LoRA created from the SoulDay inspired artwork. 
The style manifests itself in the output image via the trigger words in multiple objects:
1. **Faces** The human characters themselves have a particular style.
2. **Flower Crowns and Flower Bouquets** The humans have flower crowns and assorted flowers around them.
3. **Accessories** It can be seen in human accessories such as glasses, earrings, bracelets, pendants, etc.
4. **Clothing** The style is apparent in the clothing.

## SoulDay
SoulDay ($SDY) is a collectible ethereum token project from [GaleriaRodrigo.com](https://galeriarodrigo.com)
</br>
[Minted tokens](https://magiceden.us/collections/ethereum/0x5c6954f5df48035a6e339ef26f4167cb7e56d021)
</br>
[Minting tokens](https://soulday.io)


## Trigger words

You should use `soulday flowers, day of the dead` to trigger the image generation.

## Download model

Weights for this model are available in Safetensors format.

[Download](/galeriarodrigo/flux-lora-day-of-the-dead-soulday-flowers/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

pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('galeriarodrigo/flux-lora-day-of-the-dead-soulday-flowers', weight_name='soulday_flowers_DOD.safetensors')
image = pipeline('soulday flowers, day of the dead, woman, facing the camera, daylight, parade').images[0]
image.save("my_image.png")
```

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)