llama : vocab
ggml-ci
This commit is contained in:
parent
6fa9007059
commit
2b150e0a6c
6 changed files with 355 additions and 359 deletions
|
@ -1094,7 +1094,7 @@ void llama_grammar_apply_impl(const struct llama_grammar & grammar, llama_token_
|
||||||
const llama_token id = cur_p->data[i].id;
|
const llama_token id = cur_p->data[i].id;
|
||||||
const std::string & piece = grammar.vocab->cache_token_to_piece.at(id);
|
const std::string & piece = grammar.vocab->cache_token_to_piece.at(id);
|
||||||
|
|
||||||
if (llama_token_is_eog_impl(*grammar.vocab, id)) {
|
if (grammar.vocab->token_is_eog(id)) {
|
||||||
if (!allow_eog) {
|
if (!allow_eog) {
|
||||||
cur_p->data[i].logit = -INFINITY;
|
cur_p->data[i].logit = -INFINITY;
|
||||||
}
|
}
|
||||||
|
@ -1115,7 +1115,7 @@ void llama_grammar_apply_impl(const struct llama_grammar & grammar, llama_token_
|
||||||
void llama_grammar_accept_impl(struct llama_grammar & grammar, llama_token token) {
|
void llama_grammar_accept_impl(struct llama_grammar & grammar, llama_token token) {
|
||||||
GGML_ASSERT(grammar.vocab != nullptr);
|
GGML_ASSERT(grammar.vocab != nullptr);
|
||||||
|
|
||||||
if (llama_token_is_eog_impl(*grammar.vocab, token)) {
|
if (grammar.vocab->token_is_eog(token)) {
|
||||||
for (const auto & stack : grammar.stacks) {
|
for (const auto & stack : grammar.stacks) {
|
||||||
if (stack.empty()) {
|
if (stack.empty()) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -1596,7 +1596,7 @@ void llama_model::load_vocab(llama_model_loader & ml) {
|
||||||
// determine the newline token: LLaMA "<0x0A>" == 10 == '\n', Falcon 193 == '\n'
|
// determine the newline token: LLaMA "<0x0A>" == 10 == '\n', Falcon 193 == '\n'
|
||||||
if (vocab.type == LLAMA_VOCAB_TYPE_SPM) {
|
if (vocab.type == LLAMA_VOCAB_TYPE_SPM) {
|
||||||
try {
|
try {
|
||||||
vocab.linefeed_id = llama_byte_to_token_impl(vocab, '\n');
|
vocab.linefeed_id = vocab.byte_to_token('\n');
|
||||||
} catch (const std::exception & e) {
|
} catch (const std::exception & e) {
|
||||||
LLAMA_LOG_WARN("%s: SPM vocabulary, but newline token not found: %s! Using special_pad_id instead.", __func__, e.what());
|
LLAMA_LOG_WARN("%s: SPM vocabulary, but newline token not found: %s! Using special_pad_id instead.", __func__, e.what());
|
||||||
vocab.linefeed_id = vocab.special_pad_id;
|
vocab.linefeed_id = vocab.special_pad_id;
|
||||||
|
@ -1604,11 +1604,11 @@ void llama_model::load_vocab(llama_model_loader & ml) {
|
||||||
} else if (vocab.type == LLAMA_VOCAB_TYPE_WPM) {
|
} else if (vocab.type == LLAMA_VOCAB_TYPE_WPM) {
|
||||||
vocab.linefeed_id = vocab.special_pad_id;
|
vocab.linefeed_id = vocab.special_pad_id;
|
||||||
} else if (vocab.type == LLAMA_VOCAB_TYPE_RWKV) {
|
} else if (vocab.type == LLAMA_VOCAB_TYPE_RWKV) {
|
||||||
const std::vector<int> ids = llama_tokenize_internal(vocab, "\n", false);
|
const std::vector<int> ids = vocab.tokenize("\n", false);
|
||||||
GGML_ASSERT(!ids.empty() && "model vocab missing newline token");
|
GGML_ASSERT(!ids.empty() && "model vocab missing newline token");
|
||||||
vocab.linefeed_id = ids[0];
|
vocab.linefeed_id = ids[0];
|
||||||
} else {
|
} else {
|
||||||
const std::vector<int> ids = llama_tokenize_internal(vocab, "\xC4\x8A", false); // U+010A
|
const std::vector<int> ids = vocab.tokenize("\xC4\x8A", false); // U+010A
|
||||||
|
|
||||||
//GGML_ASSERT(!ids.empty() && "model vocab missing newline token");
|
//GGML_ASSERT(!ids.empty() && "model vocab missing newline token");
|
||||||
if (ids.empty()) {
|
if (ids.empty()) {
|
||||||
|
@ -4200,7 +4200,7 @@ void llama_model::print_info() const {
|
||||||
|
|
||||||
// hparams
|
// hparams
|
||||||
LLAMA_LOG_INFO("%s: arch = %s\n", __func__, arch_name().c_str());
|
LLAMA_LOG_INFO("%s: arch = %s\n", __func__, arch_name().c_str());
|
||||||
LLAMA_LOG_INFO("%s: vocab type = %s\n", __func__, llama_model_vocab_type_name(vocab.type));
|
LLAMA_LOG_INFO("%s: vocab type = %s\n", __func__, vocab.type_name().c_str());
|
||||||
LLAMA_LOG_INFO("%s: n_vocab = %u\n", __func__, hparams.n_vocab);
|
LLAMA_LOG_INFO("%s: n_vocab = %u\n", __func__, hparams.n_vocab);
|
||||||
LLAMA_LOG_INFO("%s: n_merges = %u\n", __func__, (int) vocab.bpe_ranks.size());
|
LLAMA_LOG_INFO("%s: n_merges = %u\n", __func__, (int) vocab.bpe_ranks.size());
|
||||||
LLAMA_LOG_INFO("%s: vocab_only = %d\n", __func__, hparams.vocab_only);
|
LLAMA_LOG_INFO("%s: vocab_only = %d\n", __func__, hparams.vocab_only);
|
||||||
|
|
|
@ -1664,7 +1664,7 @@ struct llama_sampler_dry {
|
||||||
// Ported from Koboldcpp, original PR: https://github.com/LostRuins/koboldcpp/pull/982 (Original author: pi6am)
|
// Ported from Koboldcpp, original PR: https://github.com/LostRuins/koboldcpp/pull/982 (Original author: pi6am)
|
||||||
static void get_overlapping_token_sequences(const llama_vocab & vocab, const std::string& str, std::unordered_multimap<llama_token, std::vector<llama_token>>& token_sequences, int max_tail_len = -1) {
|
static void get_overlapping_token_sequences(const llama_vocab & vocab, const std::string& str, std::unordered_multimap<llama_token, std::vector<llama_token>>& token_sequences, int max_tail_len = -1) {
|
||||||
for (llama_token token_id = 0; token_id < (llama_token)vocab.n_vocab; token_id++) {
|
for (llama_token token_id = 0; token_id < (llama_token)vocab.n_vocab; token_id++) {
|
||||||
std::string word = llama_detokenize(vocab, {token_id}, true);
|
std::string word = vocab.detokenize({token_id}, true);
|
||||||
if (word.find(str) != std::string::npos) {
|
if (word.find(str) != std::string::npos) {
|
||||||
token_sequences.emplace(token_id, std::vector<llama_token>());
|
token_sequences.emplace(token_id, std::vector<llama_token>());
|
||||||
} else {
|
} else {
|
||||||
|
@ -1681,7 +1681,7 @@ static void get_overlapping_token_sequences(const llama_vocab & vocab, const std
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (match) {
|
if (match) {
|
||||||
std::vector<llama_token> tokenization = llama_tokenize_internal(vocab, str.substr(i), false, false);
|
std::vector<llama_token> tokenization = vocab.tokenize(str.substr(i), false, false);
|
||||||
if (max_tail_len >= 0 && tokenization.size() > (size_t)max_tail_len) {
|
if (max_tail_len >= 0 && tokenization.size() > (size_t)max_tail_len) {
|
||||||
tokenization.resize(max_tail_len);
|
tokenization.resize(max_tail_len);
|
||||||
}
|
}
|
||||||
|
@ -2153,7 +2153,7 @@ static void llama_sampler_infill_apply(struct llama_sampler * smpl, llama_token_
|
||||||
float p_eog_sum = 0.0f;
|
float p_eog_sum = 0.0f;
|
||||||
|
|
||||||
for (size_t i = 0; i < cur_p->size; ++i) {
|
for (size_t i = 0; i < cur_p->size; ++i) {
|
||||||
if (llama_token_is_eog_impl(*ctx->vocab, cur_p->data[i].id)) {
|
if (ctx->vocab->token_is_eog(cur_p->data[i].id)) {
|
||||||
p_eog_sum += cur_p->data[i].p;
|
p_eog_sum += cur_p->data[i].p;
|
||||||
} else {
|
} else {
|
||||||
p_txt_sum += cur_p->data[i].p;
|
p_txt_sum += cur_p->data[i].p;
|
||||||
|
@ -2175,7 +2175,7 @@ static void llama_sampler_infill_apply(struct llama_sampler * smpl, llama_token_
|
||||||
float p_sum = 0.0f;
|
float p_sum = 0.0f;
|
||||||
|
|
||||||
for (size_t i = 0; i < size_org; ++i) {
|
for (size_t i = 0; i < size_org; ++i) {
|
||||||
if (llama_token_is_eog_impl(*ctx->vocab, cur_p->data[i].id)) {
|
if (ctx->vocab->token_is_eog(cur_p->data[i].id)) {
|
||||||
p_sum += cur_p->data[i].p;
|
p_sum += cur_p->data[i].p;
|
||||||
|
|
||||||
cur_p->data[cur_p->size++] = cur_p->data[i];
|
cur_p->data[cur_p->size++] = cur_p->data[i];
|
||||||
|
@ -2203,17 +2203,17 @@ static void llama_sampler_infill_apply(struct llama_sampler * smpl, llama_token_
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
int len0 = llama_token_to_piece_impl(*ctx->vocab, cur_p->data[i0].id, ctx->buf0.data(), ctx->buf0.size(), 0, false);
|
int len0 = ctx->vocab->token_to_piece(cur_p->data[i0].id, ctx->buf0.data(), ctx->buf0.size(), 0, false);
|
||||||
if (len0 < 0) {
|
if (len0 < 0) {
|
||||||
ctx->buf0.resize(len0);
|
ctx->buf0.resize(len0);
|
||||||
len0 = llama_token_to_piece_impl(*ctx->vocab, cur_p->data[i0].id, ctx->buf0.data(), ctx->buf0.size(), 0, false);
|
len0 = ctx->vocab->token_to_piece(cur_p->data[i0].id, ctx->buf0.data(), ctx->buf0.size(), 0, false);
|
||||||
assert(len0 > 0);
|
assert(len0 > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int len1 = llama_token_to_piece_impl(*ctx->vocab, cur_p->data[i1].id, ctx->buf1.data(), ctx->buf1.size(), 0, false);
|
int len1 = ctx->vocab->token_to_piece(cur_p->data[i1].id, ctx->buf1.data(), ctx->buf1.size(), 0, false);
|
||||||
if (len1 < 0) {
|
if (len1 < 0) {
|
||||||
ctx->buf1.resize(len1);
|
ctx->buf1.resize(len1);
|
||||||
len1 = llama_token_to_piece_impl(*ctx->vocab, cur_p->data[i1].id, ctx->buf1.data(), ctx->buf1.size(), 0, false);
|
len1 = ctx->vocab->token_to_piece(cur_p->data[i1].id, ctx->buf1.data(), ctx->buf1.size(), 0, false);
|
||||||
assert(len1 > 0);
|
assert(len1 > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2248,7 +2248,7 @@ static void llama_sampler_infill_apply(struct llama_sampler * smpl, llama_token_
|
||||||
LOG_DBG_CUR("%s: n_combined = %zu, applying thold = %.3f\n", __func__, n_combined, thold);
|
LOG_DBG_CUR("%s: n_combined = %zu, applying thold = %.3f\n", __func__, n_combined, thold);
|
||||||
|
|
||||||
for (size_t i = 0; i < size_org; ++i) {
|
for (size_t i = 0; i < size_org; ++i) {
|
||||||
const bool is_eog = llama_token_is_eog_impl(*ctx->vocab, cur_p->data[i].id);
|
const bool is_eog = ctx->vocab->token_is_eog(cur_p->data[i].id);
|
||||||
|
|
||||||
if (cur_p->data[i].p < thold && !is_eog) {
|
if (cur_p->data[i].p < thold && !is_eog) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -2269,7 +2269,7 @@ static void llama_sampler_infill_apply(struct llama_sampler * smpl, llama_token_
|
||||||
// if no non-EOG tokens are left -> reduce cur_p to single EOT token
|
// if no non-EOG tokens are left -> reduce cur_p to single EOT token
|
||||||
if (n_non_eog == 0) {
|
if (n_non_eog == 0) {
|
||||||
cur_p->size = 1;
|
cur_p->size = 1;
|
||||||
cur_p->data[0].id = llama_token_eot_impl(*ctx->vocab);
|
cur_p->data[0].id = ctx->vocab->token_eot();
|
||||||
cur_p->data[0].logit = 1.0f;
|
cur_p->data[0].logit = 1.0f;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -2291,7 +2291,7 @@ static void llama_sampler_infill_apply(struct llama_sampler * smpl, llama_token_
|
||||||
LOG_DBG_CUR("%s: applying thold = %.3f\n", __func__, thold);
|
LOG_DBG_CUR("%s: applying thold = %.3f\n", __func__, thold);
|
||||||
|
|
||||||
for (size_t i = 0; i < size_org; ++i) {
|
for (size_t i = 0; i < size_org; ++i) {
|
||||||
const bool is_eog = llama_token_is_eog_impl(*ctx->vocab, cur_p->data[i].id);
|
const bool is_eog = ctx->vocab->token_is_eog(cur_p->data[i].id);
|
||||||
|
|
||||||
if (cur_p->data[i].p < thold && !is_eog) {
|
if (cur_p->data[i].p < thold && !is_eog) {
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -88,45 +88,57 @@ int llama_vocab::find_bpe_rank(const std::string & token_left, const std::string
|
||||||
return it->second;
|
return it->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
static enum llama_vocab_type llama_vocab_get_type(const llama_vocab & vocab) {
|
enum llama_vocab_type llama_vocab::get_type() const {
|
||||||
return vocab.type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool llama_is_normal_token(const llama_vocab & vocab, llama_token id) {
|
std::string llama_vocab::type_name() const{
|
||||||
GGML_ASSERT(vocab.type != LLAMA_VOCAB_TYPE_NONE);
|
switch (type) {
|
||||||
return vocab.id_to_token[id].attr & LLAMA_TOKEN_ATTR_NORMAL;
|
case LLAMA_VOCAB_TYPE_NONE: return "no vocab";
|
||||||
|
case LLAMA_VOCAB_TYPE_SPM: return "SPM";
|
||||||
|
case LLAMA_VOCAB_TYPE_BPE: return "BPE";
|
||||||
|
case LLAMA_VOCAB_TYPE_WPM: return "WPM";
|
||||||
|
case LLAMA_VOCAB_TYPE_UGM: return "UGM";
|
||||||
|
case LLAMA_VOCAB_TYPE_RWKV: return "RWKV";
|
||||||
|
default: return "unknown";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool llama_is_unknown_token(const llama_vocab & vocab, llama_token id) {
|
bool llama_vocab::is_normal_token(llama_token id) const {
|
||||||
GGML_ASSERT(vocab.type != LLAMA_VOCAB_TYPE_NONE);
|
GGML_ASSERT(type != LLAMA_VOCAB_TYPE_NONE);
|
||||||
return vocab.id_to_token[id].attr & LLAMA_TOKEN_ATTR_UNKNOWN;
|
return id_to_token[id].attr & LLAMA_TOKEN_ATTR_NORMAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool llama_is_control_token(const llama_vocab & vocab, llama_token id) {
|
bool llama_vocab::is_unknown_token(llama_token id) const {
|
||||||
GGML_ASSERT(vocab.type != LLAMA_VOCAB_TYPE_NONE);
|
GGML_ASSERT(type != LLAMA_VOCAB_TYPE_NONE);
|
||||||
return vocab.id_to_token[id].attr & LLAMA_TOKEN_ATTR_CONTROL;
|
return id_to_token[id].attr & LLAMA_TOKEN_ATTR_UNKNOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool llama_is_byte_token(const llama_vocab & vocab, llama_token id) {
|
bool llama_vocab::is_control_token(llama_token id) const {
|
||||||
GGML_ASSERT(vocab.type != LLAMA_VOCAB_TYPE_NONE);
|
GGML_ASSERT(type != LLAMA_VOCAB_TYPE_NONE);
|
||||||
return vocab.id_to_token[id].attr & LLAMA_TOKEN_ATTR_BYTE;
|
return id_to_token[id].attr & LLAMA_TOKEN_ATTR_CONTROL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool llama_is_user_defined_token(const llama_vocab & vocab, llama_token id) {
|
bool llama_vocab::is_byte_token(llama_token id) const {
|
||||||
GGML_ASSERT(vocab.type != LLAMA_VOCAB_TYPE_NONE);
|
GGML_ASSERT(type != LLAMA_VOCAB_TYPE_NONE);
|
||||||
return vocab.id_to_token[id].attr & LLAMA_TOKEN_ATTR_USER_DEFINED;
|
return id_to_token[id].attr & LLAMA_TOKEN_ATTR_BYTE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool llama_is_unused_token(const llama_vocab & vocab, llama_token id) {
|
bool llama_vocab::is_user_defined_token(llama_token id) const {
|
||||||
GGML_ASSERT(vocab.type != LLAMA_VOCAB_TYPE_NONE);
|
GGML_ASSERT(type != LLAMA_VOCAB_TYPE_NONE);
|
||||||
return vocab.id_to_token[id].attr & LLAMA_TOKEN_ATTR_UNUSED;
|
return id_to_token[id].attr & LLAMA_TOKEN_ATTR_USER_DEFINED;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint8_t llama_token_to_byte(const llama_vocab & vocab, llama_token id) {
|
bool llama_vocab::is_unused_token(llama_token id) const {
|
||||||
GGML_ASSERT(llama_vocab_get_type(vocab) != LLAMA_VOCAB_TYPE_NONE);
|
GGML_ASSERT(type != LLAMA_VOCAB_TYPE_NONE);
|
||||||
GGML_ASSERT(llama_is_byte_token(vocab, id));
|
return id_to_token[id].attr & LLAMA_TOKEN_ATTR_UNUSED;
|
||||||
const auto & token_data = vocab.id_to_token.at(id);
|
}
|
||||||
switch (llama_vocab_get_type(vocab)) {
|
|
||||||
|
uint8_t llama_vocab::token_to_byte(llama_token id) const {
|
||||||
|
GGML_ASSERT(get_type() != LLAMA_VOCAB_TYPE_NONE);
|
||||||
|
GGML_ASSERT(is_byte_token(id));
|
||||||
|
const auto & token_data = id_to_token.at(id);
|
||||||
|
switch (get_type()) {
|
||||||
case LLAMA_VOCAB_TYPE_SPM:
|
case LLAMA_VOCAB_TYPE_SPM:
|
||||||
case LLAMA_VOCAB_TYPE_UGM: {
|
case LLAMA_VOCAB_TYPE_UGM: {
|
||||||
auto buf = token_data.text.substr(3, 2);
|
auto buf = token_data.text.substr(3, 2);
|
||||||
|
@ -134,7 +146,6 @@ static uint8_t llama_token_to_byte(const llama_vocab & vocab, llama_token id) {
|
||||||
}
|
}
|
||||||
case LLAMA_VOCAB_TYPE_BPE: {
|
case LLAMA_VOCAB_TYPE_BPE: {
|
||||||
GGML_ABORT("fatal error");
|
GGML_ABORT("fatal error");
|
||||||
//return unicode_utf8_to_byte(token_data.text); // TODO: why is this here after GGML_ASSERT?
|
|
||||||
}
|
}
|
||||||
case LLAMA_VOCAB_TYPE_WPM: {
|
case LLAMA_VOCAB_TYPE_WPM: {
|
||||||
GGML_ABORT("fatal error");
|
GGML_ABORT("fatal error");
|
||||||
|
@ -265,7 +276,7 @@ private:
|
||||||
// output any symbols that did not form tokens as bytes.
|
// output any symbols that did not form tokens as bytes.
|
||||||
output.reserve(output.size() + symbol.n);
|
output.reserve(output.size() + symbol.n);
|
||||||
for (int j = 0; j < (int)symbol.n; ++j) {
|
for (int j = 0; j < (int)symbol.n; ++j) {
|
||||||
llama_vocab::id token_id = llama_byte_to_token_impl(vocab, symbol.text[j]);
|
llama_vocab::id token_id = vocab.byte_to_token(symbol.text[j]);
|
||||||
output.push_back(token_id);
|
output.push_back(token_id);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -816,18 +827,18 @@ struct llm_tokenizer_ugm : llm_tokenizer {
|
||||||
for (unsigned int id = 0; id < vocab.id_to_token.size(); ++id) {
|
for (unsigned int id = 0; id < vocab.id_to_token.size(); ++id) {
|
||||||
const auto &token_data = vocab.id_to_token[id];
|
const auto &token_data = vocab.id_to_token[id];
|
||||||
|
|
||||||
if (llama_is_normal_token(vocab, id)) {
|
if (vocab.is_normal_token(id)) {
|
||||||
min_score = std::min<float>(min_score, token_data.score);
|
min_score = std::min<float>(min_score, token_data.score);
|
||||||
max_score = std::max<float>(max_score, token_data.score);
|
max_score = std::max<float>(max_score, token_data.score);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (llama_is_normal_token(vocab, id) ||
|
if (vocab.is_normal_token(id) ||
|
||||||
llama_is_user_defined_token(vocab, id) ||
|
vocab.is_user_defined_token(id) ||
|
||||||
llama_is_unused_token(vocab, id)) {
|
vocab.is_unused_token(id)) {
|
||||||
token_matcher.insert(token_data.text.data(), token_data.text.size(), id);
|
token_matcher.insert(token_data.text.data(), token_data.text.size(), id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (llama_is_user_defined_token(vocab, id)) {
|
if (vocab.is_user_defined_token(id)) {
|
||||||
user_defined_token_matcher.insert(token_data.text.data(), token_data.text.size());
|
user_defined_token_matcher.insert(token_data.text.data(), token_data.text.size());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -913,7 +924,7 @@ struct llm_tokenizer_ugm_session {
|
||||||
// (normal token scores are log probabilities, so they are negative)
|
// (normal token scores are log probabilities, so they are negative)
|
||||||
// score type is double here to make tokenization results exactly
|
// score type is double here to make tokenization results exactly
|
||||||
// the same as in the HF tokenizer using SentencePiece
|
// the same as in the HF tokenizer using SentencePiece
|
||||||
const double token_score = llama_is_user_defined_token(vocab, token_id) ? 0.0 : token_data.score;
|
const double token_score = vocab.is_user_defined_token(token_id) ? 0.0 : token_data.score;
|
||||||
const double challenger_score = current_best.score_sum + token_score;
|
const double challenger_score = current_best.score_sum + token_score;
|
||||||
struct best_tokenization & current_champ = tokenization_results[prefix_offset];
|
struct best_tokenization & current_champ = tokenization_results[prefix_offset];
|
||||||
if (challenger_score > current_champ.score_sum) {
|
if (challenger_score > current_champ.score_sum) {
|
||||||
|
@ -1428,22 +1439,144 @@ static void tokenizer_st_partition(const llama_vocab & vocab, std::forward_list<
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<llama_vocab::id> llama_tokenize_internal(
|
llama_token llama_vocab::byte_to_token(uint8_t ch) const {
|
||||||
const llama_vocab & vocab,
|
GGML_ASSERT(get_type() != LLAMA_VOCAB_TYPE_NONE);
|
||||||
|
static const char * hex = "0123456789ABCDEF";
|
||||||
|
switch (get_type()) {
|
||||||
|
case LLAMA_VOCAB_TYPE_SPM:
|
||||||
|
case LLAMA_VOCAB_TYPE_UGM: {
|
||||||
|
const char buf[7] = { '<', '0', 'x', hex[ch >> 4], hex[ch & 15], '>', 0 };
|
||||||
|
auto token = token_to_id.find(buf);
|
||||||
|
if (token != token_to_id.end()) {
|
||||||
|
return (*token).second;
|
||||||
|
}
|
||||||
|
// Try to fall back to just the byte as a string
|
||||||
|
const char buf2[2] = { (char)ch, 0 };
|
||||||
|
return token_to_id.at(buf2);
|
||||||
|
}
|
||||||
|
case LLAMA_VOCAB_TYPE_WPM:
|
||||||
|
case LLAMA_VOCAB_TYPE_BPE: {
|
||||||
|
return token_to_id.at(unicode_byte_to_utf8(ch));
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
GGML_ABORT("fatal error");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const char * llama_vocab::token_get_text(llama_token token) const {
|
||||||
|
GGML_ASSERT(type != LLAMA_VOCAB_TYPE_NONE);
|
||||||
|
return id_to_token[token].text.c_str();
|
||||||
|
}
|
||||||
|
|
||||||
|
float llama_vocab::token_get_score(llama_token token) const {
|
||||||
|
GGML_ASSERT(type != LLAMA_VOCAB_TYPE_NONE);
|
||||||
|
return id_to_token[token].score;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token_attr llama_vocab::token_get_attr(llama_token token) const {
|
||||||
|
GGML_ASSERT(type != LLAMA_VOCAB_TYPE_NONE);
|
||||||
|
return id_to_token[token].attr;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool llama_vocab::token_is_eog(llama_token token) const {
|
||||||
|
return token != LLAMA_TOKEN_NULL && special_eog_ids.count(token) > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool llama_vocab::token_is_control(llama_token token) const {
|
||||||
|
return is_control_token(token);
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_bos() const {
|
||||||
|
return type != LLAMA_VOCAB_TYPE_WPM ? special_bos_id : special_cls_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_eos() const {
|
||||||
|
return special_eos_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_eot() const {
|
||||||
|
return special_eot_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_eom() const {
|
||||||
|
return special_eom_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_cls() const {
|
||||||
|
return special_cls_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_sep() const {
|
||||||
|
return special_sep_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_nl() const {
|
||||||
|
return linefeed_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_pad() const {
|
||||||
|
return special_pad_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool llama_vocab::add_bos_token() const {
|
||||||
|
return tokenizer_add_bos;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool llama_vocab::add_eos_token() const {
|
||||||
|
return tokenizer_add_eos;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_prefix() const {
|
||||||
|
return special_fim_pre_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_middle() const {
|
||||||
|
return special_fim_mid_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_suffix() const {
|
||||||
|
return special_fim_suf_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_fim_pre() const {
|
||||||
|
return special_fim_pre_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_fim_suf() const {
|
||||||
|
return special_fim_suf_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_fim_mid() const {
|
||||||
|
return special_fim_mid_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_fim_pad() const {
|
||||||
|
return special_fim_pad_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_fim_rep() const {
|
||||||
|
return special_fim_rep_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
llama_token llama_vocab::token_fim_sep() const {
|
||||||
|
return special_fim_sep_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::vector<llama_vocab::id> llama_vocab::tokenize(
|
||||||
std::string raw_text,
|
std::string raw_text,
|
||||||
bool add_special,
|
bool add_special,
|
||||||
bool parse_special) {
|
bool parse_special) const {
|
||||||
GGML_ASSERT(vocab.tokenizer && "Tokenizer not initialized. Call llama_vocab::init_tokenizer() first.");
|
GGML_ASSERT(tokenizer && "Tokenizer not initialized. Call llama_vocab::init_tokenizer() first.");
|
||||||
|
|
||||||
std::vector<llama_vocab::id> output;
|
std::vector<id> output;
|
||||||
std::forward_list<fragment_buffer_variant> fragment_buffer;
|
std::forward_list<fragment_buffer_variant> fragment_buffer;
|
||||||
|
|
||||||
if (!raw_text.empty()) {
|
if (!raw_text.empty()) {
|
||||||
fragment_buffer.emplace_front(raw_text, 0, raw_text.length());
|
fragment_buffer.emplace_front(raw_text, 0, raw_text.length());
|
||||||
tokenizer_st_partition(vocab, fragment_buffer, parse_special);
|
tokenizer_st_partition(*this, fragment_buffer, parse_special);
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (vocab.type) {
|
switch (get_type()) {
|
||||||
case LLAMA_VOCAB_TYPE_SPM:
|
case LLAMA_VOCAB_TYPE_SPM:
|
||||||
{
|
{
|
||||||
// OG tokenizer behavior:
|
// OG tokenizer behavior:
|
||||||
|
@ -1453,9 +1586,9 @@ std::vector<llama_vocab::id> llama_tokenize_internal(
|
||||||
|
|
||||||
bool is_prev_special = true; // prefix with space if first token
|
bool is_prev_special = true; // prefix with space if first token
|
||||||
|
|
||||||
if (add_special && vocab.tokenizer_add_bos) {
|
if (add_special && tokenizer_add_bos) {
|
||||||
GGML_ASSERT(vocab.special_bos_id != LLAMA_TOKEN_NULL);
|
GGML_ASSERT(special_bos_id != LLAMA_TOKEN_NULL);
|
||||||
output.push_back(vocab.special_bos_id);
|
output.push_back(special_bos_id);
|
||||||
is_prev_special = true;
|
is_prev_special = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1464,7 +1597,7 @@ std::vector<llama_vocab::id> llama_tokenize_internal(
|
||||||
auto raw_text = fragment.raw_text.substr(fragment.offset, fragment.length);
|
auto raw_text = fragment.raw_text.substr(fragment.offset, fragment.length);
|
||||||
|
|
||||||
// prefix with space if previous is special
|
// prefix with space if previous is special
|
||||||
if (vocab.tokenizer_add_space_prefix && is_prev_special) {
|
if (tokenizer_add_space_prefix && is_prev_special) {
|
||||||
raw_text = " " + raw_text;
|
raw_text = " " + raw_text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1472,7 +1605,7 @@ std::vector<llama_vocab::id> llama_tokenize_internal(
|
||||||
LLAMA_LOG_WARN("TT: (%ld %ld %ld) '%s'\n", raw_text.length(), fragment.offset, fragment.length, raw_text.c_str());
|
LLAMA_LOG_WARN("TT: (%ld %ld %ld) '%s'\n", raw_text.length(), fragment.offset, fragment.length, raw_text.c_str());
|
||||||
#endif
|
#endif
|
||||||
llama_escape_whitespace(raw_text);
|
llama_escape_whitespace(raw_text);
|
||||||
llm_tokenizer_spm_session session(vocab);
|
llm_tokenizer_spm_session session(*this);
|
||||||
session.tokenize(raw_text, output);
|
session.tokenize(raw_text, output);
|
||||||
is_prev_special = false;
|
is_prev_special = false;
|
||||||
} else { // if (fragment.type == FRAGMENT_BUFFER_VARIANT_TYPE_TOKEN)
|
} else { // if (fragment.type == FRAGMENT_BUFFER_VARIANT_TYPE_TOKEN)
|
||||||
|
@ -1481,21 +1614,21 @@ std::vector<llama_vocab::id> llama_tokenize_internal(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (add_special && vocab.tokenizer_add_bos && output.size() >= 2 && output[1] == vocab.special_bos_id) {
|
if (add_special && tokenizer_add_bos && output.size() >= 2 && output[1] == special_bos_id) {
|
||||||
LLAMA_LOG_WARN(
|
LLAMA_LOG_WARN(
|
||||||
"%s: Added a BOS token to the prompt as specified by the model but the prompt "
|
"%s: Added a BOS token to the prompt as specified by the model but the prompt "
|
||||||
"also starts with a BOS token. So now the final prompt starts with 2 BOS tokens. "
|
"also starts with a BOS token. So now the final prompt starts with 2 BOS tokens. "
|
||||||
"Are you sure this is what you want?\n", __FUNCTION__);
|
"Are you sure this is what you want?\n", __FUNCTION__);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (add_special && vocab.tokenizer_add_eos) {
|
if (add_special && tokenizer_add_eos) {
|
||||||
GGML_ASSERT(vocab.special_eos_id != LLAMA_TOKEN_NULL);
|
GGML_ASSERT(special_eos_id != LLAMA_TOKEN_NULL);
|
||||||
output.push_back(vocab.special_eos_id);
|
output.push_back(special_eos_id);
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
case LLAMA_VOCAB_TYPE_BPE:
|
case LLAMA_VOCAB_TYPE_BPE:
|
||||||
{
|
{
|
||||||
llm_tokenizer_bpe_session session(vocab);
|
llm_tokenizer_bpe_session session(*this);
|
||||||
// it calls some other methods that are not exist in llm_tokenizer,
|
// it calls some other methods that are not exist in llm_tokenizer,
|
||||||
// here just cast it to bpe tokenizer object
|
// here just cast it to bpe tokenizer object
|
||||||
if (add_special) {
|
if (add_special) {
|
||||||
|
@ -1522,11 +1655,11 @@ std::vector<llama_vocab::id> llama_tokenize_internal(
|
||||||
case LLAMA_VOCAB_TYPE_WPM:
|
case LLAMA_VOCAB_TYPE_WPM:
|
||||||
{
|
{
|
||||||
if (add_special) {
|
if (add_special) {
|
||||||
GGML_ASSERT(vocab.special_cls_id != LLAMA_TOKEN_NULL);
|
GGML_ASSERT(special_cls_id != LLAMA_TOKEN_NULL);
|
||||||
output.push_back(vocab.special_cls_id);
|
output.push_back(special_cls_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
llm_tokenizer_wpm_session session(vocab);
|
llm_tokenizer_wpm_session session(*this);
|
||||||
|
|
||||||
for (const auto & fragment : fragment_buffer) {
|
for (const auto & fragment : fragment_buffer) {
|
||||||
if (fragment.type == FRAGMENT_BUFFER_VARIANT_TYPE_RAW_TEXT) {
|
if (fragment.type == FRAGMENT_BUFFER_VARIANT_TYPE_RAW_TEXT) {
|
||||||
|
@ -1542,17 +1675,17 @@ std::vector<llama_vocab::id> llama_tokenize_internal(
|
||||||
}
|
}
|
||||||
|
|
||||||
if (add_special) {
|
if (add_special) {
|
||||||
GGML_ASSERT(vocab.special_sep_id != LLAMA_TOKEN_NULL);
|
GGML_ASSERT(special_sep_id != LLAMA_TOKEN_NULL);
|
||||||
output.push_back(vocab.special_sep_id);
|
output.push_back(special_sep_id);
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
case LLAMA_VOCAB_TYPE_UGM:
|
case LLAMA_VOCAB_TYPE_UGM:
|
||||||
{
|
{
|
||||||
if (add_special && vocab.tokenizer_add_bos) {
|
if (add_special && tokenizer_add_bos) {
|
||||||
GGML_ASSERT(vocab.special_bos_id != LLAMA_TOKEN_NULL);
|
GGML_ASSERT(special_bos_id != LLAMA_TOKEN_NULL);
|
||||||
output.push_back(vocab.special_bos_id);
|
output.push_back(special_bos_id);
|
||||||
}
|
}
|
||||||
llm_tokenizer_ugm_session session(vocab);
|
llm_tokenizer_ugm_session session(*this);
|
||||||
|
|
||||||
for (const auto & fragment : fragment_buffer) {
|
for (const auto & fragment : fragment_buffer) {
|
||||||
if (fragment.type == FRAGMENT_BUFFER_VARIANT_TYPE_RAW_TEXT) {
|
if (fragment.type == FRAGMENT_BUFFER_VARIANT_TYPE_RAW_TEXT) {
|
||||||
|
@ -1566,21 +1699,21 @@ std::vector<llama_vocab::id> llama_tokenize_internal(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (add_special && vocab.tokenizer_add_bos && output.size() >= 2 && output[1] == vocab.special_bos_id) {
|
if (add_special && tokenizer_add_bos && output.size() >= 2 && output[1] == special_bos_id) {
|
||||||
LLAMA_LOG_WARN(
|
LLAMA_LOG_WARN(
|
||||||
"%s: Added a BOS token to the prompt as specified by the model but the prompt "
|
"%s: Added a BOS token to the prompt as specified by the model but the prompt "
|
||||||
"also starts with a BOS token. So now the final prompt starts with 2 BOS tokens. "
|
"also starts with a BOS token. So now the final prompt starts with 2 BOS tokens. "
|
||||||
"Are you sure this is what you want?\n", __FUNCTION__);
|
"Are you sure this is what you want?\n", __FUNCTION__);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (add_special && vocab.tokenizer_add_eos) {
|
if (add_special && tokenizer_add_eos) {
|
||||||
GGML_ASSERT(vocab.special_eos_id != LLAMA_TOKEN_NULL);
|
GGML_ASSERT(special_eos_id != LLAMA_TOKEN_NULL);
|
||||||
output.push_back(vocab.special_eos_id);
|
output.push_back(special_eos_id);
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
case LLAMA_VOCAB_TYPE_RWKV:
|
case LLAMA_VOCAB_TYPE_RWKV:
|
||||||
{
|
{
|
||||||
llm_tokenizer_rwkv_session session(vocab);
|
llm_tokenizer_rwkv_session session(*this);
|
||||||
for (const auto & fragment : fragment_buffer) {
|
for (const auto & fragment : fragment_buffer) {
|
||||||
if (fragment.type == FRAGMENT_BUFFER_VARIANT_TYPE_RAW_TEXT) {
|
if (fragment.type == FRAGMENT_BUFFER_VARIANT_TYPE_RAW_TEXT) {
|
||||||
auto raw_text = fragment.raw_text.substr(fragment.offset, fragment.length);
|
auto raw_text = fragment.raw_text.substr(fragment.offset, fragment.length);
|
||||||
|
@ -1602,138 +1735,14 @@ std::vector<llama_vocab::id> llama_tokenize_internal(
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_byte_to_token_impl(const llama_vocab & vocab, uint8_t ch) {
|
int32_t llama_vocab::tokenize(
|
||||||
GGML_ASSERT(llama_vocab_get_type(vocab) != LLAMA_VOCAB_TYPE_NONE);
|
const char * text,
|
||||||
static const char * hex = "0123456789ABCDEF";
|
int32_t text_len,
|
||||||
switch (llama_vocab_get_type(vocab)) {
|
llama_token * tokens,
|
||||||
case LLAMA_VOCAB_TYPE_SPM:
|
int32_t n_tokens_max,
|
||||||
case LLAMA_VOCAB_TYPE_UGM: {
|
bool add_special,
|
||||||
const char buf[7] = { '<', '0', 'x', hex[ch >> 4], hex[ch & 15], '>', 0 };
|
bool parse_special) const {
|
||||||
auto token = vocab.token_to_id.find(buf);
|
auto res = tokenize(std::string(text, text_len), add_special, parse_special);
|
||||||
if (token != vocab.token_to_id.end()) {
|
|
||||||
return (*token).second;
|
|
||||||
}
|
|
||||||
// Try to fall back to just the byte as a string
|
|
||||||
const char buf2[2] = { (char)ch, 0 };
|
|
||||||
return vocab.token_to_id.at(buf2);
|
|
||||||
}
|
|
||||||
case LLAMA_VOCAB_TYPE_WPM:
|
|
||||||
case LLAMA_VOCAB_TYPE_BPE: {
|
|
||||||
return vocab.token_to_id.at(unicode_byte_to_utf8(ch));
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
GGML_ABORT("fatal error");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const char * llama_token_get_text_impl(const struct llama_vocab & vocab, llama_token token) {
|
|
||||||
GGML_ASSERT(vocab.type != LLAMA_VOCAB_TYPE_NONE);
|
|
||||||
return vocab.id_to_token[token].text.c_str();
|
|
||||||
}
|
|
||||||
|
|
||||||
float llama_token_get_score_impl(const struct llama_vocab & vocab, llama_token token) {
|
|
||||||
GGML_ASSERT(vocab.type != LLAMA_VOCAB_TYPE_NONE);
|
|
||||||
return vocab.id_to_token[token].score;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token_attr llama_token_get_attr_impl(const struct llama_vocab & vocab, llama_token token) {
|
|
||||||
GGML_ASSERT(vocab.type != LLAMA_VOCAB_TYPE_NONE);
|
|
||||||
return vocab.id_to_token[token].attr;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool llama_token_is_eog_impl(const struct llama_vocab & vocab, llama_token token) {
|
|
||||||
return token != LLAMA_TOKEN_NULL && vocab.special_eog_ids.count(token) > 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool llama_token_is_control_impl(const struct llama_vocab & vocab, llama_token token) {
|
|
||||||
return llama_is_control_token(vocab, token);
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_bos_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.type != LLAMA_VOCAB_TYPE_WPM ? vocab.special_bos_id : vocab.special_cls_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_eos_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_eos_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_eot_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_eot_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_eom_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_eom_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_cls_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_cls_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_sep_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_sep_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_nl_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.linefeed_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_pad_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_pad_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool llama_add_bos_token_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.tokenizer_add_bos;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool llama_add_eos_token_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.tokenizer_add_eos;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_prefix_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_fim_pre_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_middle_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_fim_mid_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_suffix_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_fim_suf_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_fim_pre_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_fim_pre_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_fim_suf_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_fim_suf_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_fim_mid_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_fim_mid_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_fim_pad_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_fim_pad_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_fim_rep_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_fim_rep_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
llama_token llama_token_fim_sep_impl(const struct llama_vocab & vocab) {
|
|
||||||
return vocab.special_fim_sep_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
int32_t llama_tokenize_impl(
|
|
||||||
const struct llama_vocab & vocab,
|
|
||||||
const char * text,
|
|
||||||
int32_t text_len,
|
|
||||||
llama_token * tokens,
|
|
||||||
int32_t n_tokens_max,
|
|
||||||
bool add_special,
|
|
||||||
bool parse_special) {
|
|
||||||
auto res = llama_tokenize_internal(vocab, std::string(text, text_len), add_special, parse_special);
|
|
||||||
if (n_tokens_max < (int) res.size()) {
|
if (n_tokens_max < (int) res.size()) {
|
||||||
// LLAMA_LOG_ERROR("%s: too many tokens\n", __func__);
|
// LLAMA_LOG_ERROR("%s: too many tokens\n", __func__);
|
||||||
return -((int) res.size());
|
return -((int) res.size());
|
||||||
|
@ -1767,10 +1776,10 @@ static std::string llama_decode_text(const std::string & text) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// does not write null-terminator to buf
|
// does not write null-terminator to buf
|
||||||
int32_t llama_token_to_piece_impl(const struct llama_vocab & vocab, llama_token token, char * buf, int32_t length, int32_t lstrip, bool special) {
|
int32_t llama_vocab::token_to_piece(llama_token token, char * buf, int32_t length, int32_t lstrip, bool special) const {
|
||||||
// ref: https://github.com/ggerganov/llama.cpp/pull/7587#discussion_r1620983843
|
// ref: https://github.com/ggerganov/llama.cpp/pull/7587#discussion_r1620983843
|
||||||
static const int attr_special = LLAMA_TOKEN_ATTR_UNKNOWN | LLAMA_TOKEN_ATTR_CONTROL;
|
static const int attr_special = LLAMA_TOKEN_ATTR_UNKNOWN | LLAMA_TOKEN_ATTR_CONTROL;
|
||||||
const llama_token_attr attr = llama_token_get_attr_impl(vocab, token);
|
const llama_token_attr attr = token_get_attr(token);
|
||||||
if (!special && (attr & attr_special)) {
|
if (!special && (attr & attr_special)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1791,7 +1800,7 @@ int32_t llama_token_to_piece_impl(const struct llama_vocab & vocab, llama_token
|
||||||
|
|
||||||
// if we have a cache - use it
|
// if we have a cache - use it
|
||||||
{
|
{
|
||||||
const auto & cache = vocab.cache_token_to_piece;
|
const auto & cache = cache_token_to_piece;
|
||||||
|
|
||||||
if (!cache.empty()) {
|
if (!cache.empty()) {
|
||||||
const auto & result = cache.at(token);
|
const auto & result = cache.at(token);
|
||||||
|
@ -1799,9 +1808,9 @@ int32_t llama_token_to_piece_impl(const struct llama_vocab & vocab, llama_token
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (0 <= token && token < (int32_t) vocab.id_to_token.size()) {
|
if (0 <= token && token < (int32_t) id_to_token.size()) {
|
||||||
const std::string & token_text = vocab.id_to_token[token].text;
|
const std::string & token_text = id_to_token[token].text;
|
||||||
switch (llama_vocab_get_type(vocab)) {
|
switch (get_type()) {
|
||||||
case LLAMA_VOCAB_TYPE_WPM:
|
case LLAMA_VOCAB_TYPE_WPM:
|
||||||
case LLAMA_VOCAB_TYPE_SPM:
|
case LLAMA_VOCAB_TYPE_SPM:
|
||||||
case LLAMA_VOCAB_TYPE_UGM: {
|
case LLAMA_VOCAB_TYPE_UGM: {
|
||||||
|
@ -1816,7 +1825,7 @@ int32_t llama_token_to_piece_impl(const struct llama_vocab & vocab, llama_token
|
||||||
return _try_copy(result.data(), result.size());
|
return _try_copy(result.data(), result.size());
|
||||||
}
|
}
|
||||||
if (attr & LLAMA_TOKEN_ATTR_BYTE) {
|
if (attr & LLAMA_TOKEN_ATTR_BYTE) {
|
||||||
char byte = (char) llama_token_to_byte(vocab, token);
|
char byte = (char) token_to_byte(token);
|
||||||
return _try_copy((char*) &byte, 1);
|
return _try_copy((char*) &byte, 1);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1852,43 +1861,42 @@ int32_t llama_token_to_piece_impl(const struct llama_vocab & vocab, llama_token
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t llama_detokenize_impl(
|
int32_t llama_vocab::detokenize(
|
||||||
const struct llama_vocab & vocab,
|
|
||||||
const llama_token * tokens,
|
const llama_token * tokens,
|
||||||
int32_t n_tokens,
|
int32_t n_tokens,
|
||||||
char * text,
|
char * text,
|
||||||
int32_t text_len_max,
|
int32_t text_len_max,
|
||||||
bool remove_special,
|
bool remove_special,
|
||||||
bool unparse_special) {
|
bool unparse_special) const {
|
||||||
if (vocab.type == LLAMA_VOCAB_TYPE_NONE) {
|
if (type == LLAMA_VOCAB_TYPE_NONE) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
GGML_ASSERT(vocab.tokenizer && "Tokenizer not initialized. Call llama_vocab::init_tokenizer() first.");
|
GGML_ASSERT(tokenizer && "Tokenizer not initialized. Call llama_vocab::init_tokenizer() first.");
|
||||||
|
|
||||||
int32_t avail = text_len_max;
|
int32_t avail = text_len_max;
|
||||||
int32_t total = 0;
|
int32_t total = 0;
|
||||||
|
|
||||||
// remove the leading space
|
// remove the leading space
|
||||||
bool remove_space = vocab.tokenizer_add_space_prefix;
|
bool remove_space = tokenizer_add_space_prefix;
|
||||||
|
|
||||||
if (remove_special && vocab.tokenizer_add_bos) {
|
if (remove_special && tokenizer_add_bos) {
|
||||||
if (n_tokens > 0 && tokens[0] == vocab.special_bos_id) {
|
if (n_tokens > 0 && tokens[0] == special_bos_id) {
|
||||||
remove_space = false;
|
remove_space = false;
|
||||||
n_tokens--;
|
n_tokens--;
|
||||||
tokens++;
|
tokens++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (remove_special && vocab.tokenizer_add_eos) {
|
if (remove_special && tokenizer_add_eos) {
|
||||||
if (n_tokens > 0 && tokens[n_tokens - 1] == vocab.special_eos_id) {
|
if (n_tokens > 0 && tokens[n_tokens - 1] == special_eos_id) {
|
||||||
n_tokens--;
|
n_tokens--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int32_t i = 0; i < n_tokens; ++i) {
|
for (int32_t i = 0; i < n_tokens; ++i) {
|
||||||
GGML_ASSERT(avail >= 0);
|
GGML_ASSERT(avail >= 0);
|
||||||
int32_t n_chars = llama_token_to_piece_impl(vocab, tokens[i], text, avail, remove_space, unparse_special);
|
int32_t n_chars = token_to_piece(tokens[i], text, avail, remove_space, unparse_special);
|
||||||
remove_space = false;
|
remove_space = false;
|
||||||
if (n_chars < 0) {
|
if (n_chars < 0) {
|
||||||
avail = 0;
|
avail = 0;
|
||||||
|
@ -1904,7 +1912,7 @@ int32_t llama_detokenize_impl(
|
||||||
return -total;
|
return -total;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (vocab.tokenizer_clean_spaces) {
|
if (tokenizer_clean_spaces) {
|
||||||
text -= total; // restart text
|
text -= total; // restart text
|
||||||
|
|
||||||
// first pass: characters ?!., //TODO: where do these characters come from?
|
// first pass: characters ?!., //TODO: where do these characters come from?
|
||||||
|
@ -1965,13 +1973,13 @@ int32_t llama_detokenize_impl(
|
||||||
return total <= text_len_max ? total : -total;
|
return total <= text_len_max ? total : -total;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string llama_detokenize(const struct llama_vocab & vocab, const std::vector<llama_token> & tokens, bool special) {
|
std::string llama_vocab::detokenize(const std::vector<llama_token> & tokens, bool special) const {
|
||||||
std::string text;
|
std::string text;
|
||||||
text.resize(std::max(text.capacity(), tokens.size()));
|
text.resize(std::max(text.capacity(), tokens.size()));
|
||||||
int32_t n_chars = llama_detokenize_impl(vocab, tokens.data(), (int32_t)tokens.size(), &text[0], (int32_t)text.size(), false, special);
|
int32_t n_chars = detokenize(tokens.data(), (int32_t)tokens.size(), &text[0], (int32_t)text.size(), false, special);
|
||||||
if (n_chars < 0) {
|
if (n_chars < 0) {
|
||||||
text.resize(-n_chars);
|
text.resize(-n_chars);
|
||||||
n_chars = llama_detokenize_impl(vocab, tokens.data(), (int32_t)tokens.size(), &text[0], (int32_t)text.size(), false, special);
|
n_chars = detokenize(tokens.data(), (int32_t)tokens.size(), &text[0], (int32_t)text.size(), false, special);
|
||||||
GGML_ASSERT(n_chars <= (int32_t)text.size()); // whitespace trimming is performed after per-token detokenization
|
GGML_ASSERT(n_chars <= (int32_t)text.size()); // whitespace trimming is performed after per-token detokenization
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,18 +8,6 @@
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
|
||||||
static const char * llama_model_vocab_type_name(enum llama_vocab_type type){
|
|
||||||
switch (type) {
|
|
||||||
case LLAMA_VOCAB_TYPE_NONE: return "no vocab";
|
|
||||||
case LLAMA_VOCAB_TYPE_SPM: return "SPM";
|
|
||||||
case LLAMA_VOCAB_TYPE_BPE: return "BPE";
|
|
||||||
case LLAMA_VOCAB_TYPE_WPM: return "WPM";
|
|
||||||
case LLAMA_VOCAB_TYPE_UGM: return "UGM";
|
|
||||||
case LLAMA_VOCAB_TYPE_RWKV: return "RWKV";
|
|
||||||
default: return "unknown";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
struct llm_tokenizer;
|
struct llm_tokenizer;
|
||||||
|
|
||||||
struct llama_vocab {
|
struct llama_vocab {
|
||||||
|
@ -93,90 +81,90 @@ struct llama_vocab {
|
||||||
int find_bpe_rank(const std::string & token_left, const std::string & token_right) const;
|
int find_bpe_rank(const std::string & token_left, const std::string & token_right) const;
|
||||||
|
|
||||||
void init_tokenizer();
|
void init_tokenizer();
|
||||||
|
|
||||||
|
enum llama_vocab_type get_type() const;
|
||||||
|
|
||||||
|
std::string type_name() const;
|
||||||
|
|
||||||
|
// TODO: fix names
|
||||||
|
bool is_normal_token (llama_token id) const;
|
||||||
|
bool is_unknown_token (llama_token id) const;
|
||||||
|
bool is_control_token (llama_token id) const;
|
||||||
|
bool is_byte_token (llama_token id) const;
|
||||||
|
bool is_user_defined_token(llama_token id) const;
|
||||||
|
bool is_unused_token (llama_token id) const;
|
||||||
|
|
||||||
|
uint8_t token_to_byte(llama_token id) const;
|
||||||
|
llama_token byte_to_token(uint8_t ch) const;
|
||||||
|
|
||||||
|
const char * token_get_text(llama_token token) const;
|
||||||
|
|
||||||
|
float token_get_score(llama_token token) const;
|
||||||
|
|
||||||
|
llama_token_attr token_get_attr(llama_token token) const;
|
||||||
|
|
||||||
|
bool token_is_eog(llama_token token) const;
|
||||||
|
|
||||||
|
bool token_is_control(llama_token token) const;
|
||||||
|
|
||||||
|
llama_token token_bos() const;
|
||||||
|
llama_token token_eos() const;
|
||||||
|
llama_token token_eot() const;
|
||||||
|
llama_token token_eom() const;
|
||||||
|
llama_token token_cls() const;
|
||||||
|
llama_token token_sep() const;
|
||||||
|
llama_token token_nl () const;
|
||||||
|
llama_token token_pad() const;
|
||||||
|
|
||||||
|
llama_token token_prefix() const;
|
||||||
|
llama_token token_middle() const;
|
||||||
|
llama_token token_suffix() const;
|
||||||
|
|
||||||
|
llama_token token_fim_pre() const;
|
||||||
|
llama_token token_fim_suf() const;
|
||||||
|
llama_token token_fim_mid() const;
|
||||||
|
llama_token token_fim_pad() const;
|
||||||
|
llama_token token_fim_rep() const;
|
||||||
|
llama_token token_fim_sep() const;
|
||||||
|
|
||||||
|
bool add_bos_token() const;
|
||||||
|
bool add_eos_token() const;
|
||||||
|
|
||||||
|
std::vector<id> tokenize(
|
||||||
|
std::string raw_text,
|
||||||
|
bool add_special,
|
||||||
|
bool parse_special = false) const;
|
||||||
|
|
||||||
|
int32_t tokenize(
|
||||||
|
const char * text,
|
||||||
|
int32_t text_len,
|
||||||
|
llama_token * tokens,
|
||||||
|
int32_t n_tokens_max,
|
||||||
|
bool add_special,
|
||||||
|
bool parse_special) const;
|
||||||
|
|
||||||
|
// does not write null-terminator to buf
|
||||||
|
int32_t token_to_piece(
|
||||||
|
llama_token token,
|
||||||
|
char * buf,
|
||||||
|
int32_t length,
|
||||||
|
int32_t lstrip,
|
||||||
|
bool special) const;
|
||||||
|
|
||||||
|
// check if token0 is contained as a prefix in token1
|
||||||
|
bool token_is_prefix(
|
||||||
|
llama_token token0,
|
||||||
|
llama_token token1) const;
|
||||||
|
|
||||||
|
int32_t detokenize(
|
||||||
|
const llama_token * tokens,
|
||||||
|
int32_t n_tokens,
|
||||||
|
char * text,
|
||||||
|
int32_t text_len_max,
|
||||||
|
bool remove_special,
|
||||||
|
bool unparse_special) const;
|
||||||
|
|
||||||
|
std::string detokenize(
|
||||||
|
const std::vector<llama_token> & tokens,
|
||||||
|
bool special) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
//
|
|
||||||
// internal API
|
|
||||||
//
|
|
||||||
|
|
||||||
// TODO: rename to llama_tokenize_impl
|
|
||||||
// TODO: This should probably be in llama.h
|
|
||||||
std::vector<llama_vocab::id> llama_tokenize_internal(
|
|
||||||
const llama_vocab & vocab,
|
|
||||||
std::string raw_text,
|
|
||||||
bool add_special,
|
|
||||||
bool parse_special = false);
|
|
||||||
|
|
||||||
// TODO: move the API below as member functions of llama_vocab
|
|
||||||
llama_token llama_byte_to_token_impl(const llama_vocab & vocab, uint8_t ch);
|
|
||||||
|
|
||||||
const char * llama_token_get_text_impl(const struct llama_vocab & vocab, llama_token token);
|
|
||||||
|
|
||||||
float llama_token_get_score_impl(const struct llama_vocab & vocab, llama_token token);
|
|
||||||
|
|
||||||
llama_token_attr llama_token_get_attr_impl(const struct llama_vocab & vocab, llama_token token);
|
|
||||||
|
|
||||||
bool llama_token_is_eog_impl(const struct llama_vocab & vocab, llama_token token);
|
|
||||||
|
|
||||||
bool llama_token_is_control_impl(const struct llama_vocab & vocab, llama_token token);
|
|
||||||
|
|
||||||
llama_token llama_token_bos_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_eos_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_eot_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_eom_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_cls_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_sep_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_nl_impl (const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_pad_impl(const struct llama_vocab & vocab);
|
|
||||||
|
|
||||||
llama_token llama_token_prefix_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_middle_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_suffix_impl(const struct llama_vocab & vocab);
|
|
||||||
|
|
||||||
llama_token llama_token_fim_pre_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_fim_suf_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_fim_mid_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_fim_pad_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_fim_rep_impl(const struct llama_vocab & vocab);
|
|
||||||
llama_token llama_token_fim_sep_impl(const struct llama_vocab & vocab);
|
|
||||||
|
|
||||||
bool llama_add_bos_token_impl(const struct llama_vocab & vocab);
|
|
||||||
bool llama_add_eos_token_impl(const struct llama_vocab & vocab);
|
|
||||||
|
|
||||||
int32_t llama_tokenize_impl(
|
|
||||||
const struct llama_vocab & vocab,
|
|
||||||
const char * text,
|
|
||||||
int32_t text_len,
|
|
||||||
llama_token * tokens,
|
|
||||||
int32_t n_tokens_max,
|
|
||||||
bool add_special,
|
|
||||||
bool parse_special);
|
|
||||||
|
|
||||||
// does not write null-terminator to buf
|
|
||||||
int32_t llama_token_to_piece_impl(
|
|
||||||
const struct llama_vocab & vocab,
|
|
||||||
llama_token token,
|
|
||||||
char * buf,
|
|
||||||
int32_t length,
|
|
||||||
int32_t lstrip,
|
|
||||||
bool special);
|
|
||||||
|
|
||||||
// check if token0 is contained as a prefix in token1
|
|
||||||
bool llama_token_is_prefix_impl(
|
|
||||||
const struct llama_vocab & vocab,
|
|
||||||
llama_token token0,
|
|
||||||
llama_token token1);
|
|
||||||
|
|
||||||
int32_t llama_detokenize_impl(
|
|
||||||
const struct llama_vocab & vocab,
|
|
||||||
const llama_token * tokens,
|
|
||||||
int32_t n_tokens,
|
|
||||||
char * text,
|
|
||||||
int32_t text_len_max,
|
|
||||||
bool remove_special,
|
|
||||||
bool unparse_special);
|
|
||||||
|
|
||||||
std::string llama_detokenize(
|
|
||||||
const struct llama_vocab & vocab,
|
|
||||||
const std::vector<llama_token> & tokens,
|
|
||||||
bool special);
|
|
||||||
|
|
|
@ -9836,95 +9836,95 @@ int32_t llama_decode(
|
||||||
// TODO: tmp bridges below until `struct llama_vocab` is exposed through the public API
|
// TODO: tmp bridges below until `struct llama_vocab` is exposed through the public API
|
||||||
|
|
||||||
const char * llama_token_get_text(const struct llama_model * model, llama_token token) {
|
const char * llama_token_get_text(const struct llama_model * model, llama_token token) {
|
||||||
return llama_token_get_text_impl(model->vocab, token);
|
return model->vocab.token_get_text(token);
|
||||||
}
|
}
|
||||||
|
|
||||||
float llama_token_get_score(const struct llama_model * model, llama_token token) {
|
float llama_token_get_score(const struct llama_model * model, llama_token token) {
|
||||||
return llama_token_get_score_impl(model->vocab, token);
|
return model->vocab.token_get_score(token);
|
||||||
}
|
}
|
||||||
|
|
||||||
enum llama_token_attr llama_token_get_attr(const struct llama_model * model, llama_token token) {
|
enum llama_token_attr llama_token_get_attr(const struct llama_model * model, llama_token token) {
|
||||||
return llama_token_get_attr_impl(model->vocab, token);
|
return model->vocab.token_get_attr(token);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool llama_token_is_eog(const struct llama_model * model, llama_token token) {
|
bool llama_token_is_eog(const struct llama_model * model, llama_token token) {
|
||||||
return llama_token_is_eog_impl(model->vocab, token);
|
return model->vocab.token_is_eog(token);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool llama_token_is_control(const struct llama_model * model, llama_token token) {
|
bool llama_token_is_control(const struct llama_model * model, llama_token token) {
|
||||||
return llama_token_is_control_impl(model->vocab, token);
|
return model->vocab.token_is_control(token);
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_bos(const struct llama_model * model) {
|
llama_token llama_token_bos(const struct llama_model * model) {
|
||||||
return llama_token_bos_impl(model->vocab);
|
return model->vocab.token_bos();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_eos(const struct llama_model * model) {
|
llama_token llama_token_eos(const struct llama_model * model) {
|
||||||
return llama_token_eos_impl(model->vocab);
|
return model->vocab.token_eos();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_eot(const struct llama_model * model) {
|
llama_token llama_token_eot(const struct llama_model * model) {
|
||||||
return llama_token_eot_impl(model->vocab);
|
return model->vocab.token_eot();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_cls(const struct llama_model * model) {
|
llama_token llama_token_cls(const struct llama_model * model) {
|
||||||
return llama_token_cls_impl(model->vocab);
|
return model->vocab.token_cls();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_sep(const struct llama_model * model) {
|
llama_token llama_token_sep(const struct llama_model * model) {
|
||||||
return llama_token_sep_impl(model->vocab);
|
return model->vocab.token_sep();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_nl (const struct llama_model * model) {
|
llama_token llama_token_nl (const struct llama_model * model) {
|
||||||
return llama_token_nl_impl(model->vocab);
|
return model->vocab.token_nl();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_pad(const struct llama_model * model) {
|
llama_token llama_token_pad(const struct llama_model * model) {
|
||||||
return llama_token_pad_impl(model->vocab);
|
return model->vocab.token_pad();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool llama_add_bos_token(const struct llama_model * model) {
|
bool llama_add_bos_token(const struct llama_model * model) {
|
||||||
return llama_add_bos_token_impl(model->vocab);
|
return model->vocab.add_bos_token();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool llama_add_eos_token(const struct llama_model * model) {
|
bool llama_add_eos_token(const struct llama_model * model) {
|
||||||
return llama_add_eos_token_impl(model->vocab);
|
return model->vocab.add_eos_token();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_prefix(const struct llama_model * model) {
|
llama_token llama_token_prefix(const struct llama_model * model) {
|
||||||
return llama_token_prefix_impl(model->vocab);
|
return model->vocab.token_prefix();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_middle(const struct llama_model * model) {
|
llama_token llama_token_middle(const struct llama_model * model) {
|
||||||
return llama_token_middle_impl(model->vocab);
|
return model->vocab.token_middle();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_suffix(const struct llama_model * model) {
|
llama_token llama_token_suffix(const struct llama_model * model) {
|
||||||
return llama_token_suffix_impl(model->vocab);
|
return model->vocab.token_suffix();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_fim_pre(const struct llama_model * model) {
|
llama_token llama_token_fim_pre(const struct llama_model * model) {
|
||||||
return llama_token_fim_pre_impl(model->vocab);
|
return model->vocab.token_fim_pre();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_fim_suf(const struct llama_model * model) {
|
llama_token llama_token_fim_suf(const struct llama_model * model) {
|
||||||
return llama_token_fim_suf_impl(model->vocab);
|
return model->vocab.token_fim_suf();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_fim_mid(const struct llama_model * model) {
|
llama_token llama_token_fim_mid(const struct llama_model * model) {
|
||||||
return llama_token_fim_mid_impl(model->vocab);
|
return model->vocab.token_fim_mid();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_fim_pad(const struct llama_model * model) {
|
llama_token llama_token_fim_pad(const struct llama_model * model) {
|
||||||
return llama_token_fim_pad_impl(model->vocab);
|
return model->vocab.token_fim_pad();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_fim_rep(const struct llama_model * model) {
|
llama_token llama_token_fim_rep(const struct llama_model * model) {
|
||||||
return llama_token_fim_rep_impl(model->vocab);
|
return model->vocab.token_fim_rep();
|
||||||
}
|
}
|
||||||
|
|
||||||
llama_token llama_token_fim_sep(const struct llama_model * model) {
|
llama_token llama_token_fim_sep(const struct llama_model * model) {
|
||||||
return llama_token_fim_sep_impl(model->vocab);
|
return model->vocab.token_fim_sep();
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -9939,7 +9939,7 @@ int32_t llama_tokenize(
|
||||||
int32_t n_tokens_max,
|
int32_t n_tokens_max,
|
||||||
bool add_special,
|
bool add_special,
|
||||||
bool parse_special) {
|
bool parse_special) {
|
||||||
return llama_tokenize_impl(model->vocab, text, text_len, tokens, n_tokens_max, add_special, parse_special);
|
return model->vocab.tokenize(text, text_len, tokens, n_tokens_max, add_special, parse_special);
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t llama_token_to_piece(
|
int32_t llama_token_to_piece(
|
||||||
|
@ -9949,7 +9949,7 @@ int32_t llama_token_to_piece(
|
||||||
int32_t length,
|
int32_t length,
|
||||||
int32_t lstrip,
|
int32_t lstrip,
|
||||||
bool special) {
|
bool special) {
|
||||||
return llama_token_to_piece_impl(model->vocab, token, buf, length, lstrip, special);
|
return model->vocab.token_to_piece(token, buf, length, lstrip, special);
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t llama_detokenize(
|
int32_t llama_detokenize(
|
||||||
|
@ -9960,7 +9960,7 @@ int32_t llama_detokenize(
|
||||||
int32_t text_len_max,
|
int32_t text_len_max,
|
||||||
bool remove_special,
|
bool remove_special,
|
||||||
bool unparse_special) {
|
bool unparse_special) {
|
||||||
return llama_detokenize_impl(model->vocab, tokens, n_tokens, text, text_len_max, remove_special, unparse_special);
|
return model->vocab.detokenize(tokens, n_tokens, text, text_len_max, remove_special, unparse_special);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue