mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 13:30:35 +00:00
Handle null rope scaling value (#2793)
This commit is contained in:
parent
2ba83c8685
commit
a2ca4e9de9
@ -170,7 +170,8 @@ class Params:
|
|||||||
f_norm_eps = config["rms_norm_eps"]
|
f_norm_eps = config["rms_norm_eps"]
|
||||||
f_rope_freq_base = config["rope_theta"] if "rope_theta" in config else None
|
f_rope_freq_base = config["rope_theta"] if "rope_theta" in config else None
|
||||||
|
|
||||||
if "rope_scaling" in config and config["rope_scaling"].get("type") == "linear":
|
rope_scaling = config.get("rope_scaling")
|
||||||
|
if isinstance(rope_scaling, dict) and rope_scaling.get("type") == "linear":
|
||||||
f_rope_scale = config["rope_scaling"].get("factor")
|
f_rope_scale = config["rope_scaling"].get("factor")
|
||||||
else:
|
else:
|
||||||
f_rope_scale = None
|
f_rope_scale = None
|
||||||
|
Loading…
Reference in New Issue
Block a user