Skip to content

Repository files navigation

@lenml/tokenizers

This is the central repository for the @lenml/tokenizers project, which provides tokenization libraries for various machine learning models.

this repo fork from huggingface/transformers.js

Tokenizer Arena / Playground

Explore our Tokenizer Arena / Playground! This interactive platform allows you to utilize various tokenizers from our @lenml/tokenizers library. Easily load and compare different tokenizers, seeing how they perform with diverse text inputs. Whether you're a professional developer or a machine learning enthusiast, this playground is perfect for gaining insights into the tokenization process of different models and experimenting with their functionalities.

click to arena page

screenshot

When should I use this instead of transformers.js?

Firstly, the interface and the actual code of the Tokenizer object are completely identical to those in transformers.js. However, when loading a tokenizer with this library, you're allowed to create your model directly from a JSON object without the need for internet access, and without relying on Hugging Face (hf) servers, or local files.

Therefore, this library becomes more convenient when you need to operate offline and only require the use of a tokenizer without the need for ONNX models.

Packages

Below is a table showcasing all available packages, the models they support, and their respective locations within the repository:

Package NameSupported Model(s)Repository LinkNPM Page
tokenizers (core)N/A (Core Tokenization Library)@lenml/tokenizersnpmNPM Downloads
deepseek_v4deepseek_v4@lenml/tokenizer-deepseek_v4npmNPM Downloads
qwen3Qwen3@lenml/tokenizer-qwen3npmNPM Downloads
gptossGPT-OSS-20B GPT-OSS-120B@lenml/tokenizer-gptossnpmNPM Downloads
minicpm_v4_5minicpm_v4_5@lenml/tokenizer-minicpm_v4_5npmNPM Downloads
gemma3Gemma3@lenml/tokenizer-gemma3npmNPM Downloads
deepseek_v3DeepSeek-V3 / DeepSeek-R1@lenml/tokenizer-deepseek_v3npmNPM Downloads
llama3_1Llama 3.1@lenml/tokenizer-llama3_1npmNPM Downloads
llama2Llama 2 (mistral, zephyr, vicuna)@lenml/tokenizer-llama2npmNPM Downloads
llama3Llama 3@lenml/tokenizer-llama3npmNPM Downloads
gpt4oGPT-4o@lenml/tokenizer-gpt4onpmNPM Downloads
gpt4GPT-4@lenml/tokenizer-gpt4npmNPM Downloads
gpt35turboGPT-3.5 Turbo@lenml/tokenizer-gpt35turbonpmNPM Downloads
gpt35turbo16kGPT-3.5 Turbo 16k@lenml/tokenizer-gpt35turbo16knpmNPM Downloads
gpt3GPT-3@lenml/tokenizer-gpt3npmNPM Downloads
gemmaGemma@lenml/tokenizer-gemmanpmNPM Downloads
claudeClaude 2/2.1/2.5/3/3.5@lenml/tokenizer-claudenpmNPM Downloads
claude1Claude 1@lenml/tokenizer-claude1npmNPM Downloads
gpt2GPT-2@lenml/tokenizer-gpt2npmNPM Downloads
baichuan2Baichuan 2@lenml/tokenizer-baichuan2npmNPM Downloads
chatglm3ChatGLM 3@lenml/tokenizer-chatglm3npmNPM Downloads
command_r_plusCommand-R-Plus@lenml/tokenizer-command_r_plusnpmNPM Downloads
internlm2InternLM 2@lenml/tokenizer-internlm2npmNPM Downloads
qwen1_5Qwen 1.5@lenml/tokenizer-qwen1_5npmNPM Downloads
yiYi@lenml/tokenizer-yinpmNPM Downloads
text_davinci002Text-Davinci-002@lenml/tokenizer-text_davinci002npmNPM Downloads
text_davinci003Text-Davinci-003@lenml/tokenizer-text_davinci003npmNPM Downloads
text_embedding_ada002Text-Embedding-Ada-002@lenml/tokenizer-text_embedding_ada002npmNPM Downloads
gemma2Gemma 2 / gemini-1.0-pro / gemini-1.5-pro / gemini-1.5-flash / gemini-nano@lenml/tokenizer-gemma2npmNPM Downloads
geminiGemma 2 / gemini-1.0-pro / gemini-1.5-pro / gemini-1.5-flash / gemini-nano@lenml/tokenizer-gemininpmNPM Downloads
qwen2_5Qwen 2.5@lenml/tokenizer-qwen2_5npmNPM Downloads
aya_expanseAya Expanse@lenml/tokenizer-aya_expansenpmNPM Downloads
llama3_2Llama 3.2@lenml/tokenizer-llama3_2npmNPM Downloads
mistral_nemoMistral Nemo@lenml/tokenizer-mistral_nemonpmNPM Downloads

In addition to the pre-packaged models listed above, you can also utilize the interfaces in @lenml/tokenizers to load models independently.

