File size: 2,142 Bytes
9151b70 dd5e06d 9151b70 869ec1f 9151b70 869ec1f 9151b70 503137f 9151b70 042e6a9 9151b70 32bd672 9151b70 71da4ff 9151b70 |
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 |
---
license_name: flux1dev
tags:
- text-to-image
- diffusers
- flux
- flux-diffusers
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: None
widget:
- text: a monochrome manga of a girl
output:
url: assets/girl.png
- text: a monochrome manga epic sword stance before a insane battle
output:
url: assets/swordsman.png
- 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
output:
url: assets/shirtless.png
- text: a monochrome multi panel manga, masterpiece, best quality
output:
url: assets/panel.png
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
---
<Gallery />
## Model description
Trained and hand tuned for Monochrome manga panels and art.
a full FLUX-DEV checkpoint rather than just loras because best results were observed using this method.
naturally has consistant characters across panels without requesting it.
14 Plus Loras all 32 rank merged into FLUX-dev base all at variying weights all hand dialed into to acheived dersired aesthetic outcomes.
over 36,000 training steps total.
I also added the indepdant loras to add and mess around with yourself but do not expect the checkpoints quality out of the box with the indepdant loras since it took me a lot of tinkering to get that quality with a mix of the loras.
shoutout to [FAL](https://x.com/FAL) for sponsering me with compute credits and making this possible!
## Trigger words
Technically it was not trained with a trigger word but using
```
monochrome manga
```
is highly suggested
## Use it with the [:firecracker: diffusers library](https://github.com/huggingface/diffusers)
```py
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained("dataautogpt3/FLUX-MonochromeManga", torch_dtype=torch.bfloat16).to('cuda')
image = pipeline('Monochrome Manga of a girl').images[0]
```
## License
Please adhere to the licensing terms as described [here](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md). |