File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -7038,6 +7038,10 @@ int llama_n_embd(const struct llama_model * model) {
70387038 return model->hparams .n_embd ;
70397039}
70407040
7041+ float llama_rope_freq_scale_train (const struct llama_model * model) {
7042+ return model->hparams .rope_freq_scale_train ;
7043+ }
7044+
70417045int llama_model_desc (const struct llama_model * model, char * buf, size_t buf_size) {
70427046 return snprintf (buf, buf_size, " %s %s %s" ,
70437047 llama_model_arch_name (model->arch ).c_str (),
Original file line number Diff line number Diff line change @@ -282,6 +282,9 @@ extern "C" {
282282 LLAMA_API int llama_n_ctx_train (const struct llama_model * model);
283283 LLAMA_API int llama_n_embd (const struct llama_model * model);
284284
285+ // Get the model's RoPE frequency scaling factor
286+ LLAMA_API float llama_rope_freq_scale_train (const struct llama_model * model);
287+
285288 // Get a string describing the model type
286289 LLAMA_API int llama_model_desc (const struct llama_model * model, char * buf, size_t buf_size);
287290
You can’t perform that action at this time.
0 commit comments