Model Database's logo
Join the Model Database community

and get access to the augmented documentation experience

to get started

tokenizers

Tokenizers are used to prepare textual inputs for a model.

Example: Create an AutoTokenizer and use it to tokenize a sentence. This will automatically detect the tokenizer type based on the tokenizer class defined in tokenizer.json.

import { AutoTokenizer } from '@xenova/transformers';

let tokenizer = await AutoTokenizer.from_pretrained('Xenova/bert-base-uncased');
let { input_ids } = await tokenizer('I love transformers!');
// Tensor {
//   data: BigInt64Array(6) [101n, 1045n, 2293n, 19081n, 999n, 102n],
//   dims: [1, 6],
//   type: 'int64',
//   size: 6,
// }

tokenizers.TokenizerModel ⇐ Callable

Abstract base class for tokenizer models.

Kind: static class of tokenizers
Extends: Callable


new TokenizerModel(config)

Creates a new instance of TokenizerModel.

ParamTypeDescription
configObject

The configuration object for the TokenizerModel.


tokenizerModel.vocab : Array.<string>

Kind: instance property of TokenizerModel


tokenizerModel.tokens_to_ids : Map.<string, number>

A mapping of tokens to ids.

Kind: instance property of TokenizerModel


tokenizerModel.fuse_unk : boolean

Whether to fuse unknown tokens when encoding. Defaults to false.

Kind: instance property of TokenizerModel


tokenizerModel._call(tokens) β‡’ Array.<string>

Internal function to call the TokenizerModel instance.

Kind: instance method of TokenizerModel
Returns: Array.<string> - The encoded token IDs.

ParamTypeDescription
tokensArray.<string>

The tokens to encode.


tokenizerModel.encode(tokens) β‡’ Array.<string>

Encodes a list of tokens into a list of token IDs.

Kind: instance method of TokenizerModel
Returns: Array.<string> - The encoded tokens.
Throws:

  • Will throw an error if not implemented in a subclass.
ParamTypeDescription
tokensArray.<string>

The tokens to encode.


tokenizerModel.convert_tokens_to_ids(tokens) β‡’ Array.<number>

Converts a list of tokens into a list of token IDs.

Kind: instance method of TokenizerModel
Returns: Array.<number> - The converted token IDs.

ParamTypeDescription
tokensArray.<string>

The tokens to convert.


tokenizerModel.convert_ids_to_tokens(ids) β‡’ Array.<string>

Converts a list of token IDs into a list of tokens.

Kind: instance method of TokenizerModel
Returns: Array.<string> - The converted tokens.

ParamTypeDescription
idsArray.<number>

The token IDs to convert.


TokenizerModel.fromConfig(config, ...args) β‡’ TokenizerModel

Instantiates a new TokenizerModel instance based on the configuration object provided.

Kind: static method of TokenizerModel
Returns: TokenizerModel - A new instance of a TokenizerModel.
Throws:

  • Will throw an error if the TokenizerModel type in the config is not recognized.
ParamTypeDescription
configObject

The configuration object for the TokenizerModel.

...args*

Optional arguments to pass to the specific TokenizerModel constructor.


tokenizers.PreTrainedTokenizer

Kind: static class of tokenizers


new PreTrainedTokenizer(tokenizerJSON, tokenizerConfig)

Create a new PreTrainedTokenizer instance.

ParamTypeDescription
tokenizerJSONObject

The JSON of the tokenizer.

tokenizerConfigObject

The config of the tokenizer.


preTrainedTokenizer.remove_space : boolean

Whether or not to strip the text when tokenizing (removing excess spaces before and after the string).

Kind: instance property of PreTrainedTokenizer


preTrainedTokenizer.getToken(...keys) β‡’ string | null

Returns the value of the first matching key in the tokenizer config object.

Kind: instance method of PreTrainedTokenizer
Returns: string | null - The value associated with the first matching key, or null if no match is found.
Throws:

  • Error If an object is found for a matching key and its __type property is not "AddedToken".
ParamTypeDescription
...keysstring

One or more keys to search for in the tokenizer config object.


preTrainedTokenizer.prepare_model_inputs(inputs) β‡’ Object

This function can be overridden by a subclass to apply additional preprocessing to a model’s input data.

Kind: instance method of PreTrainedTokenizer
Returns: Object - The modified inputs object.

ParamTypeDescription
inputsObject

An object containing input data as properties.


preTrainedTokenizer._call(text, options) β‡’ Object

Encode/tokenize the given text(s).

Kind: instance method of PreTrainedTokenizer
Returns: Object - Object to be passed to the model.

ParamTypeDefaultDescription
textstring | Array<string>

The text to tokenize.

optionsObject

An optional object containing the following properties:

[options.text_pair]string | Array<string>null

Optional second sequence to be encoded. If set, must be the same type as text.

[options.padding]booleanfalse

Whether to pad the input sequences.

[options.truncation]boolean

Whether to truncate the input sequences.

[options.max_length]number

Maximum length of the returned list and optionally padding length.

[options.return_tensor]booleantrue

Whether to return the results as Tensors or arrays.


preTrainedTokenizer._encode_text(text) β‡’ Array<string> | null

Encodes a single text using the preprocessor pipeline of the tokenizer.

Kind: instance method of PreTrainedTokenizer
Returns: Array<string> | null - The encoded tokens.

ParamTypeDescription
textstring | null

The text to encode.


preTrainedTokenizer.encode(text, text_pair) β‡’ Array.<number>

Encodes a single text or a pair of texts using the model’s tokenizer.

Kind: instance method of PreTrainedTokenizer
Returns: Array.<number> - An array of token IDs representing the encoded text(s).

ParamTypeDefaultDescription
textstring

The text to encode.

text_pairstring | nullnull

The optional second text to encode.


preTrainedTokenizer.batch_decode(batch, decode_args) β‡’ Array.<string>

Decode a batch of tokenized sequences.

Kind: instance method of PreTrainedTokenizer
Returns: Array.<string> - List of decoded sequences.

ParamTypeDescription
batchArray.<Array<number>>

List of tokenized input sequences.

decode_argsObject

(Optional) Object with decoding arguments.


preTrainedTokenizer.decode(token_ids, [decode_args]) β‡’ string

Decodes a sequence of token IDs back to a string.

Kind: instance method of PreTrainedTokenizer
Returns: string - The decoded string.
Throws:

  • Error If `token_ids` is not a non-empty array of integers.
ParamTypeDefaultDescription
token_idsArray.<number>

List of token IDs to decode.

[decode_args]Object{}
[decode_args.skip_special_tokens]booleanfalse

If true, special tokens are removed from the output string.

[decode_args.clean_up_tokenization_spaces]booleantrue

If true, spaces before punctuations and abbreviated forms are removed.


preTrainedTokenizer.decode_single(token_ids, decode_args) β‡’ string

Decode a single list of token ids to a string.

Kind: instance method of PreTrainedTokenizer
Returns: string - The decoded string

ParamTypeDefaultDescription
token_idsArray.<number>

List of token ids to decode

decode_argsObject

Optional arguments for decoding

[decode_args.skip_special_tokens]booleanfalse

Whether to skip special tokens during decoding

[decode_args.clean_up_tokenization_spaces]boolean

Whether to clean up tokenization spaces during decoding. If null, the value is set to this.decoder.cleanup if it exists, falling back to this.clean_up_tokenization_spaces if it exists, falling back to true.


PreTrainedTokenizer.from_pretrained(pretrained_model_name_or_path, options) β‡’ Promise.<PreTrainedTokenizer>

Loads a pre-trained tokenizer from the given pretrained_model_name_or_path.

Kind: static method of PreTrainedTokenizer
Returns: Promise.<PreTrainedTokenizer> - A new instance of the PreTrainedTokenizer class.
Throws:

  • Error Throws an error if the tokenizer.json or tokenizer_config.json files are not found in the `pretrained_model_name_or_path`.
ParamTypeDescription
pretrained_model_name_or_pathstring

The path to the pre-trained tokenizer.

optionsPretrainedOptions

Additional options for loading the tokenizer.


tokenizers.BertTokenizer ⇐ PreTrainedTokenizer

BertTokenizer is a class used to tokenize text for BERT models.

Kind: static class of tokenizers
Extends: PreTrainedTokenizer


bertTokenizer.prepare_model_inputs() : add_token_types

Kind: instance method of BertTokenizer


tokenizers.AlbertTokenizer ⇐ PreTrainedTokenizer

Albert tokenizer

Kind: static class of tokenizers
Extends: PreTrainedTokenizer


albertTokenizer.prepare_model_inputs() : add_token_types

Kind: instance method of AlbertTokenizer


tokenizers.NllbTokenizer

The NllbTokenizer class is used to tokenize text for NLLB (β€œNo Language Left Behind”) models.

No Language Left Behind (NLLB) is a first-of-its-kind, AI breakthrough project that open-sources models capable of delivering high-quality translations directly between any pair of 200+ languages β€” including low-resource languages like Asturian, Luganda, Urdu and more. It aims to help people communicate with anyone, anywhere, regardless of their language preferences. For more information, check out their paper.

For a list of supported languages (along with their language codes),

Kind: static class of tokenizers
See: https://github.com/facebookresearch/flores/blob/main/flores200/README.md#languages-in-flores-200


nllbTokenizer._build_translation_inputs(raw_inputs, tokenizer_options, generate_kwargs) β‡’ Object

Helper function to build translation inputs for an NllbTokenizer.

Kind: instance method of NllbTokenizer
Returns: Object - Object to be passed to the model.

ParamTypeDescription
raw_inputsstring | Array<string>

The text to tokenize.

tokenizer_optionsObject

Options to be sent to the tokenizer

generate_kwargsObject

Generation options.


tokenizers.M2M100Tokenizer

The M2M100Tokenizer class is used to tokenize text for M2M100 (β€œMany-to-Many”) models.

M2M100 is a multilingual encoder-decoder (seq-to-seq) model trained for Many-to-Many multilingual translation. It was introduced in this paper and first released in this repository.

For a list of supported languages (along with their language codes),

Kind: static class of tokenizers
See: https://huggingface.co/facebook/m2m100_418M#languages-covered


m2M100Tokenizer._build_translation_inputs(raw_inputs, tokenizer_options, generate_kwargs) β‡’ Object

Helper function to build translation inputs for an M2M100Tokenizer.

Kind: instance method of M2M100Tokenizer
Returns: Object - Object to be passed to the model.

ParamTypeDescription
raw_inputsstring | Array<string>

The text to tokenize.

tokenizer_optionsObject

Options to be sent to the tokenizer

generate_kwargsObject

Generation options.


tokenizers.WhisperTokenizer ⇐ PreTrainedTokenizer

WhisperTokenizer tokenizer

Kind: static class of tokenizers
Extends: PreTrainedTokenizer


whisperTokenizer._decode_asr(sequences, options) β‡’ *

Decodes automatic speech recognition (ASR) sequences.

Kind: instance method of WhisperTokenizer
Returns: * - The decoded sequences.

ParamTypeDescription
sequences*

The sequences to decode.

optionsObject

The options to use for decoding.


whisperTokenizer.decode() : *

Kind: instance method of WhisperTokenizer


whisperTokenizer.get_decoder_prompt_ids(options) β‡’ Array.<Array<number>>

Helper function to build translation inputs for a WhisperTokenizer, depending on the language, task, and whether to predict timestamp tokens.

Used to override the prefix tokens appended to the start of the label sequence.

Example: Get ids for a language

