dataautogpt3
commited on
Commit
•
18794e8
1
Parent(s):
7665210
Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,57 @@
|
|
1 |
-
---
|
2 |
-
license: other
|
3 |
-
license_name: flux1dev
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: flux1dev
|
4 |
+
tags:
|
5 |
+
- text-to-image
|
6 |
+
- diffusers
|
7 |
+
- lora
|
8 |
+
- flux
|
9 |
+
- flux-diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
base_model: black-forest-labs/FLUX.1-dev
|
12 |
+
instance_prompt: Paper Cutout Style
|
13 |
+
widget:
|
14 |
+
- text: The cookie monster, Paper Cutout Style
|
15 |
+
output:
|
16 |
+
url: d979c6e346504090ae53b1a5ef5d4018_8b54c3ba6d284637b140f40718118b78.png
|
17 |
+
- text: Gal Gadot as wonderwoman, Paper Cutout Style
|
18 |
+
output:
|
19 |
+
url: d13591878d5043f3989dd6eb1c25b710_233c18effb4b491cb467ca31c97e90b5.png
|
20 |
+
- text: The Joker, Paper Cutout Style
|
21 |
+
output:
|
22 |
+
url: 4e5fd35736f24061a08bc57bb4c92ca4_e416314bb419473ca3da3f0971ec26ef.png
|
23 |
+
- text: >-
|
24 |
+
A green Cthulhu is rising from the blue sea in a great lightning storm,
|
25 |
+
based on a story by H.P. Lovecraft, Paper Cutout Style
|
26 |
+
output:
|
27 |
+
url: 08a19840b6214b76b0607b2f9d5a7e28_63159b9d98124c008efb1d36446a615c.png
|
28 |
+
- text: Kermit the frog, Paper Cutout Style
|
29 |
+
output:
|
30 |
+
url: 1f14bd65af7242149b0ab202e9b7a88c_ffb3fb9207f34d2dbc577bae2a2f38b2.png
|
31 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
32 |
+
---
|
33 |
+
|
34 |
+
<Gallery />
|
35 |
+
|
36 |
+
## Model description
|
37 |
+
|
38 |
+
## Trigger words
|
39 |
+
|
40 |
+
You should use `1980s anime screengrab, VHS quality,` or `syntheticanime` to trigger the image generation.
|
41 |
+
|
42 |
+
|
43 |
+
## Use it with the [:firecracker: diffusers library](https://github.com/huggingface/diffusers)
|
44 |
+
|
45 |
+
```py
|
46 |
+
from diffusers import AutoPipelineForText2Image
|
47 |
+
import torch
|
48 |
+
pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda')
|
49 |
+
pipeline.load_lora_weights('dataautogpt3/FLUX-SyntheticAnime', weight_name='Flux_1_Dev_LoRA_syntheticanime.safetensors')
|
50 |
+
image = pipeline('Gal Gadot as wonderwoman, Paper Cutout Style').images[0]
|
51 |
+
```
|
52 |
+
|
53 |
+
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)
|
54 |
+
|
55 |
+
## License
|
56 |
+
|
57 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md).
|