Transformers.js documentation

utils/data-structures

Hugging Face's logo
Join the Hugging Face community

and get access to the augmented documentation experience

to get started

utils/data-structures

Custom data structures.

These are only used internally, meaning an end-user shouldn’t need to access anything here.


utils/data-structures.PriorityQueue

Efficient Heap-based Implementation of a Priority Queue. It uses an array-based binary heap, where the root is at index 0, and the children of node i are located at indices 2i + 1 and 2i + 2, respectively.

Adapted from the following sources:

Kind: static class of utils/data-structures


new PriorityQueue(comparator)

Create a new PriorityQueue.

ParamTypeDescription
comparatorfunction

Comparator function to determine priority. Defaults to a MaxHeap.


priorityQueue.size

The size of the queue

Kind: instance property of PriorityQueue


priorityQueue.isEmpty() β‡’ <code> boolean </code>

Check if the queue is empty.

Kind: instance method of PriorityQueue
Returns: boolean - true if the queue is empty, false otherwise.


priorityQueue.peek() β‡’ <code> any </code>

Return the element with the highest priority in the queue.

Kind: instance method of PriorityQueue
Returns: any - The highest priority element in the queue.


priorityQueue.push(...values) β‡’ <code> number </code>

Add one or more elements to the queue.

Kind: instance method of PriorityQueue
Returns: number - The new size of the queue.

ParamTypeDescription
...valuesany

The values to push into the queue.


priorityQueue.extend(values) β‡’ <code> number </code>

Add multiple elements to the queue.

Kind: instance method of PriorityQueue
Returns: number - The new size of the queue.

ParamTypeDescription
valuesArray.<any>

The values to push into the queue.


priorityQueue.pop() β‡’ <code> any </code>

Remove and return the element with the highest priority in the queue.

Kind: instance method of PriorityQueue
Returns: any - The element with the highest priority in the queue.


priorityQueue.replace(value) β‡’ <code> * </code>

Replace the element with the highest priority in the queue with a new value.

Kind: instance method of PriorityQueue
Returns: * - The replaced value.

ParamTypeDescription
value*

The new value.


utils/data-structures.CharTrie

A trie structure to efficiently store and search for strings.

Kind: static class of utils/data-structures


charTrie.extend(texts)

Adds one or more texts to the trie.

Kind: instance method of CharTrie

ParamTypeDescription
textsArray.<string>

The strings to add to the trie.


charTrie.push(text)

Adds text to the trie.

Kind: instance method of CharTrie

ParamTypeDescription
textstring

The string to add to the trie.


charTrie.commonPrefixSearch(text)

Searches the trie for all strings with a common prefix of text.

Kind: instance method of CharTrie

ParamTypeDescription
textstring

The common prefix to search for.


utils/data-structures.TokenLattice

A lattice data structure to be used for tokenization.

Kind: static class of utils/data-structures


new TokenLattice(sentence, bosTokenId, eosTokenId)

Creates a new TokenLattice instance.

ParamTypeDescription
sentencestring

The input sentence to be tokenized.

bosTokenIdnumber

The beginning-of-sequence token ID.

eosTokenIdnumber

The end-of-sequence token ID.


tokenLattice.insert(pos, length, score, tokenId)

Inserts a new token node into the token lattice.

Kind: instance method of TokenLattice

ParamTypeDescription
posnumber

The starting position of the token.

lengthnumber

The length of the token.

scorenumber

The score of the token.

tokenIdnumber

The token ID of the token.


tokenLattice.viterbi() β‡’ <code> Array. < TokenLatticeNode > </code>

Implements the Viterbi algorithm to compute the most likely sequence of tokens.

Kind: instance method of TokenLattice
Returns: Array.<TokenLatticeNode> - The array of nodes representing the most likely sequence of tokens.


tokenLattice.piece(node) β‡’ <code> string </code>

Kind: instance method of TokenLattice
Returns: string - The array of nodes representing the most likely sequence of tokens.

ParamType
nodeTokenLatticeNode

tokenLattice.tokens() β‡’ <code> Array </code>

Kind: instance method of TokenLattice
Returns: Array - The array of nodes representing the most likely sequence of tokens.


tokenLattice.tokenIds() β‡’ <code> Array </code>

Kind: instance method of TokenLattice
Returns: Array - The array of nodes representing the most likely sequence of tokens.


utils/data-structures~CharTrieNode

Represents a node in a character trie.

Kind: inner class of utils/data-structures


new CharTrieNode(isLeaf, children)

Create a new CharTrieNode.

ParamTypeDescription
isLeafboolean

Whether the node is a leaf node or not.

childrenMap.<string, CharTrieNode>

A map containing the node's children, where the key is a character and the value is a CharTrieNode.


CharTrieNode.default() β‡’ <code> CharTrieNode </code>

Returns a new CharTrieNode instance with default values.

Kind: static method of CharTrieNode
Returns: CharTrieNode - A new CharTrieNode instance with isLeaf set to false and an empty children map.


utils/data-structures~TokenLatticeNode

Kind: inner class of utils/data-structures


new TokenLatticeNode(tokenId, nodeId, pos, length, score)

Represents a node in a token lattice for a given sentence.

ParamTypeDescription
tokenIdnumber

The ID of the token associated with this node.

nodeIdnumber

The ID of this node.

posnumber

The starting position of the token in the sentence.

lengthnumber

The length of the token.

scorenumber

The score associated with the token.


tokenLatticeNode.clone() β‡’ <code> TokenLatticeNode </code>

Returns a clone of this node.

Kind: instance method of TokenLatticeNode
Returns: TokenLatticeNode - A clone of this node.


< > Update on GitHub