feat(ideogram4): add Ideogram 4 model support

Diffusers-native port of the 9.3B flow-matching DiT: dual-transformer asymmetric CFG, a 13-layer Qwen3-VL tap encoder deduped with VQA and prompt-enhance, the Flux.2 VAE, and a logit-normal schedule. Loads a published bf16 repo with SDNQ at load.
This commit is contained in:
CalamitousFelicitousness
2026-06-04 01:00:01 +01:00
parent 624c304f4b
commit 2f3d0e719d
16 changed files with 1140 additions and 1 deletions
+2
View File
@@ -55,6 +55,8 @@ def get_model_type(pipe):
model_type = 'f1'
elif "ZImage" in name or "Z-Image" in name:
model_type = 'zimage'
elif "Ideogram4" in name:
model_type = 'ideogram4'
elif "LuminaDiMOO" in name:
model_type = 'luminadimoo'
elif "Lumina2" in name: