Skip to content

Commit 070e001

Browse files
committed
feat(gallery): add Ideogram4 stablediffusion-ggml models
Single-file GGUF weights for Ideogram4 are now published (stduhpf/ideogram-4-gguf), so add the model to the gallery. Ideogram4 is a text-to-image model with strong, accurate in-image text rendering, driven by a Qwen3-VL-8B text encoder and real classifier-free guidance from a separate unconditional diffusion model (the uncond_diffusion_model_path support added in the preceding commit). Two index entries, both built on gallery/virtual.yaml with the full config inlined in overrides (same pattern as the other models, no dedicated template file): - ideogram-4-iq4nl-ggml (4-bit, ~11.6GB diffusion) - ideogram-4-q8_0-ggml (8-bit, ~20GB diffusion) Each bundles the diffusion + unconditional GGUF (stduhpf), the Qwen3-VL-8B-Instruct text encoder (unsloth), and the FLUX.2 VAE (Comfy-Org mirror, non-gated). cfg_scale is 7 to match the upstream Ideogram4 default, since it performs real CFG unlike the guidance-distilled Flux/Z-Image models. Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Assisted-by: Claude:claude-opus-4-8 [Claude Code]
1 parent 6479bd4 commit 070e001

1 file changed

Lines changed: 100 additions & 0 deletions

File tree

