2023-09-13 13:19:44 +00:00
|
|
|
#include "llama.h"
|
|
|
|
#include "common.h"
|
2023-10-03 07:16:26 +00:00
|
|
|
#include "unicode.h"
|
2023-09-13 13:19:44 +00:00
|
|
|
#include "console.h"
|
|
|
|
|
|
|
|
#include <cassert>
|
2024-02-13 13:14:22 +00:00
|
|
|
#include <codecvt>
|
2023-09-13 13:19:44 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2024-02-13 13:14:22 +00:00
|
|
|
#include <locale>
|
2023-09-13 13:19:44 +00:00
|
|
|
#include <string>
|
2024-02-13 13:14:22 +00:00
|
|
|
#include <thread>
|
2023-09-13 13:19:44 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2024-04-29 13:58:41 +00:00
|
|
|
int main(int argc, char ** argv) {
|
2023-09-13 13:19:44 +00:00
|
|
|
if (argc < 2) {
|
|
|
|
fprintf(stderr, "Usage: %s <vocab-file>\n", argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string fname = argv[1];
|
|
|
|
|
|
|
|
fprintf(stderr, "%s : reading vocab from: '%s'\n", __func__, fname.c_str());
|
|
|
|
|
|
|
|
llama_model * model;
|
|
|
|
llama_context * ctx;
|
|
|
|
|
2024-02-16 09:31:07 +00:00
|
|
|
llama_backend_init();
|
2023-09-13 13:19:44 +00:00
|
|
|
|
|
|
|
// load the vocab
|
|
|
|
{
|
2023-09-28 19:42:38 +00:00
|
|
|
auto mparams = llama_model_default_params();
|
2023-09-13 13:19:44 +00:00
|
|
|
|
2023-09-28 19:42:38 +00:00
|
|
|
mparams.vocab_only = true;
|
2023-09-13 13:19:44 +00:00
|
|
|
|
2023-09-28 19:42:38 +00:00
|
|
|
model = llama_load_model_from_file(fname.c_str(), mparams);
|
2023-09-13 13:19:44 +00:00
|
|
|
|
|
|
|
if (model == NULL) {
|
|
|
|
fprintf(stderr, "%s: error: failed to load vocab '%s'\n", __func__, fname.c_str());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2023-09-28 19:42:38 +00:00
|
|
|
auto cparams = llama_context_default_params();
|
|
|
|
|
|
|
|
ctx = llama_new_context_with_model(model, cparams);
|
2023-09-13 13:19:44 +00:00
|
|
|
|
|
|
|
if (ctx == NULL) {
|
|
|
|
fprintf(stderr, "%s: error: failed to load vocab '%s'\n", __func__, fname.c_str());
|
|
|
|
llama_free_model(model);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-28 19:42:38 +00:00
|
|
|
GGML_ASSERT(llama_vocab_type(model) == LLAMA_VOCAB_TYPE_SPM);
|
2023-09-13 13:19:44 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
// We need this for unicode console support
|
|
|
|
console::init(false, false);
|
|
|
|
atexit([]() { console::cleanup(); });
|
|
|
|
#endif
|
|
|
|
|
2023-09-28 19:42:38 +00:00
|
|
|
const int n_vocab = llama_n_vocab(model);
|
2023-09-13 13:19:44 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < n_vocab; ++i) {
|
|
|
|
std::string str = llama_detokenize_spm(ctx, std::vector<int>(1, i));
|
|
|
|
std::vector<llama_token> tokens = llama_tokenize(ctx, str, false);
|
|
|
|
std::string check = llama_detokenize_spm(ctx, tokens);
|
|
|
|
if (check != str) {
|
2023-09-16 11:41:33 +00:00
|
|
|
fprintf(stderr, "%s : error: token %d detokenizes to '%s'(%zu) but tokenization of this detokenizes to '%s'(%zu)\n",
|
2023-09-13 13:19:44 +00:00
|
|
|
__func__, i, str.c_str(), str.length(), check.c_str(), check.length());
|
2023-09-16 11:41:33 +00:00
|
|
|
return 2;
|
2023-09-13 13:19:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-13 13:14:22 +00:00
|
|
|
// unicode
|
|
|
|
{
|
|
|
|
const int nthread = std::thread::hardware_concurrency();
|
|
|
|
|
|
|
|
std::vector<std::thread> threads(nthread);
|
|
|
|
|
|
|
|
for (int i = 0; i < nthread; ++i) {
|
|
|
|
threads[i] = std::thread([i, nthread, ctx]() {
|
|
|
|
for (uint32_t cp = i; cp < 0x0010ffff; cp += nthread) {
|
|
|
|
if (cp >= 0xd800 && cp <= 0xdfff) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2024-03-11 15:47:47 +00:00
|
|
|
std::string str = unicode_cpt_to_utf8(cp);
|
2024-02-13 13:14:22 +00:00
|
|
|
std::vector<llama_token> tokens = llama_tokenize(ctx, str, false);
|
|
|
|
std::string check = llama_detokenize_spm(ctx, tokens);
|
|
|
|
if (cp != 9601 && str != check) {
|
|
|
|
fprintf(stderr, "error: codepoint %x detokenizes to '%s'(%zu) instead of '%s'(%zu)\n",
|
|
|
|
cp, check.c_str(), check.length(), str.c_str(), str.length());
|
|
|
|
std::exit(3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2023-09-13 13:19:44 +00:00
|
|
|
}
|
2024-02-13 13:14:22 +00:00
|
|
|
|
|
|
|
for (auto & t : threads) {
|
|
|
|
t.join();
|
2023-09-13 13:19:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
llama_free_model(model);
|
|
|
|
llama_free(ctx);
|
|
|
|
|
|
|
|
llama_backend_free();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|