From ff2513439062afd39f405c227286fcf630c30ec6 Mon Sep 17 00:00:00 2001 From: KerfuffleV2 Date: Sun, 20 Aug 2023 13:03:19 -0600 Subject: [PATCH] Add description to converted GGUF files --- convert-llama-ggmlv3-to-gguf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/convert-llama-ggmlv3-to-gguf.py b/convert-llama-ggmlv3-to-gguf.py index e8ecdf6da..336767fb6 100644 --- a/convert-llama-ggmlv3-to-gguf.py +++ b/convert-llama-ggmlv3-to-gguf.py @@ -164,6 +164,7 @@ class GGMLToGGUF: hp = self.model.hyperparameters cfg = self.cfg print('* Adding model parameters and KV items') + gguf_writer.add_description('converted from legacy GGJTv3 format') gguf_writer.add_context_length(cfg.context_length) gguf_writer.add_embedding_length(hp.n_embd) gguf_writer.add_block_count(hp.n_layer)