Ideogram4 GGUF quantized files
.
├── diffusion/
│ ├── cond/
│ │ ├── ideogram4_Q4_0.gguf
│ │ ├── ideogram4_Q4_1.gguf
│ │ ├── ideogram4-Q4_K.gguf
│ │ ├── ideogram4-Q5_0.gguf
│ │ ├── ideogram4_Q5_1.gguf
│ │ ├── ideogram4_Q5_K.gguf
│ │ ├── ideogram4-Q6_K.gguf
│ │ └── ideogram4-Q8_0.gguf
│ └── uncond/
│ ├── ideogram4_unconditional_Q4_0.gguf
│ ├── ideogram4_unconditional_Q4_1.gguf
│ ├── ideogram4_unconditional_Q4_K.gguf
│ ├── ideogram4_unconditional_Q5_0.gguf
│ ├── ideogram4_unconditional_Q5_1.gguf
│ ├── ideogram4_unconditional_Q5_K.gguf
│ ├── ideogram4_unconditional_Q6_K.gguf
│ └── ideogram4_unconditional-Q8_0.gguf
├── text_encoder/
│ ├── Qwen3-VL-8B-Q4_0.gguf
│ ├── Qwen3-VL-8B-Q4_1.gguf
│ ├── Qwen3-VL-8B-Q4_K_S.gguf
│ ├── Qwen3-VL-8B-Q4_K_M.gguf
│ ├── Qwen3-VL-8B-Q5_K_S.gguf
│ ├── Qwen3-VL-8B-Q5_K_M.gguf
│ ├── Qwen3-VL-8B-Q6_K.gguf
│ └── Qwen3-VL-8B-Q8_0.gguf
└── vae/
│ ├── flux2-vae.safetensors
│ └── flux2-hdr-vae.safetensors
└── lora/
├── realism_engine_v3.safetensors
├── big_boobs.safetensors
├── cum.safetensors
├── innie_vulva_x.safetensors
├── vintage_beauties_womans.safetensors
├── missionary_sex.safetensors
├── 80s_anime.safetensors
├── penis.safetensors
└── penix.safetensors
Model Selection & Quantization Guide
To balance generation quality, memory usage, and inference speed, we recommend the following quantization choices for each component:
1. Conditional Diffusion Model (diffusion/cond/)
- Recommended:
Q6_KorQ8_0 - Since this model handles the main conditional generation pass, keeping a higher quantization level is key to preserving detail and prompt adherence.
2. Unconditional Diffusion Model (diffusion/uncond/)
- Recommended:
Q4_KorQ5_K - Note: Using
Q6_KorQ8_0for the unconditional model is generally unnecessary (overkill) and may slow down generation without providing a noticeable improvement in quality.
3. Text Encoder (text_encoder/)
- Recommended:
Q5_K_MorQ4_K_M - These medium-sized "K-measure" quants offer a good trade-off, retaining the text encoder's comprehension capabilities while fitting within reasonable memory limits.
General Recommendations for Quantization Types
If you are optimizing for inference speed or trying to fit a specific model entirely into VRAM/RAM, keep these rules of thumb in mind:
- Prefer
_Kvariants over_0and_1: When choosing betweenQ4orQ5options, always prefer the_Kvariants (e.g.,Q4_K_M,Q5_K_M, or standard_K). - Avoid
_0and_1if possible: The older_0and_1quants (likeQ4_0orQ4_1) perform worse in terms of quality loss. While they are marginally smaller, the minor size reduction rarely justifies the drop in generation quality compared to_Kequivalents.