galeriarodrigo
commited on
Commit
•
d6508a7
1
Parent(s):
9f91c1d
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model:
|
3 |
+
- black-forest-labs/FLUX.1-dev
|
4 |
+
library_name: diffusers
|
5 |
+
tags:
|
6 |
+
- template:diffusion-lora
|
7 |
+
- flux.1-dev
|
8 |
+
- diffusers
|
9 |
+
- Text-to-Image
|
10 |
+
- flux
|
11 |
+
- lora
|
12 |
+
- soulday
|
13 |
+
- skull
|
14 |
+
- day of the dead
|
15 |
+
- flowers
|
16 |
+
|
17 |
+
pipeline_tag: text-to-image
|
18 |
+
widget:
|
19 |
+
- output:
|
20 |
+
url: images/0.png
|
21 |
+
text: >-
|
22 |
+
soulday flowers, day of the dead, woman, facing the camera, daylight, parade
|
23 |
+
- output:
|
24 |
+
url: images/1.jpeg
|
25 |
+
text: >-
|
26 |
+
soulday flowers, day of the dead, woman, facing the camera, daylight, parade
|
27 |
+
- output:
|
28 |
+
url: images/2.jpeg
|
29 |
+
text: >-
|
30 |
+
soulday flowers, day of the dead, woman, facing the camera, daylight, parade
|
31 |
+
trigger: soulday flowers, day of the dead
|
32 |
+
instance_prompt: soulday flowers, day of the dead
|
33 |
+
license: other
|
34 |
+
license_name: flux-1-dev-non-commercial-license
|
35 |
+
---
|
36 |
+
## About
|
37 |
+
The "soulday flowers, day of the dead" is a LoRA created from the SoulDay inspired artwork.
|
38 |
+
The style manifests itself in the output image via the trigger words in multiple objects:
|
39 |
+
1. **Faces** The human characters themselves have a particular style.
|
40 |
+
2. **Flower Crowns and Flower Bouquets** The humans have flower crowns and assorted flowers around them.
|
41 |
+
3. **Accessories** It can be seen in human accessories such as glasses, earrings, bracelets, pendants, etc.
|
42 |
+
4. **Clothing** The style is apparent in the clothing.
|
43 |
+
|
44 |
+
## SoulDay
|
45 |
+
SoulDay ($SDY) is a collectible ethereum token project from [GaleriaRodrigo.com](https://galeriarodrigo.com)
|
46 |
+
</br>
|
47 |
+
[Minted tokens](https://magiceden.us/collections/ethereum/0x5c6954f5df48035a6e339ef26f4167cb7e56d021)
|
48 |
+
</br>
|
49 |
+
[Minting tokens](https://soulday.io)
|
50 |
+
|
51 |
+
|
52 |
+
## Trigger words
|
53 |
+
|
54 |
+
You should use `soulday flowers, day of the dead` to trigger the image generation.
|
55 |
+
|
56 |
+
## Download model
|
57 |
+
|
58 |
+
Weights for this model are available in Safetensors format.
|
59 |
+
|
60 |
+
[Download](/galeriarodrigo/FLUX.1-dev-lora-soulday/tree/main) them in the Files & versions tab.
|
61 |
+
|
62 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
63 |
+
|
64 |
+
```py
|
65 |
+
from diffusers import AutoPipelineForText2Image
|
66 |
+
import torch
|
67 |
+
|
68 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
|
69 |
+
pipeline.load_lora_weights('galeriarodrigo/FLUX.1-dev-lora-soulday', weight_name='souldaystyle.safetensors')
|
70 |
+
image = pipeline('soulday flowers, day of the dead, woman, facing the camera, daylight, parade').images[0]
|
71 |
+
image.save("my_image.png")
|
72 |
+
```
|
73 |
+
|
74 |
+
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)
|