dataautogpt3
commited on
Commit
•
909b6b0
1
Parent(s):
11c75a8
Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,58 @@
|
|
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 |
+
- flux
|
8 |
+
- flux-diffusers
|
9 |
+
base_model: black-forest-labs/FLUX.1-dev
|
10 |
+
instance_prompt: None
|
11 |
+
widget:
|
12 |
+
- text: a monochrome manga of a girl
|
13 |
+
output:
|
14 |
+
url: assets/girl.png
|
15 |
+
- text: a monochrome manga epic sword stance before a insane battle
|
16 |
+
output:
|
17 |
+
url: assets/swordsman.png
|
18 |
+
- text: a monochrome manga of a shirtless buff scared man sitting below a black starry night, looking up, aesthetic shot, laying in a grassy field
|
19 |
+
output:
|
20 |
+
url: assets/shirtless.png
|
21 |
+
- text: a monochrome multi panel manga, masterpiece, best quality
|
22 |
+
output:
|
23 |
+
url: assets/panel.png
|
24 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
25 |
+
---
|
26 |
+
|
27 |
+
<Gallery />
|
28 |
+
|
29 |
+
## Model description
|
30 |
+
|
31 |
+
merge of over 25 plus loras i have trained myself.
|
32 |
+
|
33 |
+
Found way to handle the Loras onto the base checkpoint without causing a leaking on styles/concepts across each other.
|
34 |
+
|
35 |
+
Fluxteus is born!
|
36 |
+
|
37 |
+
shoutout to [FAL](https://x.com/FAL) for sponsering me with compute credits and making this possible!
|
38 |
+
|
39 |
+
## Trigger words
|
40 |
+
|
41 |
+
there are multiable diffrent trigger words for diffrent styles and concepts.
|
42 |
+
|
43 |
+
```
|
44 |
+
detail, photo, anime, CinScene, dreamwalking,
|
45 |
+
```
|
46 |
+
|
47 |
+
## Use it with the [:firecracker: diffusers library](https://github.com/huggingface/diffusers)
|
48 |
+
|
49 |
+
```py
|
50 |
+
from diffusers import AutoPipelineForText2Image
|
51 |
+
import torch
|
52 |
+
pipeline = AutoPipelineForText2Image.from_pretrained("dataautogpt3/FluxteusV1", torch_dtype=torch.bfloat16).to('cuda')
|
53 |
+
image = pipeline('detail photo of a girl').images[0]
|
54 |
+
```
|
55 |
+
|
56 |
+
## License
|
57 |
+
|
58 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md).
|