My implementation of the original transformer model (Vaswani et al.). I've additionally included the playground.py file for visualizing otherwise seemingly hard concepts. Currently included IWSLT pretrained models.
The Original Transformer (PyTorch) :computer: = :rainbow:
This repo contains PyTorch implementation of the original transformer paper (:link: Vaswani et al.).It's aimed at making it easy to start playing and learning about transformers.
Table of Contents
* What are transformers? * Understanding transformers * Machine translation * Setup * Usage * Hardware requirementsWhat are transformers
Transformers were originally proposed by Vaswani et al. in a seminal paper called Attention Is All You Need.
You probably heard of transformers one way or another. GPT-3 and BERT to name a few well known ones :unicorn:. The main idea is that they showed that you don't have to use recurrent or convolutional layers and that simple architecture coupled with attention is super powerful. It gave the benefit of much better long-range dependency modeling and the architecture itself is highly parallelizable (:computer::computer::computer:) which leads to better compute efficiency!
Here is how their beautifully simple architecture looks like:
Understanding transformers
This repo is supposed to be a learning resource for understanding transformers as the original transformer by itself is not a SOTA anymore.
For that purpose the code is (hopefully) well commented and I've included the playground.py where I've visualized a couple of concepts which are hard to explain using words but super simple once visualized. So here we go!
Positional Encodings
Can you parse this one in a glimpse of the eye?
Neither can I. Running the visualizepositionalencodings() function from playground.py we get this:
Depending on the position of your source/target token you "pick one row of this image" and you add it to it's embedding vector, that's it. They could also be learned, but it's just more fancy to do it like this, obviously! :nerd_face:
Custom Learning Rate Schedule
Similarly can you parse this one in O(1)?
Noup? So I thought, here it is visualized:
It's super easy to understand now. Now whether this part was crucial for the success of transformer? I doubt it. But it's cool and makes things more complicated. :nerdface: (.setsarcasm(True))
Note: model dimension is basically the size of the embedding vector, baseline transformer used 512, the big one 1024
Label Smoothing
First time you hear of label smoothing it sounds tough but it's not. You usually set your target vocabulary distribution to a one-hot. Meaning 1 position out of 30k (or whatever your vocab size is) is set to 1. probability and everything else to 0.
In label smoothing instead of placing 1. on that particular position you place say 0.9 and you evenly distribute the rest of the "probability mass" over the other positions (that's visualized as a different shade of purple on the image above in a fictional vocab of size 4 - hence 4 columns)
Note: Pad token's distribution is set to all zeros as we don't want our model to predict those!
Aside from this repo (well duh) I would highly recommend you go ahead and read this amazing blog by Jay Alammar!
Machine translation
Transformer was originally trained for the NMT (neural machine translation) task on the WMT-14 dataset for:
- English to German translation task (achieved 28.4 BLEU score)
- English to French translation task (achieved 41.8 BLEU score)
I'll also train my models on WMT-14 soon, take a look at the todos section.
Anyways! Let's see what this repo can practically do for you! Well it can translate!
Some short translations from my German to English IWSLT model:
Input: Ich bin ein guter Mensch, denke ich. ("gold": I am a good person I think)
Output: ['<s>', 'I', 'think', 'I', "'m", 'a', 'good', 'person', '.', '</s>']
or in human-readable format: I think I'm a good person.
Which is actually pretty good! Maybe even better IMO than Google Translate's "gold" translation.
There are of course failure cases like this:
Input: Hey Alter, wie geht es dir? (How is it going dude?)
Output: ['<s>', 'Hey', ',', 'age', 'how', 'are', 'you', '?', '</s>']
or in human-readable format: Hey, age, how are you?
Which is actually also not completely bad! Because:
- First of all the model was trained on IWSLT (TED like conversations)
- "Alter" is a colloquial expression for old buddy/dude/mate but it's literal meaning is indeed age.
Setup
So we talked about what transformers are, and what they can do for you (among other things).
Let's get this thing running! Follow the next steps:
git clone https://github.com/gordicaleksa/pytorch-original-transformer- Open Anaconda console and navigate into project directory
cd pathtorepo - Run
conda env createfrom project directory (this will create a brand new conda environment). - Run
activate pytorch-transformer(for running scripts from your console or set the interpreter in your IDE)
It may take a while as I'm automatically downloading SpaCy's statistical models for English and German.
PyTorch pip package will come bundled with some version of CUDA/cuDNN with it, but it is highly recommended that you install a system-wide CUDA beforehand, mostly because of the GPU drivers. I also recommend using Miniconda installer as a way to get conda on your system. Follow through points 1 and 2 of this setup and use the most up-to-date versions of Miniconda and CUDA/cuDNN for your system.
Usage
Option 1: Jupyter Notebook
Just run jupyter notebook from you Anaconda console and it will open the session in your default browser.
Open The Annotated Transformer ++.ipynb and you're ready to play!
Note: if you get DLL load failed while importing win32api: The specified module could not be found
Just do pip uninstall pywin32 and then either pip install pywin32 or conda install pywin32 should fix it!
Option 2: Use your IDE of choice
You just need to link the Python environment you created in the setup section.
Training
To run the training start the training_script.py, there is a couple of settings you will want to specify:
--batch_size- this is important to set to a maximum value that won't give you CUDA out of memory--dataset_name- Pick betweenIWSLTandWMT14(WMT14 is not advisable until I add multi-GPU support)--language_direction- Pick betweenE2GandG2E
python trainingscript.py --batchsize 1500 --datasetname IWSLT --languagedirection G2E
The code is well commented so you can (hopefully) understand how the training itself works.
The script will: Dump checkpoint .pth models into models/checkpoints/ Dump the final .pth model into models/binaries/
- Download IWSLT/WMT-14 (the first time you run it and place it under
data/) - Dump tensorboard data into
runs/, just runtensorboard --logdir=runsfrom your Anaconda - Periodically write some training metadata to the console
Inference (Translating)
The second part is all about playing with the models and seeing how they translate!
To get some translations start the translation_script.py, there is a couple of settings you'll want to set:
--source_sentence- depending on the model you specify this should either be English/German sentence
--modelname - one of the pretrained model names: iwslte2g, iwslt_g2e or your model() --dataset_name- keep this in sync with the model,IWSLTif the model was trained on IWSLT--language_direction- keep in sync,E2Gif the model was trained to translate from English to German
models/binaries see what it's name is and specify it via the --model_name parameter if you want to play with it for translation purpose. If you specify some of the pretrained models they'll automatically get downloaded the first time you run the translation script.
I'll link IWSLT pretrained model links here as well: English to German and German to English.
That's it you can also visualize the attention check out this section. for more info.
Evaluating NMT models
I tracked 3 curves while training:
- training loss (KL divergence, batchmean)
- validation loss (KL divergence, batchmean)
- BLEU-4
I used the BLEU-4 metric provided by the awesome nltk Python module.
Current results, models were trained for 20 epochs (DE stands for Deutch i.e. German in German :nerd_face:):
| Model | BLEU score | Dataset | | --- | --- | --- | | Baseline transformer (EN-DE) | 27.8 | IWSLT val | | Baseline transformer (DE-EN) | 33.2 | IWSLT val | | Baseline transformer (EN-DE) | x | WMT-14 val | | Baseline transformer (DE-EN) | x | WMT-14 val |
I got these using greedy decoding so it's a pessimistic estimate, I'll add beam decoding soon.
Important note: Initialization matters a lot for the transformer! I initially thought that other implementations using Xavier initialization is again one of those arbitrary heuristics and that PyTorch default init will do - I was wrong:
You can see here 3 runs, the 2 lower ones used PyTorch default initialization (one used mean for KL divergence loss and the better one used batchmean), whereas the upper one used Xavier uniform initialization!
Idea: you could potentially also periodically dump translations for a reference batch of source sentences.
That would give you some qualitative insight into how the transformer is doing, although I didn't do that.
A similar thing is done when you have hard time quantitatively evaluating your model like in GANs and NST fields.
Tracking using Tensorboard
The above plot is a snippet from my Azure ML run but when I run stuff locally I use Tensorboard.
Just run tensorboard --logdir=runs from your Anaconda console and you can track your metrics during the training.
Visualizing attention
You can use the translationscript.py and set the --visualizeattention to True to additionally understand what your model was "paying attention to" in the source and target sentences.
Here are the attentions I get for the input sentence Ich bin ein guter Mensch, denke ich.
These belong to layer 6 of the encoder. You can see all of the 8 multi-head attention heads.
And this one belongs to decoder layer 6 of the self-attention decoder MHA (multi-head attention) module.
You can notice an interesting triangular pattern which comes from the fact that target tokens can't look ahead!
The 3rd type of MHA module is the source attending one and it looks similar to the plot you saw for the encoder.
Feel free to play with it at your own pace!
Note: there are obviously some bias problems with this model but I won't get into that analysis here
Hardware requirements
You really need a decent hardware if you wish to train the transformer on the WMT-14 dataset.
The authors took:
- 12h on 8 P100 GPUs to train the baseline model and 3.5 days to train the big one.
On the other hand it's much more feasible to train the model on the IWSLT dataset. It took me:
- 13.2 min/epoch (1500 token batch) on my RTX 2080 machine (8 GBs of VRAM)
- ~34 min/epoch (1500 token batch) on Azure ML's K80s (24 GBs of VRAM)
Todos:
Finally there are a couple more todos which I'll hopefully add really soon:
- Multi-GPU/multi-node training support (so that you can train a model on WMT-14 for 19 epochs)
- Beam decoding (turns out it's not that easy to implement this one!)
- BPE and shared source-target vocab (I'm using SpaCy now)
Video learning material
If you're having difficulties understanding the code I did an in-depth overview of the paper in this video:
I have some more videos which could further help you understand transformers:
- My approach to understanding NLP/transformers
- Another overview of the paper (a bit higher level)
- A case study of how this project was developed
Acknowledgements
I found these resources useful (while developing this one):
I found some inspiration for the model design in the The Annotated Transformer but I found it hard to understand, and it had some bugs. It was mainly written with researchers in mind. Hopefully this repo opens up the understanding of transformers to the common folk as well! :nerd_face:Citation
If you find this code useful, please cite the following:
@misc{Gordić2020PyTorchOriginalTransformer,
author = {Gordić, Aleksa},
title = {pytorch-original-transformer},
year = {2020},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/gordicaleksa/pytorch-original-transformer}},
}
Connect with me
If you'd love to have some more AI-related content in your life :nerd_face:, consider:
- Subscribing to my YouTube channel The AI Epiphany :bell:
- Follow me on LinkedIn and Twitter :bulb:
- Follow me on Medium :books: :heart:
