From 2a0914673cdd57e0388b69711f04f7b9029d7bfe Mon Sep 17 00:00:00 2001 From: klosax <131523366+klosax@users.noreply.github.com> Date: Sun, 30 Jul 2023 17:31:11 +0200 Subject: [PATCH] Update convert-gptneox-h5-to-gguf.py --- convert-gptneox-h5-to-gguf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert-gptneox-h5-to-gguf.py b/convert-gptneox-h5-to-gguf.py index cbade7079..12b6cc960 100644 --- a/convert-gptneox-h5-to-gguf.py +++ b/convert-gptneox-h5-to-gguf.py @@ -54,7 +54,7 @@ gguf_writer = gguf.GGUFWriter.open(fname_out) with open(dir_model + "/config.json", "r", encoding="utf-8") as f: hparams = json.load(f) -# This mmust be changed when adding/deleting kv +# This must be changed when adding/deleting kv kv_count = 14 print("tensors " + str(tensor_count) + " kv " + str(kv_count))