Instructions to use second-state/stable-diffusion-3.5-medium-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use second-state/stable-diffusion-3.5-medium-GGUF with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("second-state/stable-diffusion-3.5-medium-GGUF", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Rename t5xxl_fp16-Q8_0.gguf to t5xxl-Q8_0.gguf
Browse files- .gitattributes +1 -0
- t5xxl_fp16-Q8_0.gguf → t5xxl-Q8_0.gguf +0 -0
.gitattributes
CHANGED
|
@@ -59,3 +59,4 @@ t5xxl-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 59 |
t5xxl-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
t5xxl-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
t5xxl-Q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 59 |
t5xxl-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
t5xxl-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
t5xxl-Q5_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
t5xxl-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
t5xxl_fp16-Q8_0.gguf → t5xxl-Q8_0.gguf
RENAMED
|
File without changes
|