Skip to main content

Fast and Customizable Tokenizers

Project description



Build GitHub


Tokenizers

Provides an implementation of today's most used tokenizers, with a focus on performance and versatility.

Bindings over the Rust implementation. If you are interested in the High-level design, you can go check it there.

Otherwise, let's dive in!

Main features:

  • Train new vocabularies and tokenize using 4 pre-made tokenizers (Bert WordPiece and the 3 most common BPE versions).
  • Extremely fast (both training and tokenization), thanks to the Rust implementation. Takes less than 20 seconds to tokenize a GB of text on a server's CPU.
  • Easy to use, but also extremely versatile.
  • Designed for research and production.
  • Normalization comes with alignments tracking. It's always possible to get the part of the original sentence that corresponds to a given token.
  • Does all the pre-processing: Truncate, Pad, add the special tokens your model needs.

Installation

With pip:

pip install tokenizers

From sources:

To use this method, you need to have the Rust installed:

# Install with:
curl https://sh.rustup.rs -sSf | sh -s -- -y
export PATH="$HOME/.cargo/bin:$PATH"

Once Rust is installed, you can compile doing the following

git clone https://github.com/huggingface/tokenizers
cd tokenizers/bindings/python

# Create a virtual env (you can use yours as well)
python -m venv .env
source .env/bin/activate

# Install `tokenizers` in the current virtual env
pip install setuptools_rust
python setup.py install

Load a pretrained tokenizer from the Hub

from tokenizers import Tokenizer

tokenizer = Tokenizer.from_pretrained("bert-base-cased")

Using the provided Tokenizers

We provide some pre-build tokenizers to cover the most common cases. You can easily load one of these using some vocab.json and merges.txt files:

from tokenizers import CharBPETokenizer

# Initialize a tokenizer
vocab = "./path/to/vocab.json"
merges = "./path/to/merges.txt"
tokenizer = CharBPETokenizer(vocab, merges)

# And then encode:
encoded = tokenizer.encode("I can feel the magic, can you?")
print(encoded.ids)
print(encoded.tokens)

And you can train them just as simply:

from tokenizers import CharBPETokenizer

# Initialize a tokenizer
tokenizer = CharBPETokenizer()

# Then train it!
tokenizer.train([ "./path/to/files/1.txt", "./path/to/files/2.txt" ])

# Now, let's use it:
encoded = tokenizer.encode("I can feel the magic, can you?")

# And finally save it somewhere
tokenizer.save("./path/to/directory/my-bpe.tokenizer.json")

Provided Tokenizers

  • CharBPETokenizer: The original BPE
  • ByteLevelBPETokenizer: The byte level version of the BPE
  • SentencePieceBPETokenizer: A BPE implementation compatible with the one used by SentencePiece
  • BertWordPieceTokenizer: The famous Bert tokenizer, using WordPiece

All of these can be used and trained as explained above!

Build your own

Whenever these provided tokenizers don't give you enough freedom, you can build your own tokenizer, by putting all the different parts you need together. You can check how we implemented the provided tokenizers and adapt them easily to your own needs.

Building a byte-level BPE

Here is an example showing how to build your own byte-level BPE by putting all the different pieces together, and then saving it to a single file:

from tokenizers import Tokenizer, models, pre_tokenizers, decoders, trainers, processors

# Initialize a tokenizer
tokenizer = Tokenizer(models.BPE())

# Customize pre-tokenization and decoding
tokenizer.pre_tokenizer = pre_tokenizers.ByteLevel(add_prefix_space=True)
tokenizer.decoder = decoders.ByteLevel()
tokenizer.post_processor = processors.ByteLevel(trim_offsets=True)

# And then train
trainer = trainers.BpeTrainer(
    vocab_size=20000,
    min_frequency=2,
    initial_alphabet=pre_tokenizers.ByteLevel.alphabet()
)
tokenizer.train([
    "./path/to/dataset/1.txt",
    "./path/to/dataset/2.txt",
    "./path/to/dataset/3.txt"
], trainer=trainer)

# And Save it
tokenizer.save("byte-level-bpe.tokenizer.json", pretty=True)

Now, when you want to use this tokenizer, this is as simple as:

from tokenizers import Tokenizer

tokenizer = Tokenizer.from_file("byte-level-bpe.tokenizer.json")

encoded = tokenizer.encode("I can feel the magic, can you?")

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

tokenizers-0.13.0.tar.gz (358.7 kB view hashes)

Uploaded Source

Built Distributions

tokenizers-0.13.0-cp310-cp310-win_amd64.whl (3.3 MB view hashes)

Uploaded CPython 3.10 Windows x86-64

tokenizers-0.13.0-cp310-cp310-win32.whl (3.0 MB view hashes)

Uploaded CPython 3.10 Windows x86

tokenizers-0.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.9 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

tokenizers-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.3 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

tokenizers-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

tokenizers-0.13.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (7.0 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

tokenizers-0.13.0-cp310-cp310-macosx_12_0_arm64.whl (3.6 MB view hashes)

Uploaded CPython 3.10 macOS 12.0+ ARM64

tokenizers-0.13.0-cp310-cp310-macosx_10_11_x86_64.whl (3.8 MB view hashes)

Uploaded CPython 3.10 macOS 10.11+ x86-64

tokenizers-0.13.0-cp39-cp39-win_amd64.whl (3.3 MB view hashes)

Uploaded CPython 3.9 Windows x86-64

tokenizers-0.13.0-cp39-cp39-win32.whl (3.0 MB view hashes)

Uploaded CPython 3.9 Windows x86

tokenizers-0.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.9 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

tokenizers-0.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.3 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

tokenizers-0.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

tokenizers-0.13.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (7.0 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

tokenizers-0.13.0-cp39-cp39-macosx_12_0_arm64.whl (3.6 MB view hashes)

Uploaded CPython 3.9 macOS 12.0+ ARM64

tokenizers-0.13.0-cp39-cp39-macosx_10_11_x86_64.whl (3.8 MB view hashes)

Uploaded CPython 3.9 macOS 10.11+ x86-64

tokenizers-0.13.0-cp38-cp38-win_amd64.whl (3.3 MB view hashes)

Uploaded CPython 3.8 Windows x86-64

tokenizers-0.13.0-cp38-cp38-win32.whl (3.0 MB view hashes)

Uploaded CPython 3.8 Windows x86

tokenizers-0.13.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.9 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

tokenizers-0.13.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.3 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

tokenizers-0.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

tokenizers-0.13.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (7.0 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

tokenizers-0.13.0-cp38-cp38-macosx_10_11_x86_64.whl (3.8 MB view hashes)

Uploaded CPython 3.8 macOS 10.11+ x86-64

tokenizers-0.13.0-cp37-cp37m-win_amd64.whl (3.3 MB view hashes)

Uploaded CPython 3.7m Windows x86-64

tokenizers-0.13.0-cp37-cp37m-win32.whl (3.0 MB view hashes)

Uploaded CPython 3.7m Windows x86

tokenizers-0.13.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.9 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

tokenizers-0.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.3 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

tokenizers-0.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.2 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

tokenizers-0.13.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (7.0 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

tokenizers-0.13.0-cp37-cp37m-macosx_10_11_x86_64.whl (3.8 MB view hashes)

Uploaded CPython 3.7m macOS 10.11+ x86-64

Supported by

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