We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0cc2b4 commit 2a0a81aCopy full SHA for 2a0a81a
convert_hf_to_gguf.py
@@ -3368,7 +3368,7 @@ def set_gguf_parameters(self):
3368
self.gguf_writer.add_file_type(self.ftype)
3369
self.gguf_writer.add_rope_freq_base(hparams.get("rope_theta", 1_000_000.0)) # for global layers
3370
# both attn_logit_softcapping and final_logit_softcapping are removed in Gemma3
3371
- assert hparams.get("attn_logit_softcapping") is None
+ assert hparams.get("attn_logit_softcapping") is None
3372
assert hparams.get("final_logit_softcapping") is None
3373
self.gguf_writer.add_sliding_window(hparams["sliding_window"])
3374
self.gguf_writer.add_head_count_kv(hparams.get("num_key_value_heads", 4))
0 commit comments