summaryrefslogtreecommitdiff
path: root/llama.cpp
diff options
context:
space:
mode:
authorthement <40525767+thement@users.noreply.github.com>2023-03-28 19:55:42 +0200
committerGitHub <noreply@github.com>2023-03-28 20:55:42 +0300
commitd0aaff571cd5c316b68e3e11d57e274bfd2bd457 (patch)
treed3c31e91094de6da948652b85bfc12b1f534f917 /llama.cpp
parentd0330fd783d7c67349cdcce4a56604ef0aeccdb5 (diff)
py : add temporary script to convert old ggml files to newer version (#539)
Co-authored-by: Jakub Horak <jakub.horak@ibawizard.net>
Diffstat (limited to 'llama.cpp')
-rw-r--r--llama.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llama.cpp b/llama.cpp
index ee7eb8ea..2d027925 100644
--- a/llama.cpp
+++ b/llama.cpp
@@ -320,7 +320,7 @@ static bool llama_model_load(
uint32_t magic;
fin.read((char *) &magic, sizeof(magic));
if (magic == LLAMA_FILE_MAGIC_UNVERSIONED) {
- fprintf(stderr, "%s: invalid model file '%s' (too old, regenerate your model files!)\n",
+ fprintf(stderr, "%s: invalid model file '%s' (too old, regenerate your model files or convert them with convert-unversioned-ggml-to-ggml.py!)\n",
__func__, fname.c_str());
return false;
}