lenML/tokenizers

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

34

stars

73

commits

JavaScript

primary language

May 16, 2026

updated

baichuan
chatglm
chatgpt
gpt4
llama2
llama3
mistral
tokenizer
transfomers
Browse cluster: Large Language Model Inference & Deployment

README

@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/tokenizersnpm NPM Downloads
deepseek_v4deepseek_v4@lenml/tokenizer-deepseek_v4npm NPM Downloads
qwen3Qwen3@lenml/tokenizer-qwen3npm NPM Downloads
gptossGPT-OSS-20B GPT-OSS-120B@lenml/tokenizer-gptossnpm NPM Downloads
minicpm_v4_5minicpm_v4_5@lenml/tokenizer-minicpm_v4_5npm NPM Downloads
gemma3Gemma3@lenml/tokenizer-gemma3npm NPM Downloads
deepseek_v3DeepSeek-V3 / DeepSeek-R1@lenml/tokenizer-deepseek_v3npm NPM Downloads
llama3_1Llama 3.1@lenml/tokenizer-llama3_1npm NPM Downloads
llama2Llama 2 (mistral, zephyr, vicuna)@lenml/tokenizer-llama2npm NPM Downloads
llama3Llama 3@lenml/tokenizer-llama3npm NPM Downloads
gpt4oGPT-4o@lenml/tokenizer-gpt4onpm NPM Downloads
gpt4GPT-4@lenml/tokenizer-gpt4npm NPM Downloads
gpt35turboGPT-3.5 Turbo@lenml/tokenizer-gpt35turbonpm NPM Downloads
gpt35turbo16kGPT-3.5 Turbo 16k@lenml/tokenizer-gpt35turbo16knpm NPM Downloads
gpt3GPT-3@lenml/tokenizer-gpt3npm NPM Downloads
gemmaGemma@lenml/tokenizer-gemmanpm NPM Downloads
claudeClaude 2/2.1/2.5/3/3.5@lenml/tokenizer-claudenpm NPM Downloads
claude1Claude 1@lenml/tokenizer-claude1npm NPM Downloads
gpt2GPT-2@lenml/tokenizer-gpt2npm NPM Downloads
baichuan2Baichuan 2@lenml/tokenizer-baichuan2npm NPM Downloads
chatglm3ChatGLM 3@lenml/tokenizer-chatglm3npm NPM Downloads
command_r_plusCommand-R-Plus@lenml/tokenizer-command_r_plusnpm NPM Downloads
internlm2InternLM 2@lenml/tokenizer-internlm2npm NPM Downloads
qwen1_5Qwen 1.5@lenml/tokenizer-qwen1_5npm NPM Downloads
yiYi@lenml/tokenizer-yinpm NPM Downloads
text_davinci002Text-Davinci-002@lenml/tokenizer-text_davinci002npm NPM Downloads
text_davinci003Text-Davinci-003@lenml/tokenizer-text_davinci003npm NPM Downloads
text_embedding_ada002Text-Embedding-Ada-002@lenml/tokenizer-text_embedding_ada002npm NPM Downloads
gemma2Gemma 2 / gemini-1.0-pro / gemini-1.5-pro / gemini-1.5-flash / gemini-nano@lenml/tokenizer-gemma2npm NPM Downloads
geminiGemma 2 / gemini-1.0-pro / gemini-1.5-pro / gemini-1.5-flash / gemini-nano@lenml/tokenizer-gemininpm NPM Downloads
qwen2_5Qwen 2.5@lenml/tokenizer-qwen2_5npm NPM Downloads
aya_expanseAya Expanse@lenml/tokenizer-aya_expansenpm NPM Downloads
llama3_2Llama 3.2@lenml/tokenizer-llama3_2npm NPM Downloads
mistral_nemoMistral Nemo@lenml/tokenizer-mistral_nemonpm NPM 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

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

load tokenizer

from json

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

from urls

import { TokenizerLoader } from "@lenml/tokenizers";
const sourceUrls = {
  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",
};
const tokenizer = await TokenizerLoader.fromPreTrainedUrls(sourceUrls);
// or from fetch
const tokenizer = TokenizerLoader.fromPreTrained({
  tokenizerJSON: await fetch(sourceUrls.tokenizerJSON).then((r) => r.json()),
  tokenizerConfig: await fetch(sourceUrls.tokenizerConfig).then((r) =>
    r.json()
  ),
});

from pre-packaged tokenizer

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

chat template

const tokens = tokenizer.apply_chat_template([
  {
    role: "system",
    content: "You are helpful assistant.",
  },
  {
    role: "user",
    content: "Hello, how are you?",
  },
]) as number[];

const chat_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";

export const tokenizer = 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

Contributors

zhzLuke96

73 commits

lenML/tokenizers

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