// instantiate the tokenizer and set the prefix token to Spanish
let tokenizer = await WhisperTokenizer.from_pretrained('Xenova/whisper-tiny');
let forced_decoder_ids = tokenizer.get_decoder_prompt_ids({ language: 'spanish' });
// [(1, 50262), (2, 50363)]

Kind: instance method of WhisperTokenizer
Returns: Array.<Array<number>> - The decoder prompt ids.

ParamTypeDescription
optionsObject

Options to generate the decoder prompt.

[options.language]string

The language of the transcription text. The corresponding language id token is appended to the start of the sequence for multilingual speech recognition and speech translation tasks, e.g. for "Spanish" the token "&lt;|es|&gt;" is appended to the start of sequence.

[options.task]string

Task identifier to append at the start of sequence (if any). This should be used for mulitlingual fine-tuning, with "transcribe" for speech recognition and "translate" for speech translation.

[options.no_timestamps]boolean

Whether to add the &lt;|notimestamps|&gt; token at the start of the sequence.


tokenizers.MarianTokenizer

Kind: static class of tokenizers
Todo

  • This model is not yet supported by Model Database’s β€œfast” tokenizers library (https://github.com/huggingface/tokenizers). Therefore, this implementation (which is based on fast tokenizers) may produce slightly inaccurate results.

new MarianTokenizer(tokenizerJSON, tokenizerConfig)

Create a new MarianTokenizer instance.

ParamTypeDescription
tokenizerJSONObject

The JSON of the tokenizer.

tokenizerConfigObject

The config of the tokenizer.


marianTokenizer._encode_text(text) β‡’ Array

Encodes a single text. Overriding this method is necessary since the language codes must be removed before encoding with sentencepiece model.

Kind: instance method of MarianTokenizer
Returns: Array - The encoded tokens.
See: https://github.com/huggingface/transformers/blob/12d51db243a00726a548a43cc333390ebae731e3/src/transformers/models/marian/tokenization_marian.py#L204-L213

ParamTypeDescription
textstring | null

The text to encode.


tokenizers.AutoTokenizer

Helper class which is used to instantiate pretrained tokenizers with the from_pretrained function. The chosen tokenizer class is determined by the type specified in the tokenizer config.

Kind: static class of tokenizers


AutoTokenizer.from_pretrained(pretrained_model_name_or_path, options) β‡’ Promise.<PreTrainedTokenizer>

Instantiate one of the tokenizer classes of the library from a pretrained model.

The tokenizer class to instantiate is selected based on the tokenizer_class property of the config object (either passed as an argument or loaded from pretrained_model_name_or_path if possible)

Kind: static method of AutoTokenizer
Returns: Promise.<PreTrainedTokenizer> - A new instance of the PreTrainedTokenizer class.

ParamTypeDescription
pretrained_model_name_or_pathstring

The name or path of the pretrained model. Can be either:

  • A string, the model id of a pretrained tokenizer hosted inside a model repo on huggingface.co. Valid model ids can be located at the root-level, like bert-base-uncased, or namespaced under a user or organization name, like dbmdz/bert-base-german-cased.
  • A path to a directory containing tokenizer files, e.g., ./my_model_directory/.
optionsPretrainedOptions

Additional options for loading the tokenizer.


tokenizers~WordPieceTokenizer ⇐ TokenizerModel

A subclass of TokenizerModel that uses WordPiece encoding to encode tokens.

Kind: inner class of tokenizers
Extends: TokenizerModel


new WordPieceTokenizer(config)

ParamTypeDescription
configObject

The configuration object.

config.vocabObject

A mapping of tokens to ids.

config.unk_tokenstring

The unknown token string.

config.continuing_subword_prefixstring

The prefix to use for continuing subwords.


wordPieceTokenizer.tokens_to_ids : Map.<string, number>

A mapping of tokens to ids.

Kind: instance property of WordPieceTokenizer


wordPieceTokenizer.unk_token_id : number

The id of the unknown token.

Kind: instance property of WordPieceTokenizer


wordPieceTokenizer.unk_token : string

The unknown token string.

Kind: instance property of WordPieceTokenizer


wordPieceTokenizer.vocab : Array.<string>

An array of tokens.

Kind: instance property of WordPieceTokenizer


wordPieceTokenizer.encode(tokens) β‡’ Array.<string>

Encodes an array of tokens using WordPiece encoding.

Kind: instance method of WordPieceTokenizer
Returns: Array.<string> - An array of encoded tokens.

ParamTypeDescription
tokensArray.<string>

The tokens to encode.


tokenizers~Unigram ⇐ TokenizerModel

Class representing a Unigram tokenizer model.

Kind: inner class of tokenizers
Extends: TokenizerModel


new Unigram(config, moreConfig)

Create a new Unigram tokenizer model.

ParamTypeDescription
configObject

The configuration object for the Unigram model.

config.unk_idnumber

The ID of the unknown token

config.vocabArray.<Array<any>>

A 2D array representing a mapping of tokens to scores.

moreConfigObject

Additional configuration object for the Unigram model.


unigram.populateNodes(lattice)

Populates lattice nodes.

Kind: instance method of Unigram

ParamTypeDescription
latticeTokenLattice

The token lattice to populate with nodes.


unigram.tokenize(normalized) β‡’ Array.<string>

Encodes an array of tokens into an array of subtokens using the unigram model.

Kind: instance method of Unigram
Returns: Array.<string> - An array of subtokens obtained by encoding the input tokens using the unigram model.

ParamTypeDescription
normalizedstring

The normalized string.


unigram.encode(tokens) β‡’ Array

Encodes an array of tokens using Unigram encoding.

Kind: instance method of Unigram
Returns: Array - An array of encoded tokens.

ParamTypeDescription
tokensArray

The tokens to encode.


tokenizers~BPE ⇐ TokenizerModel

BPE class for encoding text into Byte-Pair-Encoding (BPE) tokens.

Kind: inner class of tokenizers
Extends: TokenizerModel


new BPE(config)

Create a BPE instance.

ParamTypeDescription
configObject

The configuration object for BPE.

config.vocabObject

A mapping of tokens to ids.

config.unk_tokenstring

The unknown token used for out of vocabulary words.

config.end_of_word_suffixstring

The suffix to place at the end of each word.

[config.continuing_subword_suffix]string

The suffix to insert between words.

config.mergesArray

An array of BPE merges as strings.


bpE.tokens_to_ids : Map.<string, number>

Kind: instance property of BPE


bpE.cache : Map.<string, Array<string>>

Kind: instance property of BPE


bpE.bpe(token) β‡’ Array.<string>

Apply Byte-Pair-Encoding (BPE) to a given token. Efficient heap-based priority queue implementation adapted from https://github.com/belladoreai/llama-tokenizer-js.

Kind: instance method of BPE
Returns: Array.<string> - The BPE encoded tokens.

ParamTypeDescription
tokenstring

The token to encode.


bpE.encode(tokens) β‡’ Array.<string>

Encodes the input sequence of tokens using the BPE algorithm and returns the resulting subword tokens.

Kind: instance method of BPE
Returns: Array.<string> - The resulting subword tokens after applying the BPE algorithm to the input sequence of tokens.

ParamTypeDescription
tokensArray.<string>

The input sequence of tokens to encode.


tokenizers~LegacyTokenizerModel

Legacy tokenizer class for tokenizers with only a vocabulary.

Kind: inner class of tokenizers


new LegacyTokenizerModel(config, moreConfig)

Create a LegacyTokenizerModel instance.

ParamTypeDescription
configObject

The configuration object for LegacyTokenizerModel.

config.vocabObject

A (possibly nested) mapping of tokens to ids.

moreConfigObject

Additional configuration object for the LegacyTokenizerModel model.


legacyTokenizerModel.tokens_to_ids : Map.<string, number>

Kind: instance property of LegacyTokenizerModel


*tokenizers~Normalizer*

A base class for text normalization.

Kind: inner abstract class of tokenizers


*new Normalizer(config)*

ParamTypeDescription
configObject

The configuration object for the normalizer.


**normalizer.normalize(text) β‡’ string**

Normalize the input text.

Kind: instance abstract method of Normalizer
Returns: string - The normalized text.
Throws:

  • Error If this method is not implemented in a subclass.
ParamTypeDescription
textstring

The text to normalize.


*normalizer._call(text) β‡’ string*

Alias for Normalizer#normalize.

Kind: instance method of Normalizer
Returns: string - The normalized text.

ParamTypeDescription
textstring

The text to normalize.


*Normalizer.fromConfig(config) β‡’ Normalizer*

Factory method for creating normalizers from config objects.

Kind: static method of Normalizer
Returns: Normalizer - A Normalizer object.
Throws:

  • Error If an unknown Normalizer type is specified in the config.
ParamTypeDescription
configObject

The configuration object for the normalizer.


tokenizers~Replace ⇐ Normalizer

Replace normalizer that replaces occurrences of a pattern with a given string or regular expression.

Kind: inner class of tokenizers
Extends: Normalizer


replace.normalize(text) β‡’ string

Normalize the input text by replacing the pattern with the content.

Kind: instance method of Replace
Returns: string - The normalized text after replacing the pattern with the content.

ParamTypeDescription
textstring

The input text to be normalized.


tokenizers~NFC ⇐ Normalizer

A normalizer that applies Unicode normalization form C (NFC) to the input text.

Kind: inner class of tokenizers
Extends: Normalizer


nfC.normalize(text) β‡’ string

Normalize the input text by applying Unicode normalization form C (NFC).

Kind: instance method of NFC
Returns: string - The normalized text.

ParamTypeDescription
textstring

The input text to be normalized.


tokenizers~NFKD ⇐ Normalizer

NFKD Normalizer.

Kind: inner class of tokenizers
Extends: Normalizer


nfkD.normalize(text) β‡’ string

Normalize text using NFKD normalization.

Kind: instance method of NFKD
Returns: string - The normalized text.

ParamTypeDescription
textstring

The text to be normalized.


tokenizers~StripNormalizer

A normalizer that strips leading and/or trailing whitespace from the input text.

Kind: inner class of tokenizers


stripNormalizer.normalize(text) β‡’ string

Strip leading and/or trailing whitespace from the input text.

Kind: instance method of StripNormalizer
Returns: string - The normalized text.

ParamTypeDescription
textstring

The input text.


tokenizers~StripAccents ⇐ Normalizer

StripAccents normalizer removes all accents from the text.

Kind: inner class of tokenizers
Extends: Normalizer


stripAccents.normalize(text) β‡’ string

Remove all accents from the text.

Kind: instance method of StripAccents
Returns: string - The normalized text without accents.

ParamTypeDescription
textstring

The input text.


tokenizers~Lowercase ⇐ Normalizer

A Normalizer that lowercases the input string.

Kind: inner class of tokenizers
Extends: Normalizer


lowercase.normalize(text) β‡’ string

Lowercases the input string.

Kind: instance method of Lowercase
Returns: string - The normalized text.

ParamTypeDescription
textstring

The text to normalize.


tokenizers~Prepend ⇐ Normalizer

A Normalizer that prepends a string to the input string.

Kind: inner class of tokenizers
Extends: Normalizer


prepend.normalize(text) β‡’ string

Prepends the input string.

Kind: instance method of Prepend
Returns: string - The normalized text.

ParamTypeDescription
textstring

The text to normalize.


tokenizers~NormalizerSequence ⇐ Normalizer

A Normalizer that applies a sequence of Normalizers.

Kind: inner class of tokenizers
Extends: Normalizer


new NormalizerSequence(config)

Create a new instance of NormalizerSequence.

ParamTypeDescription
configObject

The configuration object.

config.normalizersArray.<Object>

An array of Normalizer configuration objects.


normalizerSequence.normalize(text) β‡’ string

Apply a sequence of Normalizers to the input text.

Kind: instance method of NormalizerSequence
Returns: string - The normalized text.

ParamTypeDescription
textstring

The text to normalize.


tokenizers~BertNormalizer ⇐ Normalizer

A class representing a normalizer used in BERT tokenization.

Kind: inner class of tokenizers
Extends: Normalizer


bertNormalizer._tokenize_chinese_chars(text) β‡’ string

Adds whitespace around any CJK (Chinese, Japanese, or Korean) character in the input text.

Kind: instance method of BertNormalizer
Returns: string - The tokenized text with whitespace added around CJK characters.

ParamTypeDescription
textstring

The input text to tokenize.


bertNormalizer._is_chinese_char(cp) β‡’ boolean

Checks whether the given Unicode codepoint represents a CJK (Chinese, Japanese, or Korean) character.

A β€œchinese character” is defined as anything in the CJK Unicode block: https://en.wikipedia.org/wiki/CJK_Unified_Ideographs_(Unicode_block)

Note that the CJK Unicode block is NOT all Japanese and Korean characters, despite its name. The modern Korean Hangul alphabet is a different block, as is Japanese Hiragana and Katakana. Those alphabets are used to write space-separated words, so they are not treated specially and are handled like all other languages.

Kind: instance method of BertNormalizer
Returns: boolean - True if the codepoint represents a CJK character, false otherwise.

ParamTypeDescription
cpnumber

The Unicode codepoint to check.


bertNormalizer.stripAccents(text) β‡’ string

Strips accents from the given text.

Kind: instance method of BertNormalizer
Returns: string - The text with accents removed.

ParamTypeDescription
textstring

The text to strip accents from.


bertNormalizer.normalize(text) β‡’ string

Normalizes the given text based on the configuration.

Kind: instance method of BertNormalizer
Returns: string - The normalized text.

ParamTypeDescription
textstring

The text to normalize.


tokenizers~PreTokenizer ⇐ Callable

A callable class representing a pre-tokenizer used in tokenization. Subclasses should implement the pre_tokenize_text method to define the specific pre-tokenization logic.

Kind: inner class of tokenizers
Extends: Callable


*preTokenizer.pre_tokenize_text(text) β‡’ Array.<string>*

Method that should be implemented by subclasses to define the specific pre-tokenization logic.

Kind: instance abstract method of PreTokenizer
Returns: Array.<string> - The pre-tokenized text.
Throws:

  • Error If the method is not implemented in the subclass.
ParamTypeDescription
textstring

The text to pre-tokenize.


preTokenizer.pre_tokenize(text) β‡’ Array.<string>

Tokenizes the given text into pre-tokens.

Kind: instance method of PreTokenizer
Returns: Array.<string> - An array of pre-tokens.

ParamTypeDescription
textstring | Array<string>

The text or array of texts to pre-tokenize.


preTokenizer._call(text) β‡’ Array.<string>

Alias for PreTokenizer#pre_tokenize.

Kind: instance method of PreTokenizer
Returns: Array.<string> - An array of pre-tokens.

ParamTypeDescription
textstring | Array<string>

The text or array of texts to pre-tokenize.


PreTokenizer.fromConfig(config) β‡’ PreTokenizer

Factory method that returns an instance of a subclass of PreTokenizer based on the provided configuration.

Kind: static method of PreTokenizer
Returns: PreTokenizer - An instance of a subclass of PreTokenizer.
Throws:

  • Error If the provided configuration object does not correspond to any known pre-tokenizer.
ParamTypeDescription
configObject

A configuration object for the pre-tokenizer.


tokenizers~BertPreTokenizer ⇐ PreTokenizer

Kind: inner class of tokenizers
Extends: PreTokenizer


new BertPreTokenizer(config)

A PreTokenizer that splits text into wordpieces using a basic tokenization scheme similar to that used in the original implementation of BERT.

ParamTypeDescription
configObject

The configuration object.


bertPreTokenizer.pre_tokenize_text(text) β‡’ Array.<string>

Tokenizes a single text using the BERT pre-tokenization scheme.

Kind: instance method of BertPreTokenizer
Returns: Array.<string> - An array of tokens.

ParamTypeDescription
textstring

The text to tokenize.


tokenizers~ByteLevelPreTokenizer ⇐ PreTokenizer

A pre-tokenizer that splits text into Byte-Pair-Encoding (BPE) subwords.

Kind: inner class of tokenizers
Extends: PreTokenizer


new ByteLevelPreTokenizer(config)

Creates a new instance of the ByteLevelPreTokenizer class.

ParamTypeDescription
configObject

The configuration object.


byteLevelPreTokenizer.add_prefix_space : boolean

Whether to add a leading space to the first word.This allows to treat the leading word just as any other word.

Kind: instance property of ByteLevelPreTokenizer


byteLevelPreTokenizer.trim_offsets : boolean

Whether the post processing step should trim offsetsto avoid including whitespaces.

Kind: instance property of ByteLevelPreTokenizer
Todo

  • Use this in the pretokenization step.

byteLevelPreTokenizer.use_regex : boolean

Whether to use the standard GPT2 regex for whitespace splitting.Set it to False if you want to use your own splitting. Defaults to true.

Kind: instance property of ByteLevelPreTokenizer


byteLevelPreTokenizer.pre_tokenize_text(text) β‡’ Array.<string>

Tokenizes a single piece of text using byte-level tokenization.

Kind: instance method of ByteLevelPreTokenizer
Returns: Array.<string> - An array of tokens.

ParamTypeDescription
textstring

The text to tokenize.


tokenizers~SplitPreTokenizer ⇐ PreTokenizer

Splits text using a given pattern.

Kind: inner class of tokenizers
Extends: PreTokenizer


new SplitPreTokenizer(config)

ParamTypeDescription
configObject

The configuration options for the pre-tokenizer.

config.patternObject

The pattern used to split the text. Can be a string or a regex object.

config.pattern.Stringstring | undefined

The string to use for splitting. Only defined if the pattern is a string.

config.pattern.Regexstring | undefined

The regex to use for splitting. Only defined if the pattern is a regex.

config.behaviorSplitDelimiterBehavior

The behavior to use when splitting.

config.invertboolean

Whether to split (invert=false) or match (invert=true) the pattern.


splitPreTokenizer.pre_tokenize_text(text) β‡’ Array.<string>

Tokenizes text by splitting it using the given pattern.

Kind: instance method of SplitPreTokenizer
Returns: Array.<string> - An array of tokens.

ParamTypeDescription
textstring

The text to tokenize.


tokenizers~PunctuationPreTokenizer ⇐ PreTokenizer

Splits text based on punctuation.

Kind: inner class of tokenizers
Extends: PreTokenizer


new PunctuationPreTokenizer(config)

ParamTypeDescription
configObject

The configuration options for the pre-tokenizer.

config.behaviorSplitDelimiterBehavior

The behavior to use when splitting.


punctuationPreTokenizer.pre_tokenize_text(text) β‡’ Array.<string>

Tokenizes text by splitting it using the given pattern.

Kind: instance method of PunctuationPreTokenizer
Returns: Array.<string> - An array of tokens.

ParamTypeDescription
textstring

The text to tokenize.


tokenizers~DigitsPreTokenizer ⇐ PreTokenizer

Splits text based on digits.

Kind: inner class of tokenizers
Extends: PreTokenizer


new DigitsPreTokenizer(config)

ParamTypeDescription
configObject

The configuration options for the pre-tokenizer.

config.individual_digitsboolean

Whether to split on individual digits.


digitsPreTokenizer.pre_tokenize_text(text) β‡’ Array.<string>

Tokenizes text by splitting it using the given pattern.

Kind: instance method of DigitsPreTokenizer
Returns: Array.<string> - An array of tokens.

ParamTypeDescription
textstring

The text to tokenize.


tokenizers~PostProcessor ⇐ Callable

Kind: inner class of tokenizers
Extends: Callable


new PostProcessor(config)

ParamTypeDescription
configObject

The configuration for the post-processor.


postProcessor.post_process(tokens, ...args) β‡’ Array

Method to be implemented in subclass to apply post-processing on the given tokens.

Kind: instance method of PostProcessor
Returns: Array - The post-processed tokens.
Throws:

  • Error If the method is not implemented in subclass.
ParamTypeDescription
tokensArray

The input tokens to be post-processed.

...args*

Additional arguments required by the post-processing logic.


postProcessor._call(tokens, ...args) β‡’ Array

Alias for PostProcessor#post_process.

Kind: instance method of PostProcessor
Returns: Array - An array of post-processed tokens.

ParamTypeDescription
tokensArray

The text or array of texts to post-process.

...args*

Additional arguments required by the post-processing logic.


PostProcessor.fromConfig(config) β‡’ PostProcessor

Factory method to create a PostProcessor object from a configuration object.

Kind: static method of PostProcessor
Returns: PostProcessor - A PostProcessor object created from the given configuration.
Throws:

  • Error If an unknown PostProcessor type is encountered.
ParamTypeDescription
configObject

Configuration object representing a PostProcessor.


tokenizers~BertProcessing

A post-processor that adds special tokens to the beginning and end of the input.

Kind: inner class of tokenizers


new BertProcessing(config)

ParamTypeDescription
configObject

The configuration for the post-processor.

config.clsArray.<string>

The special tokens to add to the beginning of the input.

config.sepArray.<string>

The special tokens to add to the end of the input.


bertProcessing.post_process(tokens, tokens_pair) β‡’ Array.<string>

Adds the special tokens to the beginning and end of the input.

Kind: instance method of BertProcessing
Returns: Array.<string> - The input tokens with the special tokens added to the beginning and end.

ParamTypeDefaultDescription
tokensArray.<string>

The input tokens.

tokens_pairArray<string> | null

An optional second set of input tokens.


tokenizers~TemplateProcessing ⇐ PostProcessor

Post processor that replaces special tokens in a template with actual tokens.

Kind: inner class of tokenizers
Extends: PostProcessor


new TemplateProcessing(config)

Creates a new instance of TemplateProcessing.

ParamTypeDescription
configObject

The configuration options for the post processor.

config.singleArray

The template for a single sequence of tokens.

config.pairArray

The template for a pair of sequences of tokens.


templateProcessing.post_process(tokens, [tokens_pair]) β‡’ Array

Replaces special tokens in the template with actual tokens.

Kind: instance method of TemplateProcessing
Returns: Array - The list of tokens with the special tokens replaced with actual tokens.

ParamTypeDefaultDescription
tokensArray

The list of tokens for the first sequence.

[tokens_pair]Array

The list of tokens for the second sequence (optional).


tokenizers~ByteLevelPostProcessor ⇐ PostProcessor

A PostProcessor that returns the given tokens as is.

Kind: inner class of tokenizers
Extends: PostProcessor


byteLevelPostProcessor.post_process(tokens) β‡’ Array.<string>

Post process the given tokens.

Kind: instance method of ByteLevelPostProcessor
Returns: Array.<string> - The post processed tokens.

ParamTypeDescription
tokensArray.<string>

The tokens to be post processed.


tokenizers~Decoder ⇐ Callable

The base class for token decoders.

Kind: inner class of tokenizers
Extends: Callable


new Decoder(config)

Creates an instance of Decoder.

ParamTypeDescription
configObject

The configuration object.


decoder._call(tokens) β‡’ string

Calls the decode method.

Kind: instance method of Decoder
Returns: string - The decoded string.

ParamTypeDescription
tokensArray.<string>

The list of tokens.


decoder.decode(tokens) β‡’ string

Decodes a list of tokens.

Kind: instance method of Decoder
Returns: string - The decoded string.

ParamTypeDescription
tokensArray.<string>

The list of tokens.


decoder.decode_chain(tokens) β‡’ Array.<string>

Apply the decoder to a list of tokens.

Kind: instance method of Decoder
Returns: Array.<string> - The decoded list of tokens.
Throws:

  • Error If the `decode_chain` method is not implemented in the subclass.
ParamTypeDescription
tokensArray.<string>

The list of tokens.


Decoder.fromConfig(config) β‡’ Decoder

Creates a decoder instance based on the provided configuration.

Kind: static method of Decoder
Returns: Decoder - A decoder instance.
Throws:

  • Error If an unknown decoder type is provided.
ParamTypeDescription
configObject

The configuration object.


tokenizers~FuseDecoder

Fuse simply fuses all tokens into one big string. It’s usually the last decoding step anyway, but this decoder exists incase some decoders need to happen after that step

Kind: inner class of tokenizers


fuseDecoder.decode_chain() : *

Kind: instance method of FuseDecoder


tokenizers~WordPieceDecoder ⇐ Decoder

A decoder that decodes a list of WordPiece tokens into a single string.

Kind: inner class of tokenizers
Extends: Decoder


new WordPieceDecoder(config)

Creates a new instance of WordPieceDecoder.

ParamTypeDescription
configObject

The configuration object.

config.prefixstring

The prefix used for WordPiece encoding.

config.cleanupboolean

Whether to cleanup the decoded string.


wordPieceDecoder.decode_chain() : *

Kind: instance method of WordPieceDecoder


tokenizers~ByteLevelDecoder ⇐ Decoder

Byte-level decoder for tokenization output. Inherits from the Decoder class.

Kind: inner class of tokenizers
Extends: Decoder


new ByteLevelDecoder(config)

Create a ByteLevelDecoder object.

ParamTypeDescription
configObject

Configuration object.


byteLevelDecoder.convert_tokens_to_string(tokens) β‡’ string

Convert an array of tokens to string by decoding each byte.

Kind: instance method of ByteLevelDecoder
Returns: string - The decoded string.

ParamTypeDescription
tokensArray.<string>

Array of tokens to be decoded.


byteLevelDecoder.decode_chain() : *

Kind: instance method of ByteLevelDecoder


tokenizers~CTCDecoder

The CTC (Connectionist Temporal Classification) decoder. See https://github.com/huggingface/tokenizers/blob/bb38f390a61883fc2f29d659af696f428d1cda6b/tokenizers/src/decoders/ctc.rs

Kind: inner class of tokenizers


ctcDecoder.convert_tokens_to_string(tokens) β‡’ string

Converts a connectionist-temporal-classification (CTC) output tokens into a single string.

Kind: instance method of CTCDecoder
Returns: string - The decoded string.

ParamTypeDescription
tokensArray.<string>

Array of tokens to be decoded.


ctcDecoder.decode_chain() : *

Kind: instance method of CTCDecoder


tokenizers~DecoderSequence ⇐ Decoder

Apply a sequence of decoders.

Kind: inner class of tokenizers
Extends: Decoder


new DecoderSequence(config)

Creates a new instance of DecoderSequence.

ParamTypeDescription
configObject

The configuration object.

config.decodersArray.<Decoder>

The list of decoders to apply.


decoderSequence.decode_chain() : *

Kind: instance method of DecoderSequence


tokenizers~MetaspacePreTokenizer ⇐ PreTokenizer

This PreTokenizer replaces spaces with the given replacement character, adds a prefix space if requested, and returns a list of tokens.

Kind: inner class of tokenizers
Extends: PreTokenizer


new MetaspacePreTokenizer(config)

ParamTypeDefaultDescription
configObject

The configuration object for the MetaspacePreTokenizer.

config.add_prefix_spaceboolean

Whether to add a prefix space to the first token.

config.replacementstring

The character to replace spaces with.

[config.str_rep]string"config.replacement"

An optional string representation of the replacement character.


metaspacePreTokenizer.pre_tokenize(normalizedTokens) β‡’ Array.<string>

This method takes a list of normalized tokens, replaces spaces with the replacement character, adds a prefix space if requested, and returns a new list of tokens.

Kind: instance method of MetaspacePreTokenizer
Returns: Array.<string> - A new list of pre-tokenized tokens.

ParamTypeDescription
normalizedTokensArray<string> | string

The list of normalized tokens to pre-tokenize.


tokenizers~MetaspaceDecoder ⇐ Decoder

MetaspaceDecoder class extends the Decoder class and decodes Metaspace tokenization.

Kind: inner class of tokenizers
Extends: Decoder


new MetaspaceDecoder(config)

Constructs a new MetaspaceDecoder object.

ParamTypeDescription
configObject

The configuration object for the MetaspaceDecoder.

config.add_prefix_spaceboolean

Whether to add a prefix space to the decoded string.

config.replacementstring

The string to replace spaces with.


metaspaceDecoder.decode_chain() : *

Kind: instance method of MetaspaceDecoder


tokenizers~Precompiled ⇐ Normalizer

A normalizer that applies a precompiled charsmap. This is useful for applying complex normalizations in C++ and exposing them to JavaScript.

Kind: inner class of tokenizers
Extends: Normalizer


new Precompiled(config)

Create a new instance of Precompiled normalizer.

ParamTypeDescription
configObject

The configuration object for the Precompiled normalizer.

config.precompiled_charsmapObject

The precompiled charsmap object.


precompiled.normalize(text) β‡’ string

Normalizes the given text by applying the precompiled charsmap.

Kind: instance method of Precompiled
Returns: string - The normalized text.

ParamTypeDescription
textstring

The text to normalize.


tokenizers~PreTokenizerSequence ⇐ PreTokenizer

A pre-tokenizer that applies a sequence of pre-tokenizers to the input text.

Kind: inner class of tokenizers
Extends: PreTokenizer


new PreTokenizerSequence(config)

Creates an instance of PreTokenizerSequence.

ParamTypeDescription
configObject

The configuration object for the pre-tokenizer sequence.

config.pretokenizersArray.<Object>

An array of pre-tokenizer configurations.


preTokenizerSequence.pre_tokenize_text(text) β‡’ Array.<string>

Applies each pre-tokenizer in the sequence to the input text in turn.

Kind: instance method of PreTokenizerSequence
Returns: Array.<string> - The pre-tokenized text.

ParamTypeDescription
textstring | Array<string>

The text(s) to pre-tokenize.


tokenizers~WhitespaceSplit ⇐ PreTokenizer

Splits a string of text by whitespace characters into individual tokens.

Kind: inner class of tokenizers
Extends: PreTokenizer


new WhitespaceSplit(config)

Creates an instance of WhitespaceSplit.

ParamTypeDescription
configObject

The configuration object for the pre-tokenizer sequence.


whitespaceSplit.pre_tokenize_text(text) β‡’ Array.<string>

Pre-tokenizes the input text by splitting it on whitespace characters.

Kind: instance method of WhitespaceSplit
Returns: Array.<string> - An array of tokens produced by splitting the input text on whitespace.

ParamTypeDescription
textstring

The text to be pre-tokenized.


tokenizers~ReplacePreTokenizer

Kind: inner class of tokenizers


new ReplacePreTokenizer(config)

ParamTypeDescription
configObject

The configuration options for the pre-tokenizer.

config.patternObject

The pattern used to split the text. Can be a string or a regex object.

config.contentstring

What to replace the pattern with.


replacePreTokenizer.pre_tokenize_text(text) β‡’ Array.<string>

Pre-tokenizes the input text by replacing certain characters.

Kind: instance method of ReplacePreTokenizer
Returns: Array.<string> - An array of tokens produced by replacing certain characters.

ParamTypeDescription
textstring

The text to be pre-tokenized.


tokenizers~BYTES_TO_UNICODE β‡’ Object

Returns list of utf-8 byte and a mapping to unicode strings. Specifically avoids mapping to whitespace/control characters the BPE code barfs on.

Kind: inner constant of tokenizers
Returns: Object - Object with utf-8 byte keys and unicode string values.


tokenizers~loadTokenizer(pretrained_model_name_or_path, options) β‡’ Promise.<Array>

Loads a tokenizer from the specified path.

Kind: inner method of tokenizers
Returns: Promise.<Array> - A promise that resolves with information about the loaded tokenizer.

ParamTypeDescription
pretrained_model_name_or_pathstring

The path to the tokenizer directory.

optionsPretrainedOptions

Additional options for loading the tokenizer.


tokenizers~createPattern(pattern, invert) β‡’ RegExp | string | null

Helper method to construct a pattern from a config object.

Kind: inner method of tokenizers
Returns: RegExp | string | null - The compiled pattern.

ParamTypeDefaultDescription
patternObject

The pattern object.

invertbooleantrue

Whether to invert the pattern (only applicable for Regex patterns).


tokenizers~objectToMap(obj) β‡’ Map.<string, any>

Helper function to convert an Object to a Map

Kind: inner method of tokenizers
Returns: Map.<string, any> - The map.

ParamTypeDescription
objObject

The object to convert.


tokenizers~clean_up_tokenization(text) β‡’ string

Clean up a list of simple English tokenization artifacts like spaces before punctuations and abbreviated forms

Kind: inner method of tokenizers
Returns: string - The cleaned up text.

ParamTypeDescription
textstring

The text to clean up.


tokenizers~remove_accents(text) β‡’ string

Helper function to remove accents from a string.

Kind: inner method of tokenizers
Returns: string - The text with accents removed.

ParamTypeDescription
textstring

The text to remove accents from.


tokenizers~lowercase_and_remove_accent(text) β‡’ string

Helper function to lowercase a string and remove accents.

Kind: inner method of tokenizers
Returns: string - The lowercased text with accents removed.

ParamTypeDescription
textstring

The text to lowercase and remove accents from.


tokenizers~fuse(arr, value)

Helper function to fuse consecutive values in an array equal to the specified value.

Kind: inner method of tokenizers

ParamTypeDescription
arrArray

The input array

valueany

The value to fuse on.


tokenizers~whitespace_split(text) β‡’ Array.<string>

Split a string on whitespace.

Kind: inner method of tokenizers
Returns: Array.<string> - The split string.

ParamTypeDescription
textstring

The text to split.


tokenizers~add_token_types(inputs) β‡’ Object

Helper method for adding token_type_ids to model inputs

Kind: inner method of tokenizers
Returns: Object - The prepared inputs object.

ParamTypeDescription
inputsObject

An object containing the input ids and attention mask.


tokenizers~PretrainedOptions : *

Kind: inner typedef of tokenizers


tokenizers~BPENode : Object

Kind: inner typedef of tokenizers
Properties

NameTypeDescription
tokenstring

The token associated with the node

biasnumber

A positional bias for the node.

[score]number

The score of the node.

[prev]BPENode

The previous node in the linked list.

[next]BPENode

The next node in the linked list.


tokenizers~SplitDelimiterBehavior : 'removed' | 'isolated' | 'mergedWithPrevious' | 'mergedWithNext' | 'contiguous'

Kind: inner typedef of tokenizers