Upload folder using huggingface_hub
Browse files- .gitattributes +4 -0
- README.md +55 -0
- assets/image-1.png +3 -0
- assets/image-2.png +3 -0
- assets/image-3.png +3 -0
- assets/index-grid.webp +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
assets/image-1.png filter=lfs diff=lfs merge=lfs -text
|
37 |
+
assets/image-2.png filter=lfs diff=lfs merge=lfs -text
|
38 |
+
assets/image-3.png filter=lfs diff=lfs merge=lfs -text
|
39 |
+
assets/index-grid.webp filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
base_model: black-forest-labs/FLUX.1-dev
|
5 |
+
library_name: diffusers
|
6 |
+
pipeline_tag: text-to-image
|
7 |
+
tags:
|
8 |
+
- text-to-image
|
9 |
+
- image-generation
|
10 |
+
- flux
|
11 |
+
license: other
|
12 |
+
license_name: flux-1-dev-non-commercial-license
|
13 |
+
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md
|
14 |
+
widget:
|
15 |
+
- output:
|
16 |
+
url: assets/image-1.png
|
17 |
+
text: >-
|
18 |
+
a elephant.
|
19 |
+
- output:
|
20 |
+
url: assets/image-2.png
|
21 |
+
text: >-
|
22 |
+
Ghibli style sky whale transport ship, its metallic skin adorned with traditional Japanese patterns, gliding through cotton candy clouds at sunrise. Small floating gardens hang from its sides, where workers in futuristic kimonos tend to glowing plants. Rainbow auroras shimmer in the background.
|
23 |
+
- output:
|
24 |
+
url: assets/image-3.png
|
25 |
+
text: >-
|
26 |
+
A young girl with long, curly black hair and a flowing white dress is sitting on the ground, surrounded by wildflowers. She is holding a glowing firefly in her hand, watching it flicker gently. The scene is set in a meadow at dusk, with the first stars beginning to appear. The light is soft and warm, casting a magical glow.
|
27 |
+
---
|
28 |
+
|
29 |
+
# juaner-ghibli-style v2
|
30 |
+
|
31 |
+

|
32 |
+
|
33 |
+
This model is a conversion of the [original model](https://civitai.com/models/989221?modelVersionId=1215918) from the fp8 single file format to the Diffusers standalone format.
|
34 |
+
|
35 |
+
The script used for the conversion, cast from fp8 to bf16 for convenience:
|
36 |
+
|
37 |
+
```python
|
38 |
+
from diffusers import FluxPipeline, FluxTransformer2DModel
|
39 |
+
import torch
|
40 |
+
|
41 |
+
transformer = (
|
42 |
+
FluxTransformer2DModel.from_single_file(
|
43 |
+
"./jgs-v2-fp8.safetensors",
|
44 |
+
torch_dtype=torch.float8_e4m3fn,
|
45 |
+
)
|
46 |
+
.to("cuda")
|
47 |
+
.to(torch.bfloat16)
|
48 |
+
)
|
49 |
+
|
50 |
+
pipe = FluxPipeline.from_pretrained(
|
51 |
+
"black-forest-labs/FLUX.1-dev", transformer=transformer, torch_dtype=torch.bfloat16
|
52 |
+
)
|
53 |
+
|
54 |
+
pipe.save_pretrained("./output-model")
|
55 |
+
```
|
assets/image-1.png
ADDED
![]() |
Git LFS Details
|
assets/image-2.png
ADDED
![]() |
Git LFS Details
|
assets/image-3.png
ADDED
![]() |
Git LFS Details
|
assets/index-grid.webp
ADDED
![]() |
Git LFS Details
|