TokenMonster
Last updated
Copyright Continuum Labs - 2023
TokenMonster is an ungreedy subword tokenizer and vocabulary generator designed to improve the efficiency and performance of language models.
It selects an optimal vocabulary for a given dataset, resulting in up to 37.5% fewer tokens required to represent text compared to other modern tokenizing methods. This allows for faster inference, training, and longer text generation.
Ungreedy tokenization algorithm that follows up to 6 parallel branches
Supports 5 optimisation modes: unfiltered, clean, balanced, consistent, strict
Uses capcode marker tokens to encode uppercasing and forward delete
Identifies words, subwords, common phrases, and figures of speech
Achieves up to 7 characters per token depending on vocabulary size and optimization mode
Provides 422 pretrained vocabularies and tools to train custom vocabularies
Implementations available in Go, Python, and JavaScript
Choose a suitable pretrained vocabulary based on your dataset (e.g., code, English, fiction), desired vocabulary size, and optimization mode. Alternatively, train a custom vocabulary using the provided tools.
Install the TokenMonster library in your preferred language (Go, Python, or JavaScript).
Load the selected vocabulary:
Tokenize your text using the loaded vocabulary:
Integrate the tokenized text into your language model training or inference pipeline to benefit from the optimized vocabulary and improved efficiency.
By using TokenMonster, you can potentially reduce the vocabulary size of your language model by 50-75% while maintaining or improving performance.
This frees up resources that can be used to make the model smarter and faster.
The ungreedy tokenization algorithm and carefully selected vocabularies enable more efficient usage of embeddings and simpler grammar for the model to learn.
An explanation
Objective: Build a domain-specific tokenizer for medical text to improve the efficiency and accuracy of a fine-tuned language model for medical question answering.
Gather a large corpus of medical text, such as medical research papers, clinical notes, and medical textbooks.
Ensure the dataset is representative of the medical domain and covers various medical specialties and terminology.
Clean the dataset by removing any irrelevant information, such as headers, footers, or metadata.
Normalize the text by handling special characters, converting to lowercase, and addressing any domain-specific formatting.
Prepare a YAML configuration file specifying the desired vocabulary size (e.g., 32,000 tokens), optimization mode (e.g., "consistent"), and any additional settings.
Create a new TokenMonster vocabulary using the preprocessed medical text dataset:
Fine-tune a pre-trained language model (e.g., BERT, RoBERTa) on the tokenized medical text dataset.
During fine-tuning, use the TokenMonster vocabulary to tokenize the input text and convert the model's output tokens back to text.
Load the fine-tuned medical language model.
For inference, tokenize the input medical questions using the TokenMonster tokenizer:
Feed the tokenized question to the fine-tuned model and obtain the predicted answer tokens.
Decode the predicted answer tokens back to text using the TokenMonster tokenizer:
Evaluate the model's performance using appropriate metrics for medical question answering, such as accuracy, F1 score, or BLEU score.
By incorporating TokenMonster into your workflow, you can create domain-specific tokenizers that capture the unique vocabulary and patterns of your target domain. This can lead to improved efficiency and accuracy in fine-tuning language models for specialized tasks, such as medical question answering, legal document analysis, or scientific text generation.
Remember to evaluate the performance of your fine-tuned model and iterate on the tokenizer training and model fine-tuning process to achieve the best results for your specific use case.