diff options
author | thement <40525767+thement@users.noreply.github.com> | 2023-03-28 19:55:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 20:55:42 +0300 |
commit | d0aaff571cd5c316b68e3e11d57e274bfd2bd457 (patch) | |
tree | d3c31e91094de6da948652b85bfc12b1f534f917 /llama.cpp | |
parent | d0330fd783d7c67349cdcce4a56604ef0aeccdb5 (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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |