mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-24 13:28:50 +01:00
convert.py : export rope freq_base when converting CodeLlama from an HF model (#2773)
This commit is contained in:
parent
29674ab4e8
commit
12e2e33a97
@ -167,6 +167,7 @@ class Params:
|
||||
n_head = config["num_attention_heads"]
|
||||
n_head_kv = config["num_key_value_heads"] if "num_key_value_heads" in config else n_head
|
||||
f_norm_eps = config["rms_norm_eps"]
|
||||
f_rope_freq_base = config["rope_theta"] if "rope_theta" in config else None
|
||||
|
||||
n_mult = Params.find_n_mult(n_ff, n_embd)
|
||||
|
||||
@ -188,6 +189,7 @@ class Params:
|
||||
n_head = n_head,
|
||||
n_head_kv = n_head_kv,
|
||||
f_norm_eps = f_norm_eps,
|
||||
f_rope_freq_base = f_rope_freq_base,
|
||||
)
|
||||
|
||||
# LLaMA v2 70B params.json
|
||||
|
Loading…
Reference in New Issue
Block a user