Usage

install

npm/yarn/pnpm

npm install @lenml/tokenizers

ESM

<scripttype="importmap">{"imports": {"@lenml/tokenizers": "https://www.unpkg.com/@lenml/tokenizers@latest/dist/main.mjs"}}</script><scripttype="module">import{TokenizerLoader,tokenizers}from"@lenml/tokenizers";console.log("@lenml/tokenizers: ",tokenizers);</script>

load tokenizer

from json

import{TokenizerLoader}from"@lenml/tokenizers";consttokenizer=TokenizerLoader.fromPreTrained({tokenizerJSON: {/* ... */},tokenizerConfig: {/* ... */},});

from urls

import{TokenizerLoader}from"@lenml/tokenizers";constsourceUrls={tokenizerJSON:
"https://huggingface.co/HuggingFaceH4/zephyr-7b-gemma-v0.1/resolve/main/tokenizer.json?download=true",tokenizerConfig:
"https://huggingface.co/HuggingFaceH4/zephyr-7b-gemma-v0.1/resolve/main/tokenizer_config.json?download=true",};consttokenizer=awaitTokenizerLoader.fromPreTrainedUrls(sourceUrls);// or from fetchconsttokenizer=TokenizerLoader.fromPreTrained({tokenizerJSON: awaitfetch(sourceUrls.tokenizerJSON).then((r)=>r.json()),tokenizerConfig: awaitfetch(sourceUrls.tokenizerConfig).then((r)=>r.json()),});

from pre-packaged tokenizer

import{fromPreTrained}from"@lenml/tokenizer-llama3";consttokenizer=fromPreTrained();

chat template

consttokens=tokenizer.apply_chat_template([{role: "system",content: "You are helpful assistant.",},{role: "user",content: "Hello, how are you?",},])asnumber[];constchat_content=tokenizer.decode(tokens);console.log(chat_content);

output:

<|begin_of_text|><|start_header_id|>system<|end_header_id|>
You are helpful assistant.<|eot_id|><|start_header_id|>user<|end_header_id|>
Hello, how are you?<|eot_id|><|start_header_id|>assistant<|end_header_id|>

tokenizer api

console.log("encode() => ",tokenizer.encode("Hello, my dog is cute",null,{add_special_tokens: true,}));console.log("_encode_text() => ",tokenizer._encode_text("Hello, my dog is cute"));

fully tokenizer api: transformer.js tokenizers document

get lightweight transformers.tokenizers

In the @lenml/tokenizers package, you can get a lightweight no-dependency implementation of tokenizers:

Since all dependencies related to huggingface have been removed in this library, although the implementation is the same, it is not possible to load models using the form hf_user/repo.

import{tokenizers}from"@lenml/tokenizers";const{
CLIPTokenizer,
AutoTokenizer,
CohereTokenizer,
VitsTokenizer,
WhisperTokenizer,// ...}=tokenizers;

Manual Packaging

In some cases, you may need to use an older version of Node.js, so you might not be able to use pre-packaged packages. In such situations, you can manually package starting from the .ts files.

Here's a simple example:

import{tokenizerJSON,tokenizerConfig,}from"@lenml/tokenizer-claude/src/data.ts";import{TokenizerLoader}from"@lenml/tokenizers/src/main.ts";exportconsttokenizer=TokenizerLoader.fromPreTrained({
tokenizerConfig,
tokenizerJSON,});

Performance Benchmark Results

The following table summarizes the performance benchmarks for the Llama31 and GPT4o tokenizers across various datasets. The performance is measured in operations per second (ops/sec), indicating how efficiently each tokenizer processes the given input.

TokenizerOperationTextPerformance (ops/sec)Margin of Error (±%)Sampled Runs
Llama31encodeEnglish27,2600.81%86
Llama31encodeChinese50,6750.81%89
Llama31encodeFrench22,8360.58%92
Llama31encodeCode17,6770.30%94
Llama31decodeEnglish16,5420.61%90
Llama31decodeChinese21,1180.39%90
Llama31decodeFrench12,9940.24%91
Llama31decodeCode10,3502.80%87
GPT4oencodeEnglish31,6180.74%92
GPT4oencodeChinese73,1200.74%92
GPT4oencodeFrench27,8383.40%91
GPT4oencodeCode19,5893.05%87
GPT4odecodeEnglish24,7230.73%91
GPT4odecodeChinese44,2010.33%92
GPT4odecodeFrench21,9240.39%90
GPT4odecodeCode15,7850.55%94

The benchmarking script used to generate these results can be found at ./packages/tests/benchmarks/main.ts. You can use this script to replicate the benchmarks and validate the performance metrics for yourself.

Related repo

License

Apache-2.0

About

a lightweight no-dependency fork from transformers.js (only tokenizers)

Topics

Resources

Stars

34 stars

Watchers

1 watching

Forks

Used by

Contributors

Languages