Implementation of BPE-knockout, a morphologically informed post-processing step for BPE tokenisers.
Project description
Repo hosting all the code used for the NAACL 2024 paper "BPE-knockout: Pruning Pre-existing BPE Tokenisers with Backwards-compatible Morphological Semi-supervision", including source code for BPE-knockout tokenisation.
Want to reproduce or extend the intrinsic evaluations of the paper? Read on! Extrinsic evaluations are done with RobBERT's framework. The pre-trained model checkpoints are available on the HuggingFace Hub.
Table of contents:
- Installation
- Usage:
- Paper results:
- Data licenses
- BibTeX citation
HuggingFace compatibility
Are you used to working with the HuggingFace suite for language modelling and tokenisation? No problem!
You can incorporate BPE-knockout anywhere you're already using a BPE tokeniser loaded from HuggingFace,
with only 2 extra imports and 2 more lines of code. For example, if you're using roberta-base's English tokeniser,
you would run:
# Load HuggingFace object
from transformers import AutoTokenizer
hf_bpe_tokeniser = AutoTokenizer.from_pretrained("roberta-base")
# Construct TkTkT object
from tktkt.models.bpe.knockout import BPEKnockout
tktkt_bpek_tokeniser = BPEKnockout.fromHuggingFace(hf_bpe_tokeniser, "English")
# Convert back to HuggingFace
from tktkt.interfaces.huggingface import TktktToHuggingFace
hf_bpek_tokeniser = TktktToHuggingFace(tktkt_bpek_tokeniser, specials_from=hf_bpe_tokeniser)
The resulting object is indeed a HuggingFace tokeniser, but internally it works using BPE-knockout.
Installing
Minimal package
If you are only interested in using the BPE-knockout package (including our English, German and Dutch BPE tokenisers and the respective morphological data loaders, but not including corpus word counts) and not in running the experiments from the paper, you likely just want to run:
pip install "bpe_knockout[github] @ git+https://github.com/bauwenst/BPE-knockout"
As shown in the above example, user-friendly encapsulations for BPE-knockout are provided by the TkTkT package, which may be more interesting to you than the core algorithm and configuration code which is provided here. In any case, installing either package will install the other automatically anyway.
Full experiments, editable code
If you want to run experiments from the paper and/or have access to the word count files, this means you want to download
everything in this repository and tell Python to use the folder into which you cloned for the package code, rather than
copying the code to your global or virtual site-packages directory. In that case, run:
git clone https://github.com/bauwenst/BPE-knockout
cd BPE-knockout
pip install -e .[github]
Warning:
- If you're using conda or venv, don't forget to activate your environment before running any calls to
pip install. - If you have an editable installation of my other packages
TkTkTand/orFijectand would like to keep it, do not include the[github]suffix.
More usage examples
Saving and loading tokeniser after knockout
Although knockout takes under 3 minutes to complete and lasts as long as the tokeniser's lifetime, you may still want to cache the resulting BPE-knockout tokeniser for using it again without re-doing knockout. Starting from a HuggingFace tokeniser, that would look like this:
from pathlib import Path
from transformers import AutoTokenizer
from tktkt.models.bpe.knockout import BPEKnockout
from tktkt.models.huggingface.wrapper import HuggingFacePreprocessor
# Load old tokeniser and apply knockout.
hf_base = AutoTokenizer.from_pretrained("roberta-base")
tktkt_knockout = BPEKnockout.fromHuggingFace(hf_base, language="English")
# Save new tokeniser and reload it.
save_path = tktkt_knockout.save(folder=Path(".") / "roberta-knockout")
tktkt_knockout_loaded = BPEKnockout.load(save_path, preprocessor=HuggingFacePreprocessor(hf_base))
The objects tktkt_knockout and tktkt_knockout_loaded have the exact same internals. (If you want to give them the
HuggingFace interface, wrap them with a call to TktktToHuggingFace.)
Notice how .load() requires a preprocessor. That's because .save() does not store the preprocessor with the tokeniser,
as it assumes that you already have a code snippet that loads the preprocessor. In this case, because the original tokeniser
was a HuggingFace tokeniser, its preprocessor was a HuggingFace preprocessor as well.
Loading from the HuggingFace hub
The BPE-knockout tokeniser used for the (continued) pre-training of language models in the paper were saved as above and
uploaded to the HuggingFace hub. Rather than downloading them manually, you can load them with a from_pretrained call.
For convenience, there is one that has the TkTkT interface and one that converts it to the HuggingFace interface:
from tktkt.models.bpe.knockout import BPEKnockout
dutch_bpe_knockout_hf = BPEKnockout.from_pretrained("Bauwens/RoBERTa-nl_BPE_30k_BPE-knockout_9k")
dutch_bpe_knockout_tktkt = BPEKnockout.from_pretrained_tktkt("Bauwens/RoBERTa-nl_BPE_30k_BPE-knockout_9k")
Running experiments from the paper
Given that you have an editable install, follow these steps to reproduce the paper results:
- Unzip the
.rarfile underdata/compressed/. - Run
py tst/main.pyorpython tst/main.pyin a terminal.
Using your own data
It is possible to use other datasets (even other languages) than the ones used for the paper.
All files read by the package are declared in a globally accessible ProjectConfig object. We ship three default
ProjectConfigs with the package for English, German and Dutch (see the bpe_knockout.project.config file).
To add a config, you'll need the following files:
- A dataset of morphological decompositions. BPE-knockout is built on top of MoDeST for supplying morphological data, so your data format must be compatible with those supported by MoDeST. (Otherwise, you can always write your own class.)
- Optional: if you want to run all experiments, you also need a tab-separated file of words and their frequencies from a sufficiently large corpus (morphologies without such a frequency will get frequency 1, and words that don't have a morphology will be ignored);
- Optional: if you don't want to generate a new BPE tokeniser from your word counts, the file(s) that specify your existing BPE tokeniser.
Now write a function akin to setupEnglish() to return your new config. If you want to run the experiments on these new data,
import it in tst/main.py. If you want to just use these new data for knockout, import your function in tktkt.models.bpe.knockout
and add it to the CONFIGS dictionary.
Data licenses
All data is included in the repo, because it is obtainable for free elsewhere and free of license too.
- Morphological decompositions were derived from WebCelex at the Max Plank Institute.
- Language modelling data is derived from OSCAR on HuggingFace.
Citation
If you use BPE-knockout in your own work, cite the paper using e.g.:
@inproceedings{bauwens-delobelle-2024-bpe,
title = "{BPE}-knockout: Pruning Pre-existing {BPE} Tokenisers with Backwards-compatible Morphological Semi-supervision",
author = "Bauwens, Thomas and Delobelle, Pieter",
booktitle = "Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers)",
month = jun,
year = "2024",
address = "Mexico City, Mexico",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2024.naacl-long.324",
pages = "5810--5832"
}
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bpe_knockout-2025.12.16.tar.gz.
File metadata
- Download URL: bpe_knockout-2025.12.16.tar.gz
- Upload date:
- Size: 1.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.13.12 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8fffcd4c825ecf239ddd0e51e8e36ab42f401c7c75ec2b0da680fc808eb7551
|
|
| MD5 |
623954bc8564fefab128f08662709fcb
|
|
| BLAKE2b-256 |
f209715370d1d8fa55d21299da3bcded445a75fa4e26119217242fe5af95c671
|
File details
Details for the file bpe_knockout-2025.12.16-py3-none-any.whl.
File metadata
- Download URL: bpe_knockout-2025.12.16-py3-none-any.whl
- Upload date:
- Size: 2.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Hatch/1.16.5 cpython/3.13.12 HTTPX/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c503f9382322f0da0f4d1b588ae9e49b53cd311fe3d17a6517b8ca435c973195
|
|
| MD5 |
6a6c44a7f3d7aec2016538d06fbfb405
|
|
| BLAKE2b-256 |
4105f1be57264970fa8d7b1a41bd4ecaeb3a9e2e1a311c0f50d53446faa5fd2e
|