gallery/index.yaml

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26165,6 +26165,106 @@
2616526165
- filename: ae.safetensors
2616626166
sha256: afc8e28272cd15db3919bacdb6918ce9c1ed22e96cb12c4d5ed0fba823529e38
2616726167
uri: https://huggingface.co/ChuckMcSneed/FLUX.1-dev/resolve/main/ae.safetensors
26168+
- name: ideogram-4-iq4nl-ggml
26169+
url: "github:mudler/LocalAI/gallery/virtual.yaml@master"
26170+
urls:
26171+
- https://huggingface.co/ideogram-ai/ideogram-4-fp8
26172+
- https://huggingface.co/stduhpf/ideogram-4-gguf
26173+
description: |
26174+
Ideogram 4 is a text-to-image diffusion model known for state-of-the-art prompt adherence and exceptional, accurate text rendering inside images. It is driven by a Qwen3-VL-8B text encoder and performs real classifier-free guidance from a separate unconditional diffusion model.
26175+
26176+
This is the iQ4_NL (4-bit) quantization, a good balance of quality and footprint (~5.8GB diffusion + ~5.8GB unconditional). The bundle also pulls the Qwen3-VL-8B-Instruct text encoder and the FLUX.2 VAE. Quantized GGUF weights by stduhpf for use with stable-diffusion.cpp.
26177+
license: ideogram-non-commercial-model-agreement
26178+
tags:
26179+
- ideogram
26180+
- ideogram4
26181+
- text-to-image
26182+
- image-generation
26183+
- gguf
26184+
- quantized
26185+
- 8b
26186+
- diffusion
26187+
last_checked: "2026-06-06"
26188+
overrides:
26189+
backend: stablediffusion-ggml
26190+
step: 25
26191+
# Ideogram4 runs real classifier-free guidance from a separate
26192+
# unconditional diffusion model, so it needs a CFG scale > 1 (unlike the
26193+
# guidance-distilled Flux / Z-Image models). 7 matches the upstream
26194+
# stable-diffusion.cpp default used in the Ideogram4 example.
26195+
cfg_scale: 7
26196+
options:
26197+
- diffusion_model
26198+
- uncond_diffusion_model_path:ideogram4_unconditional-iQ4_NL.gguf
26199+
- llm_path:Qwen3-VL-8B-Instruct-Q4_K_M.gguf
26200+
- vae_path:flux2-vae.safetensors
26201+
- sampler:euler
26202+
- offload_params_to_cpu:true
26203+
parameters:
26204+
model: ideogram4-iQ4_NL.gguf
26205+
files:
26206+
- filename: ideogram4-iQ4_NL.gguf
26207+
sha256: 578502024f23e8e988e0cb297201f1ac88dddad5706726ad222d918727e0211d
26208+
uri: huggingface://stduhpf/ideogram-4-gguf/ideogram4-iQ4_NL.gguf
26209+
- filename: ideogram4_unconditional-iQ4_NL.gguf
26210+
sha256: 4140e58c6818dac8221fa590a6814246b5336bb23246fbbb96b9048e887f47cf
26211+
uri: huggingface://stduhpf/ideogram-4-gguf/ideogram4_unconditional-iQ4_NL.gguf
26212+
- filename: Qwen3-VL-8B-Instruct-Q4_K_M.gguf
26213+
sha256: 108e7ff92b78eefd3db4741885104acba514255c11b617d3c7b197a5f46efe89
26214+
uri: huggingface://unsloth/Qwen3-VL-8B-Instruct-GGUF/Qwen3-VL-8B-Instruct-Q4_K_M.gguf
26215+
- filename: flux2-vae.safetensors
26216+
sha256: 868fe7b343cc8f3a19dbcfcafbc3d5f888802be3f89bd81b65b3621a066ce8f3
26217+
uri: https://huggingface.co/Comfy-Org/Ideogram-4/resolve/main/vae/flux2-vae.safetensors
26218+
- name: ideogram-4-q8_0-ggml
26219+
url: "github:mudler/LocalAI/gallery/virtual.yaml@master"
26220+
urls:
26221+
- https://huggingface.co/ideogram-ai/ideogram-4-fp8
26222+
- https://huggingface.co/stduhpf/ideogram-4-gguf
26223+
description: |
26224+
Ideogram 4 is a text-to-image diffusion model known for state-of-the-art prompt adherence and exceptional, accurate text rendering inside images. It is driven by a Qwen3-VL-8B text encoder and performs real classifier-free guidance from a separate unconditional diffusion model.
26225+
26226+
This is the Q8_0 (8-bit) quantization for highest quality (~10.1GB diffusion + ~10.1GB unconditional). The bundle also pulls the Qwen3-VL-8B-Instruct text encoder and the FLUX.2 VAE. Quantized GGUF weights by stduhpf for use with stable-diffusion.cpp.
26227+
license: ideogram-non-commercial-model-agreement
26228+
tags:
26229+
- ideogram
26230+
- ideogram4
26231+
- text-to-image
26232+
- image-generation
26233+
- gguf
26234+
- quantized
26235+
- 8b
26236+
- diffusion
26237+
last_checked: "2026-06-06"
26238+
overrides:
26239+
backend: stablediffusion-ggml
26240+
step: 25
26241+
# Ideogram4 runs real classifier-free guidance from a separate
26242+
# unconditional diffusion model, so it needs a CFG scale > 1 (unlike the
26243+
# guidance-distilled Flux / Z-Image models). 7 matches the upstream
26244+
# stable-diffusion.cpp default used in the Ideogram4 example.
26245+
cfg_scale: 7
26246+
options:
26247+
- diffusion_model
26248+
- uncond_diffusion_model_path:ideogram4_unconditional-Q8_0.gguf
26249+
- llm_path:Qwen3-VL-8B-Instruct-Q4_K_M.gguf
26250+
- vae_path:flux2-vae.safetensors
26251+
- sampler:euler
26252+
- offload_params_to_cpu:true
26253+
parameters:
26254+
model: ideogram4-Q8_0.gguf
26255+
files:
26256+
- filename: ideogram4-Q8_0.gguf
26257+
sha256: feb6cae997927ba0e339bf6ef64b14df9353064f60805d53f84c592643addcfd
26258+
uri: huggingface://stduhpf/ideogram-4-gguf/ideogram4-Q8_0.gguf
26259+
- filename: ideogram4_unconditional-Q8_0.gguf
26260+
sha256: 9261d1473d328aa7edbe1b3fa48a9b9bd2e19fe78439fe6a293af1016c63debd
26261+
uri: huggingface://stduhpf/ideogram-4-gguf/ideogram4_unconditional-Q8_0.gguf
26262+
- filename: Qwen3-VL-8B-Instruct-Q4_K_M.gguf
26263+
sha256: 108e7ff92b78eefd3db4741885104acba514255c11b617d3c7b197a5f46efe89
26264+
uri: huggingface://unsloth/Qwen3-VL-8B-Instruct-GGUF/Qwen3-VL-8B-Instruct-Q4_K_M.gguf
26265+
- filename: flux2-vae.safetensors
26266+
sha256: 868fe7b343cc8f3a19dbcfcafbc3d5f888802be3f89bd81b65b3621a066ce8f3
26267+
uri: https://huggingface.co/Comfy-Org/Ideogram-4/resolve/main/vae/flux2-vae.safetensors
2616826268
- name: whisper-1
2616926269
url: github:mudler/LocalAI/gallery/whisper-base.yaml@master
2617026270
urls:

0 commit comments

Comments
 (0)