Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,43 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- text-to-image
|
4 |
+
- flux
|
5 |
+
- lora
|
6 |
+
- diffusers
|
7 |
+
- template:sd-lora
|
8 |
+
license: other
|
9 |
+
license_name: flux-1-dev-non-commercial-license
|
10 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
11 |
+
inference:
|
12 |
+
parameters:
|
13 |
+
width: 1024
|
14 |
+
height: 1024
|
15 |
+
---
|
16 |
+
# Decorative Relief
|
17 |
+
|
18 |
+
<Gallery />
|
19 |
+
|
20 |
+
## Model description
|
21 |
+
|
22 |
+
A decorative relief lora inspired by Indonesian art.
|
23 |
+
|
24 |
+
## Trigger words
|
25 |
+
|
26 |
+
You should use `decorativerelief art style` to trigger the image generation.
|
27 |
+
|
28 |
+
## Download model
|
29 |
+
|
30 |
+
Weights for this model are available in Safetensors format.
|
31 |
+
|
32 |
+
[Download](/geocine/decorative-relief/tree/main) them in the Files & versions tab.
|
33 |
+
|
34 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
35 |
+
|
36 |
+
```py
|
37 |
+
from diffusers import AutoPipelineForText2Image
|
38 |
+
import torch
|
39 |
+
|
40 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
|
41 |
+
pipeline.load_lora_weights('geocine/decorative-relief', weight_name='lora_64_1700steps.safetensors')
|
42 |
+
image = pipeline('in the style of TOK a trtcrd tarot style').images[0]
|
43 |
+
```
|