diff options
author | Elaine <elaine.zosa@gmail.com> | 2024-06-14 13:16:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 13:16:49 +0300 |
commit | 41b9260f18eb7f325c952006ac46afc1d0d8ad2f (patch) | |
tree | b5f1efc8d59d9433892cfef23c697dd20e912f6b /llama.h | |
parent | 172c8256840ffd882ab9992ecedbb587d9b21f15 (diff) |
convert : add Poro-34B-chat tokenizer support (#7713)
* support for Poro chat pre-tokenizer
* add support for Poro pre-tokenizer
* Update convert-hf-to-gguf-update.py
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
* Change Poro-34B-chat to poro-chat
* Change Poro-34B-chat to poro-chat
* Update convert-hf-to-gguf-update.py
* Update llama.cpp
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
Diffstat (limited to 'llama.h')
-rw-r--r-- | llama.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -86,6 +86,7 @@ extern "C" { LLAMA_VOCAB_PRE_TYPE_OLMO = 12, LLAMA_VOCAB_PRE_TYPE_DBRX = 13, LLAMA_VOCAB_PRE_TYPE_SMAUG = 14, + LLAMA_VOCAB_PRE_TYPE_PORO = 15, }; // note: these values should be synchronized with ggml_rope |