Temporary remove unused tokens during training to save ram and speed.
Project description
transformer-smaller-training-vocab
Motivation
Have you ever trained a transformer model and noticed that most tokens in the vocab are not used? Logically the token embeddings from those terms won't change, however they still take up memory and compute resources on your GPU. One could assume that the embeddings are just a small part of the model and therefore aren't relevant, however looking at models like xlm-roberta-large have 45.72% of parameters as "word_embeddings". Besides that, the gradient computation is done for the whole embedding weight, leading to gradient updates with very large amounts of 0s, eating a lot of memory, especially with state optimizers such as adam.
To reduce these inconveniences, this package provides a simple and easy to use way to
- gather usage statistics of the vocabulary
- temporary reduce the vocabulary to include no tokens that won't be used during training
- fit in the tokens back in after the training is finished, so the full version can be saved.
Limitations
This library works fine, if you use any FastTokenizer
However if you want to use a slow
tokenizer, it get's more tricky as huggingface-transformers has - per current date - no interface for overwriting the vocabulary in transformers.
So they require a custom implementation, currently the following tokenizers are supported:
- XLMRobertaTokenizer
- RobertaTokenizer
- BertTokenizer
If you want to use a tokenizer that is not on the list, please create an issue for it.
Quick Start
Requirements and Installation
The project is based on Transformers 4.1.0+, PyTorch 1.8+ and Python 3.7+ Then, in your favorite virtual environment, simply run:
pip install transformer-smaller-training-vocab
Example Usage
To use more efficient training, it is enough to do the following changes to an abitary training script:
model = ...
tokenizer = ...
raw_datasets = ...
...
+ with reduce_train_vocab(model=model, tokenizer=tokenizer, texts=get_texts_from_dataset(raw_datasets, key="text")):
def preprocess_function(examples):
result = tokenizer(examples["text"], padding=padding, max_length=max_seq_length, truncation=True)
result["label"] = [(label_to_id[l] if l != -1 else -1) for l in examples["label"]]
return result
raw_datasets = raw_datasets.map(
preprocess_function,
batched=True,
)
trainer = Trainer(
model=model,
train_dataset=raw_datasets["train"],
eval_dataset=raw_datasets["validation"],
tokenizer=tokenizer,
...
)
trainer.train()
+ trainer.save_model() # save model at the end to contain the full vocab again.
Done! The Model will now be trained with only use the necessary parts of the token embeddings.
Impact
Here is a table to document how much impact this technique has on training:
Model | Dataset | Vocab reduction | Model size reduction |
---|---|---|---|
xlm-roberta-large | CONLL 03 (en) | 93.13% | 42.58% |
xlm-roberta-base | CONLL 03 (en) | 93.13% | 64.31% |
bert-base-cased | CONLL 03 (en) | 43.64% | 08.97% |
bert-base-uncased | CONLL 03 (en) | 47.62% | 10.19% |
bert-large-uncased | CONLL 03 (en) | 47.62% | 04.44% |
roberta-base | CONLL 03 (en) | 58.39% | 18.08% |
roberta-large | CONLL 03 (en) | 58.39% | 08.45% |
bert-base-cased | cola | 77.67% | 15.97% |
roberta-base | cola | 86.08% | 26.66% |
xlm-roberta-base | cola | 97.79% | 67.52% |
bert-base-cased | mnli | 10.94% | 2.25% |
roberta-base | mnli | 14.78% | 4.58% |
xlm-roberta-base | mnli | 88.83% | 61.34% |
bert-base-cased | mrpc | 49.93% | 10.27% |
roberta-base | mrpc | 64.02% | 19.83% |
xlm-roberta-base | mrpc | 94.88% | 65.52% |
bert-base-cased | qnli | 8.62% | 1.77% |
roberta-base | qnli | 17.64% | 5.46% |
xlm-roberta-base | qnli | 87.57% | 60.47% |
bert-base-cased | qqp | 7.69% | 1.58% |
roberta-base | qqp | 5.91% | 1.83% |
xlm-roberta-base | qqp | 85.40% | 58.98% |
bert-base-cased | rte | 34.68% | 7.13% |
roberta-base | rte | 50.49% | 15.64% |
xlm-roberta-base | rte | 93.10% | 64.29% |
bert-base-cased | sst2 | 62.39% | 12.83% |
roberta-base | sst2 | 68.60% | 21.25% |
xlm-roberta-base | sst2 | 96.25% | 66.47% |
bert-base-cased | stsb | 51.35% | 10.56% |
roberta-base | stsb | 64.37% | 19.93% |
xlm-roberta-base | stsb | 94.88% | 65.52% |
bert-base-cased | wnli | 93.66% | 19.26% |
roberta-base | wnli | 96.03% | 29.74% |
xlm-roberta-base | wnli | 99.25% | 68.54% |
Notice that while those reduced embeddings imply slightly less computation effort, those gains are neglectable, as the gradient computation for the parameters of transformer layers are dominant.
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
Hashes for transformer_smaller_training_vocab-0.2.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c7e589f338f797e81263656207418d7c81ea115a9060a6e96ac4eaa27b06d29 |
|
MD5 | 650cae246e744084738d9d8da112507f |
|
BLAKE2b-256 | 01da023c5dc28f130fb846247894823924ba71a0537f55b4dc623f431cf24c81 |
Hashes for transformer_smaller_training_vocab-0.2.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8370fc7f25f41c1cef9baee23d205d20662bb9034d2cd061aa7a261ef1ceb4a |
|
MD5 | 0e4a7f6d8744062c9ec8969830689099 |
|
BLAKE2b-256 | 57edcb7f7aaea8c73c7e84c6ebbf28b2a54b0843e5a35e054e08c859b8b2c17d |