diff options
author | Joan Fontanals <joan.fontanals.martinez@jina.ai> | 2024-05-13 10:35:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 11:35:14 +0300 |
commit | 9aa672490c848e45eaa704a554e0f1f6df995fc8 (patch) | |
tree | 674957b27a03ce726c364471c4382d0398c1d58c /convert-hf-to-gguf.py | |
parent | b1f8af1886e8187db6bb2a9b87cfc1c0f175f629 (diff) |
llama : rename jina tokenizers to v2 (#7249)
* refactor: rename jina tokenizers to v2
* refactor: keep refactoring non-breaking
Diffstat (limited to 'convert-hf-to-gguf.py')
-rwxr-xr-x | convert-hf-to-gguf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/convert-hf-to-gguf.py b/convert-hf-to-gguf.py index ec7f4dd7..d6e5dece 100755 --- a/convert-hf-to-gguf.py +++ b/convert-hf-to-gguf.py @@ -475,13 +475,13 @@ class Model: res = "dbrx" if chkhsh == "0876d13b50744004aa9aeae05e7b0647eac9d801b5ba4668afc01e709c15e19f": # ref: https://huggingface.co/jinaai/jina-embeddings-v2-base-en - res = "jina-en" + res = "jina-v2-en" if chkhsh == "171aeeedd6fb548d418a7461d053f11b6f1f1fc9b387bd66640d28a4b9f5c643": # ref: https://huggingface.co/jinaai/jina-embeddings-v2-base-es - res = "jina-es" + res = "jina-v2-es" if chkhsh == "27949a2493fc4a9f53f5b9b029c82689cfbe5d3a1929bb25e043089e28466de6": # ref: https://huggingface.co/jinaai/jina-embeddings-v2-base-de - res = "jina-de" + res = "jina-v2-de" if res is None: logger.warning("\n") |