minpeter commited on
Commit
7637cd4
·
verified ·
1 Parent(s): 5d4b5d4

Upload folder using huggingface_hub

Browse files
.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
+ ![example image index grid](./assets/index-grid.webp)
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

  • SHA256: 2dde323563426bb85ba556472c0a58660a309d1e69b6b343a7120a7f361275ab
  • Pointer size: 132 Bytes
  • Size of remote file: 1.36 MB
assets/image-2.png ADDED

Git LFS Details

  • SHA256: 78007faf4530f95db899ab02b3f7642388e957a73c0ba6cc6e3db4f363088e7d
  • Pointer size: 132 Bytes
  • Size of remote file: 1.69 MB
assets/image-3.png ADDED

Git LFS Details

  • SHA256: a8e51e7fb9ffe01717dcae6a5d66c3d0ae297b41e00bf40db2ae9ded048e9958
  • Pointer size: 132 Bytes
  • Size of remote file: 1.32 MB
assets/index-grid.webp ADDED

Git LFS Details

  • SHA256: dcf8920c090a84795d3c13f807e0e51f574dbcad4632dfec5b7b5c211325ff26
  • Pointer size: 132 Bytes
  • Size of remote file: 1.43 MB