We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd2b9f8 commit 978399dCopy full SHA for 978399d
1 file changed
loader.py
@@ -469,7 +469,7 @@ def gguf_clip_loader(path):
469
if arch == "llama" and sd[temb_key].shape == (131072, 5120):
470
# non-standard Comfy-Org tokenizer
471
sd["tekken_model"] = gguf_tekken_tokenizer_loader(path, sd[temb_key].shape)
472
- if arch == "gemma3":
+ elif arch == "gemma3":
473
sd["spiece_model"] = gguf_gemma3_tokenizer_loader(path)
474
# See note above for T5.
475
logging.warning(f"Dequantizing {temb_key} to prevent runtime OOM.")
@@ -489,3 +489,4 @@ def gguf_clip_loader(path):
489
pass
490
return sd
491
492
+
0 commit comments