Skip to main content

Tokeniser toolkit: a collection of Pythonic subword tokenisers and supporting tools.

Project description

TkTkT

A collection of Pythonic subword tokenisers.

Pronunciation

The acronym stands for ToKeniser ToolKiT and is supposed to be pronounced fast and with beatbox hi-hats (kind of like "tuh-kuh-tuh-kuh-ts" but as fast as you can). It is mandatory that you do this, because I said so.

Installation

Because this project relies on the bpe_knockout package, follow its installation instructions first. After that, install fiject.

After that, follow the exact same instructions as for fiject but for this package.

Architecture

The goal of TkTkT is to provide a straightforward Pythonic interface for everything-tokenisation, and to be as object-oriented as possible. The main interfaces are found under tktkt.interfaces.

Fundamentally, all tokenisers are a Tokeniser that have a Preprocessor.

  • The Tokeniser class has two important methods:

    • .tokenise(pretoken: str) -> List[str]: segments a string as-is into parts.
    • .prepareAndTokenise(text: str) -> List[str]: applies the tokeniser's preprocessor and then tokenises each pre-token separately.
  • The Preprocessor class is a pipeline of three components: a non-invertible text mapping, an invertible text mapping, and a pretokeniser that splits strings into smaller strings.

Examples

KudoPiece (ULM)

Let's say you want to train and load an English ULM tokeniser, which is notorious for being a convoluted process. In TkTkT, that would go like this (note that ULM is called "KudoPiece" in TkTkT because it is a less ambiguous name):

from tktkt.models.kudopiece.training import *
from string import ascii_letters


sentence_corpus = ...

def train():
    args_alpha = KudoPieceArguments_Alphabet(
        required_chars=[l for l in ascii_letters], 
        byte_fallback=True, 
        character_coverage=0.9995
    )
    args_algo = KudoPieceArguments_Algorithm()

    trainer = KudoPieceTrainer(
        word_boundary_location=SpaceMarkerLocation.START,
        final_vocab_size=40_000,
        alphabet_arguments=args_alpha,
        algorithm_arguments=args_algo,
        file_stem="kudopiece_en"
    )
    return trainer.train_from_iterator(sentence_corpus, strings_need_space_splitting=True)


from tktkt.models.kudopiece.segmentation import KudoPieceTokeniser
from tktkt.preparation.instances import IdentityMapper, AppendSpace, IdentityPretokeniser, Preprocessor

def load(model_path: Path):    
    preprocessor = Preprocessor(
        IdentityMapper(), 
        AppendSpace(front_not_back=True), 
        IdentityPretokeniser()
    )
    return KudoPieceTokeniser(preprocessor, model_path)

model_path = train()
## The location of your model will look like this:
# from tktkt.files.paths import DataPaths
# model_path = DataPaths.pathToModels() / "kudopiece_en" / "kudopiece_en_xxxx-yy-zz_aa-bb-cc.model"
tk = load(model_path)

Why does this exist if we have HuggingFace tokenizers?

First of all, note that TkTkT has backwards compatibility with HuggingFace tokenizers. There are wrapper classes for tokenisers and pretokenisers under tktkt.models.huggingface.

Here's a non-exhaustive list of reasons:

  • The HuggingFace tokenizers library has horrifically un(der)documented Python interfaces, so programming with it is a nightmare.
  • The tokenizers.pre_tokenizers submodule has so much technical debt that it can't be patched. Some examples:
    • The mapping from Unicode codepoints to UTF-8 bytes, as first used in GPT-2, is only implemented in the ByteLevel pretokeniser. Yet, it is concerned with more than this, since it splits on spaces and punctuation (optionally prefixed by a space) before applying the mapping. This is wrong for at least three reasons: users of the byte mapping don't necessary want the string to be split, it synonymises prefixed spaces (converted to Ġ) with start-of-word boundaries whilst actually all words (even those directly preceded by punctuation) should be marked with such a boundary, and it assumes that such boundaries should always be at the start of a word.
    • The GPT-2 convention of having a word boundary at the start of (almost) all words is hardcoded throughout transformers and tokenizers (with options that commonly look like add_prefix_space) even though the original BPE paper used word boundaries at the end of words (</w>). Only supporting the start-of-word convention is bad because this deteriorates downstream performance for e.g. Germanic languages, where a compound has its head at the end and hence it should be allowed to tokenise the head with the exact same tokens as it would be if it was isolated.
  • Weird holdovers like the Precompiled normaliser that allow even less insight into what's happening.
  • In the little documentation that does exist (e.g. for WordPiece and KudoPiece), there are so many theoretical inaccuracies that we shouldn't even have confidence in anything that isn't a BPE tokeniser implemented by them. Their explanation for KudoPiece, an algorithm which itself was already poorly explained originally, is so wrong it is actually painful.
  • They offer very few core models (basically only BPE and KudoPiece, which sentencepiece already offers and keeps much more updated) whilst there exist many more in the literature, and the likelihood that someone who knows the literature comes along to implement all of them in C++ is rather low.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tktkt-2024.3.1.tar.gz (54.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tktkt-2024.3.1-py3-none-any.whl (64.1 kB view details)

Uploaded Python 3

File details

Details for the file tktkt-2024.3.1.tar.gz.

File metadata

  • Download URL: tktkt-2024.3.1.tar.gz
  • Upload date:
  • Size: 54.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.5 cpython/3.13.12 HTTPX/0.28.1

File hashes

Hashes for tktkt-2024.3.1.tar.gz
Algorithm Hash digest
SHA256 124c513e578caa4a6f5bd2c874fa712c8e99e070ee11f71bc057b93b2c1fcd5d
MD5 403fb9c76a3a5a9c424416764e370ca3
BLAKE2b-256 512c4d11badc2eea7a45edd49ceecfbe1979e163a5b43f4da54984f69666b971

See more details on using hashes here.

File details

Details for the file tktkt-2024.3.1-py3-none-any.whl.

File metadata

  • Download URL: tktkt-2024.3.1-py3-none-any.whl
  • Upload date:
  • Size: 64.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.5 cpython/3.13.12 HTTPX/0.28.1

File hashes

Hashes for tktkt-2024.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3074759a17984adc29dd9785e7c15c71c7902141151c0cfe985638dd6a90e440
MD5 96cdbe918780351aef2c6df6b7ed03d1
BLAKE2b-256 54f24dea0a74c9f9c7a6eda77f05dd68c1b29769f86369588f32a438329b6b62

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page