calcuis commited on
Commit
b8cd24a
1 Parent(s): f0e781d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -5
README.md CHANGED
@@ -1,5 +1,36 @@
1
- ---
2
- license: other
3
- license_name: stabilityai-ai-community
4
- license_link: LICENSE
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: stabilityai-ai-community
4
+ license_link: LICENSE
5
+ language:
6
+ - en
7
+ base_model:
8
+ - stabilityai/stable-diffusion-3.5-large-turbo
9
+ pipeline_tag: image-to-text
10
+ tags:
11
+ - stable-diffusion
12
+ - gguf-comfy
13
+ ---
14
+ # GGUF quantized version of Stable Diffusion 3.5 Large Turbo
15
+
16
+ ## Setup (once)
17
+ - drag sd3.5_large_turbo-q4_0.gguf (4.44GB) to > ./ComfyUI/models/unet
18
+ - drag [clip_g.safetensors](https://huggingface.co/calcuis/sd3.5-large-gguf/blob/main/clip_g.safetensors) (1.39GB) to > ./ComfyUI/models/clip
19
+ - drag [clip_l.safetensors](https://huggingface.co/calcuis/sd3.5-large-gguf/blob/main/clip_l.safetensors) (234MB) to > ./ComfyUI/models/clip
20
+ - drag [t5xxl_fp8_e4m3fn.safetensors](https://huggingface.co/calcuis/sd3.5-large-gguf/blob/main/t5xxl_fp8_e4m3fn.safetensors) (4.89GB) to > ./ComfyUI/models/clip
21
+ - drag [diffusion_pytorch_model.safetensors](https://huggingface.co/calcuis/sd3.5-large-gguf/blob/main/diffusion_pytorch_model.safetensors) (168MB) to > ./ComfyUI/models/vae
22
+
23
+ ## Run it straight (no installation needed way)
24
+ - run the .bat file in the main directory (assuming you are using the gguf-comfy pack below)
25
+ - drag the workflow json file (you can find it below) to > your browser
26
+ - generate your first picture with sd3, awesome!
27
+
28
+ ### Workflows
29
+ - example workflow for [gguf](https://github.com/calcuis/comfy/blob/main/workflow-sd3.5t-gguf.json) (demo picture shown above generated by: Q4_0 - 4.44GB)
30
+ - example workflow for the original [safetensors](https://github.com/calcuis/comfy/blob/main/workflow-sd3.5t-safetensors.json) (15.3GB)
31
+
32
+ ### References
33
+ - base model from [stabilityai](https://huggingface.co/stabilityai/stable-diffusion-3.5-large-turbo)
34
+ - comfyui from [comfyanonymous](https://github.com/comfyanonymous/ComfyUI)
35
+ - gguf node from [city96](https://github.com/city96/ComfyUI-GGUF)
36
+ - gguf-comfy [pack](https://github.com/calcuis/gguf-comfy/releases)