dataautogpt3
commited on
Commit
•
e343268
1
Parent(s):
f55d3a2
Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,56 @@
|
|
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: None
|
13 |
+
widget:
|
14 |
+
- text: anime girl
|
15 |
+
output:
|
16 |
+
url: assets/girl.png
|
17 |
+
- text: Still frame from a 1980s vintage manga, cell shaded, a wall made of eyes, VHS quality,
|
18 |
+
output:
|
19 |
+
url: assets/eyes.png
|
20 |
+
- text: Still frame from a 1980s vintage manga, cell shaded, where a girl is holding a lantern to a wall made out of faces, VHS quality,
|
21 |
+
output:
|
22 |
+
url: assets/wall.png
|
23 |
+
- text: Still frame from a 1980s vintage manga where an anime couple dip their toes in a galaxy lake, nature, VHS quality
|
24 |
+
output:
|
25 |
+
url: assets/galaxy.png
|
26 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
27 |
+
---
|
28 |
+
|
29 |
+
<Gallery />
|
30 |
+
|
31 |
+
## Model description
|
32 |
+
|
33 |
+
Lora trained on the unique style and aesthetic of ghibli retro anime.
|
34 |
+
|
35 |
+
16 rank lora
|
36 |
+
|
37 |
+
## Trigger words
|
38 |
+
|
39 |
+
No trigger word
|
40 |
+
|
41 |
+
|
42 |
+
## Use it with the [:firecracker: diffusers library](https://github.com/huggingface/diffusers)
|
43 |
+
|
44 |
+
```py
|
45 |
+
from diffusers import AutoPipelineForText2Image
|
46 |
+
import torch
|
47 |
+
pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda')
|
48 |
+
pipeline.load_lora_weights('dataautogpt3/FLUX-AestheticAnime', weight_name='Flux_1_Dev_LoRA_AestheticAnime.safetensors')
|
49 |
+
image = pipeline('anime girl').images[0]
|
50 |
+
```
|
51 |
+
|
52 |
+
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)
|
53 |
+
|
54 |
+
## License
|
55 |
+
|
56 |
+
Please adhere to the licensing terms as described [here](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md).
|