Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: SeeSee21/Z-Anime
|
| 4 |
+
tags:
|
| 5 |
+
- z-anime
|
| 6 |
+
- gguf
|
| 7 |
+
- image-generation
|
| 8 |
+
- anime
|
| 9 |
+
- stable-diffusion-cpp
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Z-Anime Distill 4-Step GGUF
|
| 13 |
+
|
| 14 |
+
Q5_0 quantization of [SeeSee21/Z-Anime](https://huggingface.co/SeeSee21/Z-Anime) distill-4-step variant for use with [stable-diffusion.cpp](https://github.com/leejet/stable-diffusion.cpp).
|
| 15 |
+
|
| 16 |
+
## Files
|
| 17 |
+
|
| 18 |
+
| File | Size | Source |
|
| 19 |
+
|------|------|--------|
|
| 20 |
+
| z-anime-distill-4step-q5_0.gguf | 4.23 GB | Converted from z-anime-distill-4step-bf16.safetensors |
|
| 21 |
+
|
| 22 |
+
## Usage with sd.cpp
|
| 23 |
+
|
| 24 |
+
```bash
|
| 25 |
+
sd-cli --diffusion-model z-anime-distill-4step-q5_0.gguf --llm Qwen_3_4b-Q8_0.gguf --vae ae.safetensors -p "anime girl, silver hair, fantasy armor" --steps 4 --cfg-scale 1.0 --sampling-method euler_a --diffusion-fa --vae-tiling
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Required Components
|
| 29 |
+
|
| 30 |
+
- **Text Encoder**: [Qwen3-4B GGUF](https://huggingface.co/worstplayer/Z-Image_Qwen_3_4b_text_encoder_GGUF)
|
| 31 |
+
- **VAE**: [ae.safetensors](https://huggingface.co/SeeSee21/Z-Anime/blob/main/vae/ae.safetensors)
|
| 32 |
+
|
| 33 |
+
## Recommended Settings
|
| 34 |
+
|
| 35 |
+
- Steps: 4
|
| 36 |
+
- CFG: 1.0
|
| 37 |
+
- Sampler: euler_ancestral
|
| 38 |
+
|
| 39 |
+
## Credits
|
| 40 |
+
|
| 41 |
+
- [Z-Anime](https://huggingface.co/SeeSee21/Z-Anime) by SeeSee21
|
| 42 |
+
- Converted with [stable-diffusion.cpp](https://github.com/leejet/stable-diffusion.cpp) sd-cli
|