From 4601822cdd20584cc33be33d836f3124c64db048 Mon Sep 17 00:00:00 2001 From: Matthew Carrigan Date: Thu, 3 Apr 2025 12:21:29 +0000 Subject: [PATCH] Make config params float to avoid warning in Transformers --- config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.json b/config.json index c482e77..b6678dd 100644 --- a/config.json +++ b/config.json @@ -45,9 +45,9 @@ }, "rms_norm_eps": 1e-06, "rope_scaling": { - "beta_fast": 32, - "beta_slow": 1, - "factor": 40, + "beta_fast": 32.0, + "beta_slow": 1.0, + "factor": 40.0, "mscale": 1.0, "mscale_all_dim": 1.0, "original_max_position_embeddings": 4096,