model : make rope_yarn_log_mul optional for deepseek2 (#14896)

* make rope_yarn_log_mul optional for deepseek2

* default rope_yarn_log_mul = 0.0f
This commit is contained in:
Gabriel Larson
2025-07-27 03:18:37 -05:00
committed by GitHub
parent 1dc9614e06
commit 4762ad7316
2 changed files with 2 additions and 2 deletions

View File

@@ -98,7 +98,7 @@ struct llama_hparams {
float rope_freq_scale_train;
float rope_freq_scale_train_swa;
uint32_t n_ctx_orig_yarn;
float rope_yarn_log_mul;
float rope_yarn_log_mul = 0.0f;
std::array<int, 4> rope_sections;