BELT (BERT For Longer Texts). BERT-based text classification model for processing texts longer than 512 tokens.
Project description
BELT (BERT For Longer Texts)
🚀New in version 1.1.0: support for multilabel and regression. See the examples🚀
Project description and motivation
The BELT approach
The BERT model can process texts of the maximal length of 512 tokens (roughly speaking tokens are equivalent to words). It is a consequence of the model architecture and cannot be directly adjusted. Discussion of this issue can be found here. Method to overcome this issue was proposed by Devlin (one of the authors of BERT) in the previously mentioned discussion: comment. The main goal of our project is to implement this method and allow the BERT model to process longer texts during prediction and fine-tuning. We dub this approach BELT (BERT For Longer Texts).
More technical details are described in the documentation. We also prepared the comprehensive blog post: part 1, part 2.
Attention is all you need, but 512 words is all you have
The limitations of the BERT model to the 512 tokens come from the very beginning of the transformers models. Indeed, the attention mechanism, invented in the groundbreaking 2017 paper Attention is all you need, scales quadratically with the sequence length. Unlike RNN or CNN models, which can process sequences of arbitrary length, transformers with the full attention (like BERT) are infeasible (or very expensive) to process long sequences. To overcome the issue, alternative approaches with sparse attention mechanisms were proposed in 2020: BigBird and Longformer.
BELT vs. BigBird vs. LongFormer
Let us now clarify the key differences between the BELT approach to fine-tuning and the sparse attention models BigBird and Longformer:
- The main difference is that BigBird and Longformers are not modified BERTs. They are models with different architectures. Hence, they need to be pre-trained from scratch or downloaded.
- This leads to the main advantage of the BELT approach - it uses any pre-trained BERT or RoBERTa models. A quick look at the HuggingFace Hub confirms that there are about 100 times more resources for BERT than for Longformer. It might be easier to find the one appropriate for the specific task or language.
- On the other hand, we have not done any benchmark tests yet. We believe that the comparison of the BELT approach with the models with sparse attention might be very instructive. Some work in this direction was done in the 2022 paper Extend and Explain: Interpreting Very Long Language Models. The authors cited our implementation under the former name
roberta_for_longer_texts
. We encourage more research in this direction.
Installation and dependencies
The project requires Python 3.9+ to run. We recommend training the models on the GPU. Hence, it is necessary to install torch
version compatible with the machine. The version of the driver depends on the machine - first, check the version of GPU drivers by the command nvidia-smi
and choose the newest version compatible with these drivers according to this table (e.g.: 11.1). Then we install torch
to get the compatible build. Here, we find which torch version is compatible with the CUDA version on our machine.
Another option is to use the CPU-only version of torch:
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
Next, we recommend installing via pip:
pip3 install belt-nlp
If you want to clone the repo in order to run tests or notebooks, you can use the requirements.txt
file.
Model classes
Two main classes are implemented:
BertClassifierTruncated
- base binary classification model, longer texts are truncated to 512 tokensBertClassifierWithPooling
- extended model for longer texts (more details in the documentation)
Interface
The main methods are:
fit
- fine-tune the model to the training set, use the list of raw texts and labelspredict_classes
- calculate the list of classifications for the given list of raw texts. The model must be fine-tuned before that.predict_scores
- calculate the list of probabilities for the given list of raw texts. The model must be fine-tuned before that.
Loading the pre-trained model
As a default, the standard English bert-base-uncased
model is used as a pre-trained model. However, it is possible to use any Bert or Roberta model. To do this, use the parameter pretrained_model_name_or_path
.
It can be either:
- a string with the name of a pre-trained model configuration to download from huggingface library, e.g.:
roberta-base
. - a path to a directory with the downloaded model, e.g.:
./my_model_directory/
.
Tests
To make sure everything works properly, run the command pytest tests -rA
. As a default, during tests, models are trained on small samples on the CPU.
Examples
All examples use public datasets from huggingface hub.
Binary classification - prediction of sentiment of IMDB reviews
Multilabel classification - recognizing authors of Guardian articles
- standard approach
- belt
- Notice the effectiveness of the BELT approach here: the test accuracy increased by 10%.
Regression - prediction of 1 to 5 rating based on reviews from Polish online e-commerce platform Allegro
Contributors
The project was created at MIM AI by:
If you want to contribute to the library, see the contributing info.
Version history
See CHANGELOG.md.
License
See the LICENSE file for license rights and limitations (MIT).
For Maintainers
File requirements.txt
can be updated using the command:
bash pip-freeze-without-torch.sh > requirements.txt
This script saves all dependencies of the current active environment except torch
.
In order to add the next version of the package to pypi, do the following steps:
- First, increment the package version in
pyproject.toml
. - Then build the new version: run
python3.9 -m build
from the main folder. - Finally, upload to pypi:
twine upload dist/*
(two newly created files).
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
Built Distribution
File details
Details for the file belt_nlp-1.1.0.tar.gz
.
File metadata
- Download URL: belt_nlp-1.1.0.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbd4b5aed6987607f3a4982930dd8f7e3f2fc6b0f32a716d456be26f439d3887 |
|
MD5 | 7d0157032728e432a54f21575af6fbe3 |
|
BLAKE2b-256 | 0847e08f67fc1fcea44d6a7e2f664771b27bce9ceb10667438018b8be760b0b9 |
File details
Details for the file belt_nlp-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: belt_nlp-1.1.0-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 970b1d64629448e28d0d0667b6c72866f96e0aaa88b9f78a54a9d6b95203853a |
|
MD5 | 53d5713b75f977fb6f300f33180aeb89 |
|
BLAKE2b-256 | 7d1857368e304224b606db37a1113bb519a29750b369523a04cd7ffc51cf4802 |