34

stars

73

commits

JavaScript

primary language

May 16, 2026

updated

baichuan
chatglm
chatgpt
gpt4
llama2
llama3
mistral
tokenizer
transfomers
Browse cluster: Large Language Model Inference & Deployment

README

@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/tokenizersnpm NPM Downloads
deepseek_v4deepseek_v4@lenml/tokenizer-deepseek_v4npm NPM Downloads
qwen3Qwen3@lenml/tokenizer-qwen3npm NPM Downloads
gptossGPT-OSS-20B GPT-OSS-120B@lenml/tokenizer-gptossnpm NPM Downloads
minicpm_v4_5minicpm_v4_5@lenml/tokenizer-minicpm_v4_5npm NPM Downloads
gemma3Gemma3@lenml/tokenizer-gemma3npm NPM Downloads
deepseek_v3DeepSeek-V3 / DeepSeek-R1@lenml/tokenizer-deepseek_v3npm NPM Downloads
llama3_1Llama 3.1@lenml/tokenizer-llama3_1npm NPM Downloads
llama2Llama 2 (mistral, zephyr, vicuna)@lenml/tokenizer-llama2npm NPM Downloads
llama3Llama 3@lenml/tokenizer-llama3npm NPM Downloads
gpt4oGPT-4o@lenml/tokenizer-gpt4onpm NPM Downloads
gpt4GPT-4@lenml/tokenizer-gpt4npm NPM Downloads
gpt35turboGPT-3.5 Turbo@lenml/tokenizer-gpt35turbonpm NPM Downloads
gpt35turbo16kGPT-3.5 Turbo 16k@lenml/tokenizer-gpt35turbo16knpm NPM Downloads
gpt3GPT-3@lenml/tokenizer-gpt3npm NPM Downloads
gemmaGemma@lenml/tokenizer-gemmanpm NPM Downloads
claudeClaude 2/2.1/2.5/3/3.5@lenml/tokenizer-claudenpm NPM Downloads
claude1Claude 1@lenml/tokenizer-claude1npm NPM Downloads
gpt2GPT-2@lenml/tokenizer-gpt2npm NPM Downloads
baichuan2Baichuan 2@lenml/tokenizer-baichuan2npm NPM Downloads
chatglm3ChatGLM 3@lenml/tokenizer-chatglm3npm NPM Downloads
command_r_plusCommand-R-Plus@lenml/tokenizer-command_r_plusnpm NPM Downloads
internlm2InternLM 2@lenml/tokenizer-internlm2npm NPM Downloads
qwen1_5Qwen 1.5@lenml/tokenizer-qwen1_5npm NPM Downloads
yiYi@lenml/tokenizer-yinpm NPM Downloads
text_davinci002Text-Davinci-002@lenml/tokenizer-text_davinci002npm NPM Downloads
text_davinci003Text-Davinci-003@lenml/tokenizer-text_davinci003npm NPM Downloads
text_embedding_ada002Text-Embedding-Ada-002@lenml/tokenizer-text_embedding_ada002npm NPM Downloads
gemma2Gemma 2 / gemini-1.0-pro / gemini-1.5-pro / gemini-1.5-flash / gemini-nano@lenml/tokenizer-gemma2npm NPM Downloads
geminiGemma 2 / gemini-1.0-pro / gemini-1.5-pro / gemini-1.5-flash / gemini-nano@lenml/tokenizer-gemininpm NPM Downloads
qwen2_5Qwen 2.5@lenml/tokenizer-qwen2_5npm NPM Downloads
aya_expanseAya Expanse@lenml/tokenizer-aya_expansenpm NPM Downloads
llama3_2Llama 3.2@lenml/tokenizer-llama3_2npm NPM Downloads
mistral_nemoMistral Nemo@lenml/tokenizer-mistral_nemonpm NPM 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

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

load tokenizer

from json

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

from urls

import { TokenizerLoader } from "@lenml/tokenizers";
const sourceUrls = {
  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",
};
const tokenizer = await TokenizerLoader.fromPreTrainedUrls(sourceUrls);
// or from fetch
const tokenizer = TokenizerLoader.fromPreTrained({
  tokenizerJSON: await fetch(sourceUrls.tokenizerJSON).then((r) => r.json()),
  tokenizerConfig: await fetch(sourceUrls.tokenizerConfig).then((r) =>
    r.json()
  ),
});

from pre-packaged tokenizer

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

chat template

const tokens = tokenizer.apply_chat_template([
  {
    role: "system",
    content: "You are helpful assistant.",
  },
  {
    role: "user",
    content: "Hello, how are you?",
  },
]) as number[];

const chat_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";

export const tokenizer = 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

Contributors

zhzLuke96

73 commits

Languages

JavaScript

93.1%

TypeScript

6.6%