Repository: harvardnlp/annotated-transformer Branch: master Commit: debc9fd747bb Files: 12 Total size: 9.2 MB Directory structure: gitextract_dfq_j6md/ ├── .github/ │ └── workflows/ │ └── checks.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── header-includes.yaml │ ├── index.html │ └── tufte.css ├── requirements.txt ├── the_annotated_transformer.py └── writeup/ ├── acl2018.sty └── acl_natbib.bst ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/checks.yml ================================================ name: checks.yml on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.9] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | sudo apt-get install pandoc python -m pip install --upgrade pip pip install flake8 pip install black pip install torch torchtext pip install -U pip setuptools wheel pip install -U spacy matplotlib seaborn altair jupyterlab jupytext if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f requirements.dev.txt ]; then pip install -r requirements.dev.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names make flake ================================================ FILE: .gitignore ================================================ *.ipynb .ipynb_checkpoints .data *.pt __pycache__ wandb ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2018 Alexander Rush Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: Makefile ================================================ notebook: the_annotated_transformer.py jupytext --to ipynb the_annotated_transformer.py py: the_annotated_transformer.ipynb jupytext --to py:percent the_annotated_transformer.ipynb the_annotated_transformer.ipynb: the_annotated_transformer.py jupytext --to ipynb the_annotated_transformer.py execute: the_annotated_transformer.py jupytext --execute --to ipynb the_annotated_transformer.py html: the_annotated_transformer.ipynb jupytext --execute --to ipynb the_annotated_transformer.py jupyter nbconvert --to html the_annotated_transformer.ipynb the_annotated_transformer.md: the_annotated_transformer.ipynb jupyter nbconvert --to markdown --execute the_annotated_transformer.ipynb blog: the_annotated_transformer.md pandoc docs/header-includes.yaml the_annotated_transformer.md --katex=/usr/local/lib/node_modules/katex/dist/ --output=docs/index.html --to=html5 --css=docs/github.min.css --css=docs/tufte.css --no-highlight --self-contained --metadata pagetitle="The Annotated Transformer" --resource-path=/home/srush/Projects/annotated-transformer/ --indented-code-classes=nohighlight flake: the_annotated_transformer.ipynb flake8 --show-source the_annotated_transformer.py black: the_annotated_transformer.ipynb black --line-length 79 the_annotated_transformer.py clean: rm -f the_annotated_transformer.ipynb # see README.md - IWSLT needs to be downloaded manually to obtain 2016-01.tgz move-dataset: mkdir -p ~/.torchtext/cache/IWSLT2016 cp 2016-01.tgz ~/.torchtext/cache/IWSLT2016/. setup: move-dataset pip install -r requirements.txt ================================================ FILE: README.md ================================================ Code for The Annotated Transformer blog post: http://nlp.seas.harvard.edu/annotated-transformer/ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/harvardnlp/annotated-transformer/blob/master/AnnotatedTransformer.ipynb) ![image](https://user-images.githubusercontent.com/35882/166251887-9da909a9-660b-45a9-ae72-0aae89fb38d4.png) # Package Dependencies Use `requirements.txt` to install library dependencies with pip: ``` pip install -r requirements.txt ``` # Notebook Setup The Annotated Transformer is created using [jupytext](https://github.com/mwouts/jupytext). Regular notebooks pose problems for source control - cell outputs end up in the repo history and diffs between commits are difficult to examine. Using jupytext, there is a python script (`.py` file) that is automatically kept in sync with the notebook file by the jupytext plugin. The python script is committed contains all the cell content and can be used to generate the notebook file. The python script is a regular python source file, markdown sections are included using a standard comment convention, and outputs are not saved. The notebook itself is treated as a build artifact and is not commited to the git repository. Prior to using this repo, make sure jupytext is installed by following the [installation instructions here](https://github.com/mwouts/jupytext/blob/main/docs/install.md). To produce the `.ipynb` notebook file using the markdown source, run (under the hood, the `notebook` build target simply runs `jupytext --to ipynb the_annotated_transformer.py`): ``` make notebook ``` To produce the html version of the notebook, run: ``` make html ``` `make html` is just a shortcut for for generating the notebook with `jupytext --to ipynb the_annotated_transformer.py` followed by using the jupyter nbconvert command to produce html using `jupyter nbconvert --to html the_annotated_transformer.ipynb` # Formatting and Linting To keep the code formatting clean, the annotated transformer git repo has a git action to check that the code conforms to [PEP8 coding standards](https://www.python.org/dev/peps/pep-0008/). To make this easier, there are two `Makefile` build targets to run automatic code formatting with black and flake8. Be sure to [install black](https://github.com/psf/black#installation) and [flake8](https://flake8.pycqa.org/en/latest/). You can then run: ``` make black ``` (or alternatively manually call black `black --line-length 79 the_annotated_transformer.py`) to format code automatically using black and: ``` make flake ``` (or manually call flake8 `flake8 --show-source the_annotated_transformer.py) to check for PEP8 violations. It's recommended to run these two commands and fix any flake8 errors that arise, when submitting a PR, otherwise the github actions CI will report an error. ================================================ FILE: docs/header-includes.yaml ================================================ --- header-includes: | ... ================================================ FILE: docs/index.html ================================================ The Annotated Transformer

The Annotated Transformer

Attention is All You Need

The Transformer has been on a lot of people’s minds over the last year five years. This post presents an annotated version of the paper in the form of a line-by-line implementation. It reorders and deletes some sections from the original paper and adds comments throughout. This document itself is a working notebook, and should be a completely usable implementation. Code is available here.

Table of Contents

Prelims

Skip

# !pip install -r requirements.txt
# # Uncomment for colab
# #
# !pip install -q torchdata==0.3.0 torchtext==0.12 spacy==3.2 altair GPUtil
# !python -m spacy download de_core_news_sm
# !python -m spacy download en_core_web_sm
import os
from os.path import exists
import torch
import torch.nn as nn
from torch.nn.functional import log_softmax, pad
import math
import copy
import time
from torch.optim.lr_scheduler import LambdaLR
import pandas as pd
import altair as alt
from torchtext.data.functional import to_map_style_dataset
from torch.utils.data import DataLoader
from torchtext.vocab import build_vocab_from_iterator
import torchtext.datasets as datasets
import spacy
import GPUtil
import warnings
from torch.utils.data.distributed import DistributedSampler
import torch.distributed as dist
import torch.multiprocessing as mp
from torch.nn.parallel import DistributedDataParallel as DDP


# Set to False to skip notebook execution (e.g. for debugging)
warnings.filterwarnings("ignore")
RUN_EXAMPLES = True
# Some convenience helper functions used throughout the notebook


def is_interactive_notebook():
    return __name__ == "__main__"


def show_example(fn, args=[]):
    if __name__ == "__main__" and RUN_EXAMPLES:
        return fn(*args)


def execute_example(fn, args=[]):
    if __name__ == "__main__" and RUN_EXAMPLES:
        fn(*args)


class DummyOptimizer(torch.optim.Optimizer):
    def __init__(self):
        self.param_groups = [{"lr": 0}]
        None

    def step(self):
        None

    def zero_grad(self, set_to_none=False):
        None


class DummyScheduler:
    def step(self):
        None

My comments are blockquoted. The main text is all from the paper itself.

Background

The goal of reducing sequential computation also forms the foundation of the Extended Neural GPU, ByteNet and ConvS2S, all of which use convolutional neural networks as basic building block, computing hidden representations in parallel for all input and output positions. In these models, the number of operations required to relate signals from two arbitrary input or output positions grows in the distance between positions, linearly for ConvS2S and logarithmically for ByteNet. This makes it more difficult to learn dependencies between distant positions. In the Transformer this is reduced to a constant number of operations, albeit at the cost of reduced effective resolution due to averaging attention-weighted positions, an effect we counteract with Multi-Head Attention.

Self-attention, sometimes called intra-attention is an attention mechanism relating different positions of a single sequence in order to compute a representation of the sequence. Self-attention has been used successfully in a variety of tasks including reading comprehension, abstractive summarization, textual entailment and learning task-independent sentence representations. End-to-end memory networks are based on a recurrent attention mechanism instead of sequencealigned recurrence and have been shown to perform well on simple-language question answering and language modeling tasks.

To the best of our knowledge, however, the Transformer is the first transduction model relying entirely on self-attention to compute representations of its input and output without using sequence aligned RNNs or convolution.

Part 1: Model Architecture

Model Architecture

Most competitive neural sequence transduction models have an encoder-decoder structure (cite). Here, the encoder maps an input sequence of symbol representations (x_1, ..., x_n) to a sequence of continuous representations \mathbf{z} = (z_1, ..., z_n). Given \mathbf{z}, the decoder then generates an output sequence (y_1,...,y_m) of symbols one element at a time. At each step the model is auto-regressive (cite), consuming the previously generated symbols as additional input when generating the next.

class EncoderDecoder(nn.Module):
    """
    A standard Encoder-Decoder architecture. Base for this and many
    other models.
    """

    def __init__(self, encoder, decoder, src_embed, tgt_embed, generator):
        super(EncoderDecoder, self).__init__()
        self.encoder = encoder
        self.decoder = decoder
        self.src_embed = src_embed
        self.tgt_embed = tgt_embed
        self.generator = generator

    def forward(self, src, tgt, src_mask, tgt_mask):
        "Take in and process masked src and target sequences."
        return self.decode(self.encode(src, src_mask), src_mask, tgt, tgt_mask)

    def encode(self, src, src_mask):
        return self.encoder(self.src_embed(src), src_mask)

    def decode(self, memory, src_mask, tgt, tgt_mask):
        return self.decoder(self.tgt_embed(tgt), memory, src_mask, tgt_mask)
class Generator(nn.Module):
    "Define standard linear + softmax generation step."

    def __init__(self, d_model, vocab):
        super(Generator, self).__init__()
        self.proj = nn.Linear(d_model, vocab)

    def forward(self, x):
        return log_softmax(self.proj(x), dim=-1)

The Transformer follows this overall architecture using stacked self-attention and point-wise, fully connected layers for both the encoder and decoder, shown in the left and right halves of Figure 1, respectively.

Encoder and Decoder Stacks

Encoder

The encoder is composed of a stack of N=6 identical layers.

def clones(module, N):
    "Produce N identical layers."
    return nn.ModuleList([copy.deepcopy(module) for _ in range(N)])
class Encoder(nn.Module):
    "Core encoder is a stack of N layers"

    def __init__(self, layer, N):
        super(Encoder, self).__init__()
        self.layers = clones(layer, N)
        self.norm = LayerNorm(layer.size)

    def forward(self, x, mask):
        "Pass the input (and mask) through each layer in turn."
        for layer in self.layers:
            x = layer(x, mask)
        return self.norm(x)

We employ a residual connection (cite) around each of the two sub-layers, followed by layer normalization (cite).

class LayerNorm(nn.Module):
    "Construct a layernorm module (See citation for details)."

    def __init__(self, features, eps=1e-6):
        super(LayerNorm, self).__init__()
        self.a_2 = nn.Parameter(torch.ones(features))
        self.b_2 = nn.Parameter(torch.zeros(features))
        self.eps = eps

    def forward(self, x):
        mean = x.mean(-1, keepdim=True)
        std = x.std(-1, keepdim=True)
        return self.a_2 * (x - mean) / (std + self.eps) + self.b_2

That is, the output of each sub-layer is \mathrm{LayerNorm}(x + \mathrm{Sublayer}(x)), where \mathrm{Sublayer}(x) is the function implemented by the sub-layer itself. We apply dropout (cite) to the output of each sub-layer, before it is added to the sub-layer input and normalized.

To facilitate these residual connections, all sub-layers in the model, as well as the embedding layers, produce outputs of dimension d_{\text{model}}=512.

class SublayerConnection(nn.Module):
    """
    A residual connection followed by a layer norm.
    Note for code simplicity the norm is first as opposed to last.
    """

    def __init__(self, size, dropout):
        super(SublayerConnection, self).__init__()
        self.norm = LayerNorm(size)
        self.dropout = nn.Dropout(dropout)

    def forward(self, x, sublayer):
        "Apply residual connection to any sublayer with the same size."
        return x + self.dropout(sublayer(self.norm(x)))

Each layer has two sub-layers. The first is a multi-head self-attention mechanism, and the second is a simple, position-wise fully connected feed-forward network.

class EncoderLayer(nn.Module):
    "Encoder is made up of self-attn and feed forward (defined below)"

    def __init__(self, size, self_attn, feed_forward, dropout):
        super(EncoderLayer, self).__init__()
        self.self_attn = self_attn
        self.feed_forward = feed_forward
        self.sublayer = clones(SublayerConnection(size, dropout), 2)
        self.size = size

    def forward(self, x, mask):
        "Follow Figure 1 (left) for connections."
        x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, mask))
        return self.sublayer[1](x, self.feed_forward)

Decoder

The decoder is also composed of a stack of N=6 identical layers.

class Decoder(nn.Module):
    "Generic N layer decoder with masking."

    def __init__(self, layer, N):
        super(Decoder, self).__init__()
        self.layers = clones(layer, N)
        self.norm = LayerNorm(layer.size)

    def forward(self, x, memory, src_mask, tgt_mask):
        for layer in self.layers:
            x = layer(x, memory, src_mask, tgt_mask)
        return self.norm(x)

In addition to the two sub-layers in each encoder layer, the decoder inserts a third sub-layer, which performs multi-head attention over the output of the encoder stack. Similar to the encoder, we employ residual connections around each of the sub-layers, followed by layer normalization.

class DecoderLayer(nn.Module):
    "Decoder is made of self-attn, src-attn, and feed forward (defined below)"

    def __init__(self, size, self_attn, src_attn, feed_forward, dropout):
        super(DecoderLayer, self).__init__()
        self.size = size
        self.self_attn = self_attn
        self.src_attn = src_attn
        self.feed_forward = feed_forward
        self.sublayer = clones(SublayerConnection(size, dropout), 3)

    def forward(self, x, memory, src_mask, tgt_mask):
        "Follow Figure 1 (right) for connections."
        m = memory
        x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, tgt_mask))
        x = self.sublayer[1](x, lambda x: self.src_attn(x, m, m, src_mask))
        return self.sublayer[2](x, self.feed_forward)

We also modify the self-attention sub-layer in the decoder stack to prevent positions from attending to subsequent positions. This masking, combined with fact that the output embeddings are offset by one position, ensures that the predictions for position i can depend only on the known outputs at positions less than i.

def subsequent_mask(size):
    "Mask out subsequent positions."
    attn_shape = (1, size, size)
    subsequent_mask = torch.triu(torch.ones(attn_shape), diagonal=1).type(
        torch.uint8
    )
    return subsequent_mask == 0

Below the attention mask shows the position each tgt word (row) is allowed to look at (column). Words are blocked for attending to future words during training.

def example_mask():
    LS_data = pd.concat(
        [
            pd.DataFrame(
                {
                    "Subsequent Mask": subsequent_mask(20)[0][x, y].flatten(),
                    "Window": y,
                    "Masking": x,
                }
            )
            for y in range(20)
            for x in range(20)
        ]
    )

    return (
        alt.Chart(LS_data)
        .mark_rect()
        .properties(height=250, width=250)
        .encode(
            alt.X("Window:O"),
            alt.Y("Masking:O"),
            alt.Color("Subsequent Mask:Q", scale=alt.Scale(scheme="viridis")),
        )
        .interactive()
    )


show_example(example_mask)

Attention

An attention function can be described as mapping a query and a set of key-value pairs to an output, where the query, keys, values, and output are all vectors. The output is computed as a weighted sum of the values, where the weight assigned to each value is computed by a compatibility function of the query with the corresponding key.

We call our particular attention “Scaled Dot-Product Attention”. The input consists of queries and keys of dimension d_k, and values of dimension d_v. We compute the dot products of the query with all keys, divide each by \sqrt{d_k}, and apply a softmax function to obtain the weights on the values.

In practice, we compute the attention function on a set of queries simultaneously, packed together into a matrix Q. The keys and values are also packed together into matrices K and V. We compute the matrix of outputs as:

\mathrm{Attention}(Q, K, V) = \mathrm{softmax}(\frac{QK^T}{\sqrt{d_k}})V

def attention(query, key, value, mask=None, dropout=None):
    "Compute 'Scaled Dot Product Attention'"
    d_k = query.size(-1)
    scores = torch.matmul(query, key.transpose(-2, -1)) / math.sqrt(d_k)
    if mask is not None:
        scores = scores.masked_fill(mask == 0, -1e9)
    p_attn = scores.softmax(dim=-1)
    if dropout is not None:
        p_attn = dropout(p_attn)
    return torch.matmul(p_attn, value), p_attn

The two most commonly used attention functions are additive attention (cite), and dot-product (multiplicative) attention. Dot-product attention is identical to our algorithm, except for the scaling factor of \frac{1}{\sqrt{d_k}}. Additive attention computes the compatibility function using a feed-forward network with a single hidden layer. While the two are similar in theoretical complexity, dot-product attention is much faster and more space-efficient in practice, since it can be implemented using highly optimized matrix multiplication code.

While for small values of d_k the two mechanisms perform similarly, additive attention outperforms dot product attention without scaling for larger values of d_k (cite). We suspect that for large values of d_k, the dot products grow large in magnitude, pushing the softmax function into regions where it has extremely small gradients (To illustrate why the dot products get large, assume that the components of q and k are independent random variables with mean 0 and variance 1. Then their dot product, q \cdot k = \sum_{i=1}^{d_k} q_ik_i, has mean 0 and variance d_k.). To counteract this effect, we scale the dot products by \frac{1}{\sqrt{d_k}}.

Multi-head attention allows the model to jointly attend to information from different representation subspaces at different positions. With a single attention head, averaging inhibits this.

\mathrm{MultiHead}(Q, K, V) = \mathrm{Concat}(\mathrm{head_1}, ..., \mathrm{head_h})W^O \\ \text{where}~\mathrm{head_i} = \mathrm{Attention}(QW^Q_i, KW^K_i, VW^V_i)

Where the projections are parameter matrices W^Q_i \in \mathbb{R}^{d_{\text{model}} \times d_k}, W^K_i \in \mathbb{R}^{d_{\text{model}} \times d_k}, W^V_i \in \mathbb{R}^{d_{\text{model}} \times d_v} and W^O \in \mathbb{R}^{hd_v \times d_{\text{model}}}.

In this work we employ h=8 parallel attention layers, or heads. For each of these we use d_k=d_v=d_{\text{model}}/h=64. Due to the reduced dimension of each head, the total computational cost is similar to that of single-head attention with full dimensionality.

class MultiHeadedAttention(nn.Module):
    def __init__(self, h, d_model, dropout=0.1):
        "Take in model size and number of heads."
        super(MultiHeadedAttention, self).__init__()
        assert d_model % h == 0
        # We assume d_v always equals d_k
        self.d_k = d_model // h
        self.h = h
        self.linears = clones(nn.Linear(d_model, d_model), 4)
        self.attn = None
        self.dropout = nn.Dropout(p=dropout)

    def forward(self, query, key, value, mask=None):
        "Implements Figure 2"
        if mask is not None:
            # Same mask applied to all h heads.
            mask = mask.unsqueeze(1)
        nbatches = query.size(0)

        # 1) Do all the linear projections in batch from d_model => h x d_k
        query, key, value = [
            lin(x).view(nbatches, -1, self.h, self.d_k).transpose(1, 2)
            for lin, x in zip(self.linears, (query, key, value))
        ]

        # 2) Apply attention on all the projected vectors in batch.
        x, self.attn = attention(
            query, key, value, mask=mask, dropout=self.dropout
        )

        # 3) "Concat" using a view and apply a final linear.
        x = (
            x.transpose(1, 2)
            .contiguous()
            .view(nbatches, -1, self.h * self.d_k)
        )
        del query
        del key
        del value
        return self.linears[-1](x)

Applications of Attention in our Model

The Transformer uses multi-head attention in three different ways: 1) In “encoder-decoder attention” layers, the queries come from the previous decoder layer, and the memory keys and values come from the output of the encoder. This allows every position in the decoder to attend over all positions in the input sequence. This mimics the typical encoder-decoder attention mechanisms in sequence-to-sequence models such as (cite).

  1. The encoder contains self-attention layers. In a self-attention layer all of the keys, values and queries come from the same place, in this case, the output of the previous layer in the encoder. Each position in the encoder can attend to all positions in the previous layer of the encoder.

  2. Similarly, self-attention layers in the decoder allow each position in the decoder to attend to all positions in the decoder up to and including that position. We need to prevent leftward information flow in the decoder to preserve the auto-regressive property. We implement this inside of scaled dot-product attention by masking out (setting to -\infty) all values in the input of the softmax which correspond to illegal connections.

Position-wise Feed-Forward Networks

In addition to attention sub-layers, each of the layers in our encoder and decoder contains a fully connected feed-forward network, which is applied to each position separately and identically. This consists of two linear transformations with a ReLU activation in between.

\mathrm{FFN}(x)=\max(0, xW_1 + b_1) W_2 + b_2

While the linear transformations are the same across different positions, they use different parameters from layer to layer. Another way of describing this is as two convolutions with kernel size 1. The dimensionality of input and output is d_{\text{model}}=512, and the inner-layer has dimensionality d_{ff}=2048.

class PositionwiseFeedForward(nn.Module):
    "Implements FFN equation."

    def __init__(self, d_model, d_ff, dropout=0.1):
        super(PositionwiseFeedForward, self).__init__()
        self.w_1 = nn.Linear(d_model, d_ff)
        self.w_2 = nn.Linear(d_ff, d_model)
        self.dropout = nn.Dropout(dropout)

    def forward(self, x):
        return self.w_2(self.dropout(self.w_1(x).relu()))

Embeddings and Softmax

Similarly to other sequence transduction models, we use learned embeddings to convert the input tokens and output tokens to vectors of dimension d_{\text{model}}. We also use the usual learned linear transformation and softmax function to convert the decoder output to predicted next-token probabilities. In our model, we share the same weight matrix between the two embedding layers and the pre-softmax linear transformation, similar to (cite). In the embedding layers, we multiply those weights by \sqrt{d_{\text{model}}}.

class Embeddings(nn.Module):
    def __init__(self, d_model, vocab):
        super(Embeddings, self).__init__()
        self.lut = nn.Embedding(vocab, d_model)
        self.d_model = d_model

    def forward(self, x):
        return self.lut(x) * math.sqrt(self.d_model)

Positional Encoding

Since our model contains no recurrence and no convolution, in order for the model to make use of the order of the sequence, we must inject some information about the relative or absolute position of the tokens in the sequence. To this end, we add “positional encodings” to the input embeddings at the bottoms of the encoder and decoder stacks. The positional encodings have the same dimension d_{\text{model}} as the embeddings, so that the two can be summed. There are many choices of positional encodings, learned and fixed (cite).

In this work, we use sine and cosine functions of different frequencies:

PE_{(pos,2i)} = \sin(pos / 10000^{2i/d_{\text{model}}})

PE_{(pos,2i+1)} = \cos(pos / 10000^{2i/d_{\text{model}}})

where pos is the position and i is the dimension. That is, each dimension of the positional encoding corresponds to a sinusoid. The wavelengths form a geometric progression from 2\pi to 10000 \cdot 2\pi. We chose this function because we hypothesized it would allow the model to easily learn to attend by relative positions, since for any fixed offset k, PE_{pos+k} can be represented as a linear function of PE_{pos}.

In addition, we apply dropout to the sums of the embeddings and the positional encodings in both the encoder and decoder stacks. For the base model, we use a rate of P_{drop}=0.1.

class PositionalEncoding(nn.Module):
    "Implement the PE function."

    def __init__(self, d_model, dropout, max_len=5000):
        super(PositionalEncoding, self).__init__()
        self.dropout = nn.Dropout(p=dropout)

        # Compute the positional encodings once in log space.
        pe = torch.zeros(max_len, d_model)
        position = torch.arange(0, max_len).unsqueeze(1)
        div_term = torch.exp(
            torch.arange(0, d_model, 2) * -(math.log(10000.0) / d_model)
        )
        pe[:, 0::2] = torch.sin(position * div_term)
        pe[:, 1::2] = torch.cos(position * div_term)
        pe = pe.unsqueeze(0)
        self.register_buffer("pe", pe)

    def forward(self, x):
        x = x + self.pe[:, : x.size(1)].requires_grad_(False)
        return self.dropout(x)

Below the positional encoding will add in a sine wave based on position. The frequency and offset of the wave is different for each dimension.

def example_positional():
    pe = PositionalEncoding(20, 0)
    y = pe.forward(torch.zeros(1, 100, 20))

    data = pd.concat(
        [
            pd.DataFrame(
                {
                    "embedding": y[0, :, dim],
                    "dimension": dim,
                    "position": list(range(100)),
                }
            )
            for dim in [4, 5, 6, 7]
        ]
    )

    return (
        alt.Chart(data)
        .mark_line()
        .properties(width=800)
        .encode(x="position", y="embedding", color="dimension:N")
        .interactive()
    )


show_example(example_positional)

We also experimented with using learned positional embeddings (cite) instead, and found that the two versions produced nearly identical results. We chose the sinusoidal version because it may allow the model to extrapolate to sequence lengths longer than the ones encountered during training.

Full Model

Here we define a function from hyperparameters to a full model.

def make_model(
    src_vocab, tgt_vocab, N=6, d_model=512, d_ff=2048, h=8, dropout=0.1
):
    "Helper: Construct a model from hyperparameters."
    c = copy.deepcopy
    attn = MultiHeadedAttention(h, d_model)
    ff = PositionwiseFeedForward(d_model, d_ff, dropout)
    position = PositionalEncoding(d_model, dropout)
    model = EncoderDecoder(
        Encoder(EncoderLayer(d_model, c(attn), c(ff), dropout), N),
        Decoder(DecoderLayer(d_model, c(attn), c(attn), c(ff), dropout), N),
        nn.Sequential(Embeddings(d_model, src_vocab), c(position)),
        nn.Sequential(Embeddings(d_model, tgt_vocab), c(position)),
        Generator(d_model, tgt_vocab),
    )

    # This was important from their code.
    # Initialize parameters with Glorot / fan_avg.
    for p in model.parameters():
        if p.dim() > 1:
            nn.init.xavier_uniform_(p)
    return model

Inference:

Here we make a forward step to generate a prediction of the model. We try to use our transformer to memorize the input. As you will see the output is randomly generated due to the fact that the model is not trained yet. In the next tutorial we will build the training function and try to train our model to memorize the numbers from 1 to 10.

def inference_test():
    test_model = make_model(11, 11, 2)
    test_model.eval()
    src = torch.LongTensor([[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]])
    src_mask = torch.ones(1, 1, 10)

    memory = test_model.encode(src, src_mask)
    ys = torch.zeros(1, 1).type_as(src)

    for i in range(9):
        out = test_model.decode(
            memory, src_mask, ys, subsequent_mask(ys.size(1)).type_as(src.data)
        )
        prob = test_model.generator(out[:, -1])
        _, next_word = torch.max(prob, dim=1)
        next_word = next_word.data[0]
        ys = torch.cat(
            [ys, torch.empty(1, 1).type_as(src.data).fill_(next_word)], dim=1
        )

    print("Example Untrained Model Prediction:", ys)


def run_tests():
    for _ in range(10):
        inference_test()


show_example(run_tests)
Example Untrained Model Prediction: tensor([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]])
Example Untrained Model Prediction: tensor([[0, 3, 4, 4, 4, 4, 4, 4, 4, 4]])
Example Untrained Model Prediction: tensor([[ 0, 10, 10, 10,  3,  2,  5,  7,  9,  6]])
Example Untrained Model Prediction: tensor([[ 0,  4,  3,  6, 10, 10,  2,  6,  2,  2]])
Example Untrained Model Prediction: tensor([[ 0,  9,  0,  1,  5, 10,  1,  5, 10,  6]])
Example Untrained Model Prediction: tensor([[ 0,  1,  5,  1, 10,  1, 10, 10, 10, 10]])
Example Untrained Model Prediction: tensor([[ 0,  1, 10,  9,  9,  9,  9,  9,  1,  5]])
Example Untrained Model Prediction: tensor([[ 0,  3,  1,  5, 10, 10, 10, 10, 10, 10]])
Example Untrained Model Prediction: tensor([[ 0,  3,  5, 10,  5, 10,  4,  2,  4,  2]])
Example Untrained Model Prediction: tensor([[0, 5, 6, 2, 5, 6, 2, 6, 2, 2]])

Part 2: Model Training

Training

This section describes the training regime for our models.

We stop for a quick interlude to introduce some of the tools needed to train a standard encoder decoder model. First we define a batch object that holds the src and target sentences for training, as well as constructing the masks.

Batches and Masking

class Batch:
    """Object for holding a batch of data with mask during training."""

    def __init__(self, src, tgt=None, pad=2):  # 2 = <blank>
        self.src = src
        self.src_mask = (src != pad).unsqueeze(-2)
        if tgt is not None:
            self.tgt = tgt[:, :-1]
            self.tgt_y = tgt[:, 1:]
            self.tgt_mask = self.make_std_mask(self.tgt, pad)
            self.ntokens = (self.tgt_y != pad).data.sum()

    @staticmethod
    def make_std_mask(tgt, pad):
        "Create a mask to hide padding and future words."
        tgt_mask = (tgt != pad).unsqueeze(-2)
        tgt_mask = tgt_mask & subsequent_mask(tgt.size(-1)).type_as(
            tgt_mask.data
        )
        return tgt_mask

Next we create a generic training and scoring function to keep track of loss. We pass in a generic loss compute function that also handles parameter updates.

Training Loop

class TrainState:
    """Track number of steps, examples, and tokens processed"""

    step: int = 0  # Steps in the current epoch
    accum_step: int = 0  # Number of gradient accumulation steps
    samples: int = 0  # total # of examples used
    tokens: int = 0  # total # of tokens processed
def run_epoch(
    data_iter,
    model,
    loss_compute,
    optimizer,
    scheduler,
    mode="train",
    accum_iter=1,
    train_state=TrainState(),
):
    """Train a single epoch"""
    start = time.time()
    total_tokens = 0
    total_loss = 0
    tokens = 0
    n_accum = 0
    for i, batch in enumerate(data_iter):
        out = model.forward(
            batch.src, batch.tgt, batch.src_mask, batch.tgt_mask
        )
        loss, loss_node = loss_compute(out, batch.tgt_y, batch.ntokens)
        # loss_node = loss_node / accum_iter
        if mode == "train" or mode == "train+log":
            loss_node.backward()
            train_state.step += 1
            train_state.samples += batch.src.shape[0]
            train_state.tokens += batch.ntokens
            if i % accum_iter == 0:
                optimizer.step()
                optimizer.zero_grad(set_to_none=True)
                n_accum += 1
                train_state.accum_step += 1
            scheduler.step()

        total_loss += loss
        total_tokens += batch.ntokens
        tokens += batch.ntokens
        if i % 40 == 1 and (mode == "train" or mode == "train+log"):
            lr = optimizer.param_groups[0]["lr"]
            elapsed = time.time() - start
            print(
                (
                    "Epoch Step: %6d | Accumulation Step: %3d | Loss: %6.2f "
                    + "| Tokens / Sec: %7.1f | Learning Rate: %6.1e"
                )
                % (i, n_accum, loss / batch.ntokens, tokens / elapsed, lr)
            )
            start = time.time()
            tokens = 0
        del loss
        del loss_node
    return total_loss / total_tokens, train_state

Training Data and Batching

We trained on the standard WMT 2014 English-German dataset consisting of about 4.5 million sentence pairs. Sentences were encoded using byte-pair encoding, which has a shared source-target vocabulary of about 37000 tokens. For English-French, we used the significantly larger WMT 2014 English-French dataset consisting of 36M sentences and split tokens into a 32000 word-piece vocabulary.

Sentence pairs were batched together by approximate sequence length. Each training batch contained a set of sentence pairs containing approximately 25000 source tokens and 25000 target tokens.

Hardware and Schedule

We trained our models on one machine with 8 NVIDIA P100 GPUs. For our base models using the hyperparameters described throughout the paper, each training step took about 0.4 seconds. We trained the base models for a total of 100,000 steps or 12 hours. For our big models, step time was 1.0 seconds. The big models were trained for 300,000 steps (3.5 days).

Optimizer

We used the Adam optimizer (cite) with \beta_1=0.9, \beta_2=0.98 and \epsilon=10^{-9}. We varied the learning rate over the course of training, according to the formula:

lrate = d_{\text{model}}^{-0.5} \cdot \min({step\_num}^{-0.5}, {step\_num} \cdot {warmup\_steps}^{-1.5})

This corresponds to increasing the learning rate linearly for the first warmup\_steps training steps, and decreasing it thereafter proportionally to the inverse square root of the step number. We used warmup\_steps=4000.

Note: This part is very important. Need to train with this setup of the model.

Example of the curves of this model for different model sizes and for optimization hyperparameters.

def rate(step, model_size, factor, warmup):
    """
    we have to default the step to 1 for LambdaLR function
    to avoid zero raising to negative power.
    """
    if step == 0:
        step = 1
    return factor * (
        model_size ** (-0.5) * min(step ** (-0.5), step * warmup ** (-1.5))
    )
def example_learning_schedule():
    opts = [
        [512, 1, 4000],  # example 1
        [512, 1, 8000],  # example 2
        [256, 1, 4000],  # example 3
    ]

    dummy_model = torch.nn.Linear(1, 1)
    learning_rates = []

    # we have 3 examples in opts list.
    for idx, example in enumerate(opts):
        # run 20000 epoch for each example
        optimizer = torch.optim.Adam(
            dummy_model.parameters(), lr=1, betas=(0.9, 0.98), eps=1e-9
        )
        lr_scheduler = LambdaLR(
            optimizer=optimizer, lr_lambda=lambda step: rate(step, *example)
        )
        tmp = []
        # take 20K dummy training steps, save the learning rate at each step
        for step in range(20000):
            tmp.append(optimizer.param_groups[0]["lr"])
            optimizer.step()
            lr_scheduler.step()
        learning_rates.append(tmp)

    learning_rates = torch.tensor(learning_rates)

    # Enable altair to handle more than 5000 rows
    alt.data_transformers.disable_max_rows()

    opts_data = pd.concat(
        [
            pd.DataFrame(
                {
                    "Learning Rate": learning_rates[warmup_idx, :],
                    "model_size:warmup": ["512:4000", "512:8000", "256:4000"][
                        warmup_idx
                    ],
                    "step": range(20000),
                }
            )
            for warmup_idx in [0, 1, 2]
        ]
    )

    return (
        alt.Chart(opts_data)
        .mark_line()
        .properties(width=600)
        .encode(x="step", y="Learning Rate", color="model_size:warmup:N")
        .interactive()
    )


example_learning_schedule()

Regularization

Label Smoothing

During training, we employed label smoothing of value \epsilon_{ls}=0.1 (cite). This hurts perplexity, as the model learns to be more unsure, but improves accuracy and BLEU score.

We implement label smoothing using the KL div loss. Instead of using a one-hot target distribution, we create a distribution that has confidence of the correct word and the rest of the smoothing mass distributed throughout the vocabulary.

class LabelSmoothing(nn.Module):
    "Implement label smoothing."

    def __init__(self, size, padding_idx, smoothing=0.0):
        super(LabelSmoothing, self).__init__()
        self.criterion = nn.KLDivLoss(reduction="sum")
        self.padding_idx = padding_idx
        self.confidence = 1.0 - smoothing
        self.smoothing = smoothing
        self.size = size
        self.true_dist = None

    def forward(self, x, target):
        assert x.size(1) == self.size
        true_dist = x.data.clone()
        true_dist.fill_(self.smoothing / (self.size - 2))
        true_dist.scatter_(1, target.data.unsqueeze(1), self.confidence)
        true_dist[:, self.padding_idx] = 0
        mask = torch.nonzero(target.data == self.padding_idx)
        if mask.dim() > 0:
            true_dist.index_fill_(0, mask.squeeze(), 0.0)
        self.true_dist = true_dist
        return self.criterion(x, true_dist.clone().detach())

Here we can see an example of how the mass is distributed to the words based on confidence.

# Example of label smoothing.


def example_label_smoothing():
    crit = LabelSmoothing(5, 0, 0.4)
    predict = torch.FloatTensor(
        [
            [0, 0.2, 0.7, 0.1, 0],
            [0, 0.2, 0.7, 0.1, 0],
            [0, 0.2, 0.7, 0.1, 0],
            [0, 0.2, 0.7, 0.1, 0],
            [0, 0.2, 0.7, 0.1, 0],
        ]
    )
    crit(x=predict.log(), target=torch.LongTensor([2, 1, 0, 3, 3]))
    LS_data = pd.concat(
        [
            pd.DataFrame(
                {
                    "target distribution": crit.true_dist[x, y].flatten(),
                    "columns": y,
                    "rows": x,
                }
            )
            for y in range(5)
            for x in range(5)
        ]
    )

    return (
        alt.Chart(LS_data)
        .mark_rect(color="Blue", opacity=1)
        .properties(height=200, width=200)
        .encode(
            alt.X("columns:O", title=None),
            alt.Y("rows:O", title=None),
            alt.Color(
                "target distribution:Q", scale=alt.Scale(scheme="viridis")
            ),
        )
        .interactive()
    )


show_example(example_label_smoothing)

Label smoothing actually starts to penalize the model if it gets very confident about a given choice.



def loss(x, crit):
    d = x + 3 * 1
    predict = torch.FloatTensor([[0, x / d, 1 / d, 1 / d, 1 / d]])
    return crit(predict.log(), torch.LongTensor([1])).data


def penalization_visualization():
    crit = LabelSmoothing(5, 0, 0.1)
    loss_data = pd.DataFrame(
        {
            "Loss": [loss(x, crit) for x in range(1, 100)],
            "Steps": list(range(99)),
        }
    ).astype("float")

    return (
        alt.Chart(loss_data)
        .mark_line()
        .properties(width=350)
        .encode(
            x="Steps",
            y="Loss",
        )
        .interactive()
    )


show_example(penalization_visualization)

A First Example

We can begin by trying out a simple copy-task. Given a random set of input symbols from a small vocabulary, the goal is to generate back those same symbols.

Synthetic Data

def data_gen(V, batch_size, nbatches):
    "Generate random data for a src-tgt copy task."
    for i in range(nbatches):
        data = torch.randint(1, V, size=(batch_size, 10))
        data[:, 0] = 1
        src = data.requires_grad_(False).clone().detach()
        tgt = data.requires_grad_(False).clone().detach()
        yield Batch(src, tgt, 0)

Loss Computation

class SimpleLossCompute:
    "A simple loss compute and train function."

    def __init__(self, generator, criterion):
        self.generator = generator
        self.criterion = criterion

    def __call__(self, x, y, norm):
        x = self.generator(x)
        sloss = (
            self.criterion(
                x.contiguous().view(-1, x.size(-1)), y.contiguous().view(-1)
            )
            / norm
        )
        return sloss.data * norm, sloss

Greedy Decoding

This code predicts a translation using greedy decoding for simplicity.

def greedy_decode(model, src, src_mask, max_len, start_symbol):
    memory = model.encode(src, src_mask)
    ys = torch.zeros(1, 1).fill_(start_symbol).type_as(src.data)
    for i in range(max_len - 1):
        out = model.decode(
            memory, src_mask, ys, subsequent_mask(ys.size(1)).type_as(src.data)
        )
        prob = model.generator(out[:, -1])
        _, next_word = torch.max(prob, dim=1)
        next_word = next_word.data[0]
        ys = torch.cat(
            [ys, torch.zeros(1, 1).type_as(src.data).fill_(next_word)], dim=1
        )
    return ys
# Train the simple copy task.


def example_simple_model():
    V = 11
    criterion = LabelSmoothing(size=V, padding_idx=0, smoothing=0.0)
    model = make_model(V, V, N=2)

    optimizer = torch.optim.Adam(
        model.parameters(), lr=0.5, betas=(0.9, 0.98), eps=1e-9
    )
    lr_scheduler = LambdaLR(
        optimizer=optimizer,
        lr_lambda=lambda step: rate(
            step, model_size=model.src_embed[0].d_model, factor=1.0, warmup=400
        ),
    )

    batch_size = 80
    for epoch in range(20):
        model.train()
        run_epoch(
            data_gen(V, batch_size, 20),
            model,
            SimpleLossCompute(model.generator, criterion),
            optimizer,
            lr_scheduler,
            mode="train",
        )
        model.eval()
        run_epoch(
            data_gen(V, batch_size, 5),
            model,
            SimpleLossCompute(model.generator, criterion),
            DummyOptimizer(),
            DummyScheduler(),
            mode="eval",
        )[0]

    model.eval()
    src = torch.LongTensor([[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]])
    max_len = src.shape[1]
    src_mask = torch.ones(1, 1, max_len)
    print(greedy_decode(model, src, src_mask, max_len=max_len, start_symbol=0))


# execute_example(example_simple_model)

Part 3: A Real World Example

Now we consider a real-world example using the Multi30k German-English Translation task. This task is much smaller than the WMT task considered in the paper, but it illustrates the whole system. We also show how to use multi-gpu processing to make it really fast.

Data Loading

We will load the dataset using torchtext and spacy for tokenization.

# Load spacy tokenizer models, download them if they haven't been
# downloaded already


def load_tokenizers():

    try:
        spacy_de = spacy.load("de_core_news_sm")
    except IOError:
        os.system("python -m spacy download de_core_news_sm")
        spacy_de = spacy.load("de_core_news_sm")

    try:
        spacy_en = spacy.load("en_core_web_sm")
    except IOError:
        os.system("python -m spacy download en_core_web_sm")
        spacy_en = spacy.load("en_core_web_sm")

    return spacy_de, spacy_en
def tokenize(text, tokenizer):
    return [tok.text for tok in tokenizer.tokenizer(text)]


def yield_tokens(data_iter, tokenizer, index):
    for from_to_tuple in data_iter:
        yield tokenizer(from_to_tuple[index])


def build_vocabulary(spacy_de, spacy_en):
    def tokenize_de(text):
        return tokenize(text, spacy_de)

    def tokenize_en(text):
        return tokenize(text, spacy_en)

    print("Building German Vocabulary ...")
    train, val, test = datasets.Multi30k(language_pair=("de", "en"))
    vocab_src = build_vocab_from_iterator(
        yield_tokens(train + val + test, tokenize_de, index=0),
        min_freq=2,
        specials=["<s>", "</s>", "<blank>", "<unk>"],
    )

    print("Building English Vocabulary ...")
    train, val, test = datasets.Multi30k(language_pair=("de", "en"))
    vocab_tgt = build_vocab_from_iterator(
        yield_tokens(train + val + test, tokenize_en, index=1),
        min_freq=2,
        specials=["<s>", "</s>", "<blank>", "<unk>"],
    )

    vocab_src.set_default_index(vocab_src["<unk>"])
    vocab_tgt.set_default_index(vocab_tgt["<unk>"])

    return vocab_src, vocab_tgt


def load_vocab(spacy_de, spacy_en):
    if not exists("vocab.pt"):
        vocab_src, vocab_tgt = build_vocabulary(spacy_de, spacy_en)
        torch.save((vocab_src, vocab_tgt), "vocab.pt")
    else:
        vocab_src, vocab_tgt = torch.load("vocab.pt")
    print("Finished.\nVocabulary sizes:")
    print(len(vocab_src))
    print(len(vocab_tgt))
    return vocab_src, vocab_tgt


if is_interactive_notebook():
    # global variables used later in the script
    spacy_de, spacy_en = show_example(load_tokenizers)
    vocab_src, vocab_tgt = show_example(load_vocab, args=[spacy_de, spacy_en])
Finished.
Vocabulary sizes:
59981
36745

Batching matters a ton for speed. We want to have very evenly divided batches, with absolutely minimal padding. To do this we have to hack a bit around the default torchtext batching. This code patches their default batching to make sure we search over enough sentences to find tight batches.

Iterators

def collate_batch(
    batch,
    src_pipeline,
    tgt_pipeline,
    src_vocab,
    tgt_vocab,
    device,
    max_padding=128,
    pad_id=2,
):
    bs_id = torch.tensor([0], device=device)  # <s> token id
    eos_id = torch.tensor([1], device=device)  # </s> token id
    src_list, tgt_list = [], []
    for (_src, _tgt) in batch:
        processed_src = torch.cat(
            [
                bs_id,
                torch.tensor(
                    src_vocab(src_pipeline(_src)),
                    dtype=torch.int64,
                    device=device,
                ),
                eos_id,
            ],
            0,
        )
        processed_tgt = torch.cat(
            [
                bs_id,
                torch.tensor(
                    tgt_vocab(tgt_pipeline(_tgt)),
                    dtype=torch.int64,
                    device=device,
                ),
                eos_id,
            ],
            0,
        )
        src_list.append(
            # warning - overwrites values for negative values of padding - len
            pad(
                processed_src,
                (
                    0,
                    max_padding - len(processed_src),
                ),
                value=pad_id,
            )
        )
        tgt_list.append(
            pad(
                processed_tgt,
                (0, max_padding - len(processed_tgt)),
                value=pad_id,
            )
        )

    src = torch.stack(src_list)
    tgt = torch.stack(tgt_list)
    return (src, tgt)
def create_dataloaders(
    device,
    vocab_src,
    vocab_tgt,
    spacy_de,
    spacy_en,
    batch_size=12000,
    max_padding=128,
    is_distributed=True,
):
    # def create_dataloaders(batch_size=12000):
    def tokenize_de(text):
        return tokenize(text, spacy_de)

    def tokenize_en(text):
        return tokenize(text, spacy_en)

    def collate_fn(batch):
        return collate_batch(
            batch,
            tokenize_de,
            tokenize_en,
            vocab_src,
            vocab_tgt,
            device,
            max_padding=max_padding,
            pad_id=vocab_src.get_stoi()["<blank>"],
        )

    train_iter, valid_iter, test_iter = datasets.Multi30k(
        language_pair=("de", "en")
    )

    train_iter_map = to_map_style_dataset(
        train_iter
    )  # DistributedSampler needs a dataset len()
    train_sampler = (
        DistributedSampler(train_iter_map) if is_distributed else None
    )
    valid_iter_map = to_map_style_dataset(valid_iter)
    valid_sampler = (
        DistributedSampler(valid_iter_map) if is_distributed else None
    )

    train_dataloader = DataLoader(
        train_iter_map,
        batch_size=batch_size,
        shuffle=(train_sampler is None),
        sampler=train_sampler,
        collate_fn=collate_fn,
    )
    valid_dataloader = DataLoader(
        valid_iter_map,
        batch_size=batch_size,
        shuffle=(valid_sampler is None),
        sampler=valid_sampler,
        collate_fn=collate_fn,
    )
    return train_dataloader, valid_dataloader

Training the System

def train_worker(
    gpu,
    ngpus_per_node,
    vocab_src,
    vocab_tgt,
    spacy_de,
    spacy_en,
    config,
    is_distributed=False,
):
    print(f"Train worker process using GPU: {gpu} for training", flush=True)
    torch.cuda.set_device(gpu)

    pad_idx = vocab_tgt["<blank>"]
    d_model = 512
    model = make_model(len(vocab_src), len(vocab_tgt), N=6)
    model.cuda(gpu)
    module = model
    is_main_process = True
    if is_distributed:
        dist.init_process_group(
            "nccl", init_method="env://", rank=gpu, world_size=ngpus_per_node
        )
        model = DDP(model, device_ids=[gpu])
        module = model.module
        is_main_process = gpu == 0

    criterion = LabelSmoothing(
        size=len(vocab_tgt), padding_idx=pad_idx, smoothing=0.1
    )
    criterion.cuda(gpu)

    train_dataloader, valid_dataloader = create_dataloaders(
        gpu,
        vocab_src,
        vocab_tgt,
        spacy_de,
        spacy_en,
        batch_size=config["batch_size"] // ngpus_per_node,
        max_padding=config["max_padding"],
        is_distributed=is_distributed,
    )

    optimizer = torch.optim.Adam(
        model.parameters(), lr=config["base_lr"], betas=(0.9, 0.98), eps=1e-9
    )
    lr_scheduler = LambdaLR(
        optimizer=optimizer,
        lr_lambda=lambda step: rate(
            step, d_model, factor=1, warmup=config["warmup"]
        ),
    )
    train_state = TrainState()

    for epoch in range(config["num_epochs"]):
        if is_distributed:
            train_dataloader.sampler.set_epoch(epoch)
            valid_dataloader.sampler.set_epoch(epoch)

        model.train()
        print(f"[GPU{gpu}] Epoch {epoch} Training ====", flush=True)
        _, train_state = run_epoch(
            (Batch(b[0], b[1], pad_idx) for b in train_dataloader),
            model,
            SimpleLossCompute(module.generator, criterion),
            optimizer,
            lr_scheduler,
            mode="train+log",
            accum_iter=config["accum_iter"],
            train_state=train_state,
        )

        GPUtil.showUtilization()
        if is_main_process:
            file_path = "%s%.2d.pt" % (config["file_prefix"], epoch)
            torch.save(module.state_dict(), file_path)
        torch.cuda.empty_cache()

        print(f"[GPU{gpu}] Epoch {epoch} Validation ====", flush=True)
        model.eval()
        sloss = run_epoch(
            (Batch(b[0], b[1], pad_idx) for b in valid_dataloader),
            model,
            SimpleLossCompute(module.generator, criterion),
            DummyOptimizer(),
            DummyScheduler(),
            mode="eval",
        )
        print(sloss)
        torch.cuda.empty_cache()

    if is_main_process:
        file_path = "%sfinal.pt" % config["file_prefix"]
        torch.save(module.state_dict(), file_path)
def train_distributed_model(vocab_src, vocab_tgt, spacy_de, spacy_en, config):
    from the_annotated_transformer import train_worker

    ngpus = torch.cuda.device_count()
    os.environ["MASTER_ADDR"] = "localhost"
    os.environ["MASTER_PORT"] = "12356"
    print(f"Number of GPUs detected: {ngpus}")
    print("Spawning training processes ...")
    mp.spawn(
        train_worker,
        nprocs=ngpus,
        args=(ngpus, vocab_src, vocab_tgt, spacy_de, spacy_en, config, True),
    )


def train_model(vocab_src, vocab_tgt, spacy_de, spacy_en, config):
    if config["distributed"]:
        train_distributed_model(
            vocab_src, vocab_tgt, spacy_de, spacy_en, config
        )
    else:
        train_worker(
            0, 1, vocab_src, vocab_tgt, spacy_de, spacy_en, config, False
        )


def load_trained_model():
    config = {
        "batch_size": 32,
        "distributed": False,
        "num_epochs": 8,
        "accum_iter": 10,
        "base_lr": 1.0,
        "max_padding": 72,
        "warmup": 3000,
        "file_prefix": "multi30k_model_",
    }
    model_path = "multi30k_model_final.pt"
    if not exists(model_path):
        train_model(vocab_src, vocab_tgt, spacy_de, spacy_en, config)

    model = make_model(len(vocab_src), len(vocab_tgt), N=6)
    model.load_state_dict(torch.load("multi30k_model_final.pt"))
    return model


if is_interactive_notebook():
    model = load_trained_model()

Once trained we can decode the model to produce a set of translations. Here we simply translate the first sentence in the validation set. This dataset is pretty small so the translations with greedy search are reasonably accurate.

Additional Components: BPE, Search, Averaging

So this mostly covers the transformer model itself. There are four aspects that we didn’t cover explicitly. We also have all these additional features implemented in OpenNMT-py.

  1. BPE/ Word-piece: We can use a library to first preprocess the data into subword units. See Rico Sennrich’s subword-nmt implementation. These models will transform the training data to look like this:

▁Die ▁Protokoll datei ▁kann ▁ heimlich ▁per ▁E - Mail ▁oder ▁FTP ▁an ▁einen ▁bestimmte n ▁Empfänger ▁gesendet ▁werden .

  1. Shared Embeddings: When using BPE with shared vocabulary we can share the same weight vectors between the source / target / generator. See the (cite) for details. To add this to the model simply do this:
if False:
    model.src_embed[0].lut.weight = model.tgt_embeddings[0].lut.weight
    model.generator.lut.weight = model.tgt_embed[0].lut.weight
  1. Beam Search: This is a bit too complicated to cover here. See the OpenNMT-py for a pytorch implementation.
  1. Model Averaging: The paper averages the last k checkpoints to create an ensembling effect. We can do this after the fact if we have a bunch of models:
def average(model, models):
    "Average models into model"
    for ps in zip(*[m.params() for m in [model] + models]):
        ps[0].copy_(torch.sum(*ps[1:]) / len(ps[1:]))

Results

On the WMT 2014 English-to-German translation task, the big transformer model (Transformer (big) in Table 2) outperforms the best previously reported models (including ensembles) by more than 2.0 BLEU, establishing a new state-of-the-art BLEU score of 28.4. The configuration of this model is listed in the bottom line of Table 3. Training took 3.5 days on 8 P100 GPUs. Even our base model surpasses all previously published models and ensembles, at a fraction of the training cost of any of the competitive models.

On the WMT 2014 English-to-French translation task, our big model achieves a BLEU score of 41.0, outperforming all of the previously published single models, at less than 1/4 the training cost of the previous state-of-the-art model. The Transformer (big) model trained for English-to-French used dropout rate Pdrop = 0.1, instead of 0.3.

With the addtional extensions in the last section, the OpenNMT-py replication gets to 26.9 on EN-DE WMT. Here I have loaded in those parameters to our reimplemenation.

# Load data and model for output checks
def check_outputs(
    valid_dataloader,
    model,
    vocab_src,
    vocab_tgt,
    n_examples=15,
    pad_idx=2,
    eos_string="</s>",
):
    results = [()] * n_examples
    for idx in range(n_examples):
        print("\nExample %d ========\n" % idx)
        b = next(iter(valid_dataloader))
        rb = Batch(b[0], b[1], pad_idx)
        greedy_decode(model, rb.src, rb.src_mask, 64, 0)[0]

        src_tokens = [
            vocab_src.get_itos()[x] for x in rb.src[0] if x != pad_idx
        ]
        tgt_tokens = [
            vocab_tgt.get_itos()[x] for x in rb.tgt[0] if x != pad_idx
        ]

        print(
            "Source Text (Input)        : "
            + " ".join(src_tokens).replace("\n", "")
        )
        print(
            "Target Text (Ground Truth) : "
            + " ".join(tgt_tokens).replace("\n", "")
        )
        model_out = greedy_decode(model, rb.src, rb.src_mask, 72, 0)[0]
        model_txt = (
            " ".join(
                [vocab_tgt.get_itos()[x] for x in model_out if x != pad_idx]
            ).split(eos_string, 1)[0]
            + eos_string
        )
        print("Model Output               : " + model_txt.replace("\n", ""))
        results[idx] = (rb, src_tokens, tgt_tokens, model_out, model_txt)
    return results


def run_model_example(n_examples=5):
    global vocab_src, vocab_tgt, spacy_de, spacy_en

    print("Preparing Data ...")
    _, valid_dataloader = create_dataloaders(
        torch.device("cpu"),
        vocab_src,
        vocab_tgt,
        spacy_de,
        spacy_en,
        batch_size=1,
        is_distributed=False,
    )

    print("Loading Trained Model ...")

    model = make_model(len(vocab_src), len(vocab_tgt), N=6)
    model.load_state_dict(
        torch.load("multi30k_model_final.pt", map_location=torch.device("cpu"))
    )

    print("Checking Model Outputs:")
    example_data = check_outputs(
        valid_dataloader, model, vocab_src, vocab_tgt, n_examples=n_examples
    )
    return model, example_data


# execute_example(run_model_example)

Attention Visualization

Even with a greedy decoder the translation looks pretty good. We can further visualize it to see what is happening at each layer of the attention

def mtx2df(m, max_row, max_col, row_tokens, col_tokens):
    "convert a dense matrix to a data frame with row and column indices"
    return pd.DataFrame(
        [
            (
                r,
                c,
                float(m[r, c]),
                "%.3d %s"
                % (r, row_tokens[r] if len(row_tokens) > r else "<blank>"),
                "%.3d %s"
                % (c, col_tokens[c] if len(col_tokens) > c else "<blank>"),
            )
            for r in range(m.shape[0])
            for c in range(m.shape[1])
            if r < max_row and c < max_col
        ],
        # if float(m[r,c]) != 0 and r < max_row and c < max_col],
        columns=["row", "column", "value", "row_token", "col_token"],
    )


def attn_map(attn, layer, head, row_tokens, col_tokens, max_dim=30):
    df = mtx2df(
        attn[0, head].data,
        max_dim,
        max_dim,
        row_tokens,
        col_tokens,
    )
    return (
        alt.Chart(data=df)
        .mark_rect()
        .encode(
            x=alt.X("col_token", axis=alt.Axis(title="")),
            y=alt.Y("row_token", axis=alt.Axis(title="")),
            color="value",
            tooltip=["row", "column", "value", "row_token", "col_token"],
        )
        .properties(height=400, width=400)
        .interactive()
    )
def get_encoder(model, layer):
    return model.encoder.layers[layer].self_attn.attn


def get_decoder_self(model, layer):
    return model.decoder.layers[layer].self_attn.attn


def get_decoder_src(model, layer):
    return model.decoder.layers[layer].src_attn.attn


def visualize_layer(model, layer, getter_fn, ntokens, row_tokens, col_tokens):
    # ntokens = last_example[0].ntokens
    attn = getter_fn(model, layer)
    n_heads = attn.shape[1]
    charts = [
        attn_map(
            attn,
            0,
            h,
            row_tokens=row_tokens,
            col_tokens=col_tokens,
            max_dim=ntokens,
        )
        for h in range(n_heads)
    ]
    assert n_heads == 8
    return alt.vconcat(
        charts[0]
        # | charts[1]
        | charts[2]
        # | charts[3]
        | charts[4]
        # | charts[5]
        | charts[6]
        # | charts[7]
        # layer + 1 due to 0-indexing
    ).properties(title="Layer %d" % (layer + 1))

Encoder Self Attention

def viz_encoder_self():
    model, example_data = run_model_example(n_examples=1)
    example = example_data[
        len(example_data) - 1
    ]  # batch object for the final example

    layer_viz = [
        visualize_layer(
            model, layer, get_encoder, len(example[1]), example[1], example[1]
        )
        for layer in range(6)
    ]
    return alt.hconcat(
        layer_viz[0]
        # & layer_viz[1]
        & layer_viz[2]
        # & layer_viz[3]
        & layer_viz[4]
        # & layer_viz[5]
    )


show_example(viz_encoder_self)
Preparing Data ...
Loading Trained Model ...
Checking Model Outputs:

Example 0 ========

Source Text (Input)        : <s> Zwei Frauen in pinkfarbenen T-Shirts und <unk> unterhalten sich vor einem <unk> . </s>
Target Text (Ground Truth) : <s> Two women wearing pink T - shirts and blue jeans converse outside clothing store . </s>
Model Output               : <s> Two women in pink shirts and face are talking in front of a <unk> . </s>

Decoder Self Attention

def viz_decoder_self():
    model, example_data = run_model_example(n_examples=1)
    example = example_data[len(example_data) - 1]

    layer_viz = [
        visualize_layer(
            model,
            layer,
            get_decoder_self,
            len(example[1]),
            example[1],
            example[1],
        )
        for layer in range(6)
    ]
    return alt.hconcat(
        layer_viz[0]
        & layer_viz[1]
        & layer_viz[2]
        & layer_viz[3]
        & layer_viz[4]
        & layer_viz[5]
    )


show_example(viz_decoder_self)
Preparing Data ...
Loading Trained Model ...
Checking Model Outputs:

Example 0 ========

Source Text (Input)        : <s> Eine Gruppe von Männern in Kostümen spielt Musik . </s>
Target Text (Ground Truth) : <s> A group of men in costume play music . </s>
Model Output               : <s> A group of men in costumes playing music . </s>

Decoder Src Attention

def viz_decoder_src():
    model, example_data = run_model_example(n_examples=1)
    example = example_data[len(example_data) - 1]

    layer_viz = [
        visualize_layer(
            model,
            layer,
            get_decoder_src,
            max(len(example[1]), len(example[2])),
            example[1],
            example[2],
        )
        for layer in range(6)
    ]
    return alt.hconcat(
        layer_viz[0]
        & layer_viz[1]
        & layer_viz[2]
        & layer_viz[3]
        & layer_viz[4]
        & layer_viz[5]
    )


show_example(viz_decoder_src)
Preparing Data ...
Loading Trained Model ...
Checking Model Outputs:

Example 0 ========

Source Text (Input)        : <s> Ein kleiner Junge verwendet einen Bohrer , um ein Loch in ein Holzstück zu machen . </s>
Target Text (Ground Truth) : <s> A little boy using a drill to make a hole in a piece of wood . </s>
Model Output               : <s> A little boy uses a machine to be working in a hole in a log . </s>

Conclusion

Hopefully this code is useful for future research. Please reach out if you have any issues.

Cheers, Sasha Rush, Austin Huang, Suraj Subramanian, Jonathan Sum, Khalid Almubarak, Stella Biderman

================================================ FILE: docs/tufte.css ================================================ /* Import ET Book styles adapted from https://github.com/edwardtufte/et-book/blob/gh-pages/et-book.css */ @charset "UTF-8"; @font-face { font-family: "et-book"; src: url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff") format("woff"); font-weight: normal; font-style: normal } @font-face { font-family: "et-book"; src: url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff") format("woff"); font-weight: normal; font-style: italic } @font-face { font-family: "et-book"; src: url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff") format("woff"); font-weight: bold; font-style: normal } @font-face { font-family: "et-book-roman-old-style"; src: url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff") format("woff"); font-weight: normal; font-style: normal; } /* Tufte CSS styles */ html { font-size: 15px; } body { width: 58rem; margin-left: auto; margin-right: auto; padding: 0 2rem 8rem 2rem; font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif; background-color: white; color: #404444; max-width: 99%; box-sizing: border-box; counter-reset: sidenote-counter; } h1 { font-weight: 400; margin-top: 4rem; margin-bottom: 1.5rem; font-size: 3rem; line-height: 1; } h2 { font-weight: 400; margin-top: 2.1rem; margin-bottom: 0; font-size: 2rem; line-height: 1; } h3 { font-weight: 400; font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0; line-height: 1; } p.subtitle { font-style: italic; margin-top: 1rem; margin-bottom: 1rem; font-size: 1.8rem; display: block; line-height: 1; } .numeral { font-family: et-book-roman-old-style; } .danger { color: red; } article { position: relative; padding: 5rem 0rem; } section { padding-top: 1rem; padding-bottom: 1rem; } p, ol, ul { font-size: 1.3rem; } p { line-height: 2rem; margin-top: 1.4rem; margin-bottom: 1.4rem; padding-right: 0; vertical-align: baseline; } /* Chapter Epigraphs */ div.epigraph { margin: 5em 0; } div.epigraph > blockquote { margin-top: 3em; margin-bottom: 3em; } div.epigraph > blockquote, div.epigraph > blockquote > p { font-style: italic; } div.epigraph > blockquote > footer { font-style: normal; } div.epigraph > blockquote > footer > cite { font-style: italic; } /* end chapter epigraphs styles */ blockquote { border-left: 4px solid #cccccc; font-size: 1.4rem; font-style: normal; margin: 2rem 0; padding-left: 2rem; padding-right: 2rem; } blockquote p { padding-bottom: 6px; } blockquote footer { font-size: 1.1rem; text-align: right; } ol, ul { padding-left: 2rem; -webkit-padding-start: 5%; -webkit-padding-end: 5%; } li { margin: 1rem 0; } li p { margin-bottom: 0.5rem; margin-top: 0.5rem; } figure { padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; -webkit-margin-start: 0; -webkit-margin-end: 0; margin: 0 0 3em 0; } figcaption { float: right; clear: right; margin-right: -48%; margin-top: 0; margin-bottom: 0; font-size: 1.1rem; line-height: 1.6; vertical-align: baseline; position: relative; } figure.fullwidth figcaption { margin-right: 24%; } /* Links: replicate underline that clears descenders */ a:link, a:visited { color: inherit; } a:link { text-decoration: none; background: -webkit-linear-gradient(#fffff8, #fffff8), -webkit-linear-gradient(#fffff8, #fffff8), -webkit-linear-gradient(#333, #333); background: linear-gradient(#fffff8, #fffff8), linear-gradient(#fffff8, #fffff8), linear-gradient(#333, #333); -webkit-background-size: 0.05em 1px, 0.05em 1px, 1px 1px; -moz-background-size: 0.05em 1px, 0.05em 1px, 1px 1px; background-size: 0.05em 1px, 0.05em 1px, 1px 1px; background-repeat: no-repeat, no-repeat, repeat-x; text-shadow: 0.03em 0 #fffff8, -0.03em 0 #fffff8, 0 0.03em #fffff8, 0 -0.03em #fffff8, 0.06em 0 #fffff8, -0.06em 0 #fffff8, 0.09em 0 #fffff8, -0.09em 0 #fffff8, 0.12em 0 #fffff8, -0.12em 0 #fffff8, 0.15em 0 #fffff8, -0.15em 0 #fffff8; background-position: 0% 93%, 100% 93%, 0% 93%; } @media screen and (-webkit-min-device-pixel-ratio: 0) { a:link { background-position-y: 87%, 87%, 87%; } } a:link::selection { text-shadow: 0.03em 0 #b4d5fe, -0.03em 0 #b4d5fe, 0 0.03em #b4d5fe, 0 -0.03em #b4d5fe, 0.06em 0 #b4d5fe, -0.06em 0 #b4d5fe, 0.09em 0 #b4d5fe, -0.09em 0 #b4d5fe, 0.12em 0 #b4d5fe, -0.12em 0 #b4d5fe, 0.15em 0 #b4d5fe, -0.15em 0 #b4d5fe; background: #b4d5fe; } a:link::-moz-selection { text-shadow: 0.03em 0 #b4d5fe, -0.03em 0 #b4d5fe, 0 0.03em #b4d5fe, 0 -0.03em #b4d5fe, 0.06em 0 #b4d5fe, -0.06em 0 #b4d5fe, 0.09em 0 #b4d5fe, -0.09em 0 #b4d5fe, 0.12em 0 #b4d5fe, -0.12em 0 #b4d5fe, 0.15em 0 #b4d5fe, -0.15em 0 #b4d5fe; background: #b4d5fe; } /* Hide the faux underline */ a img { vertical-align: bottom; } /* Sidenotes, margin notes, figures, captions */ img { } .sidenote, .marginnote { float: right; clear: right; margin-right: -60%; margin-top: 0; margin-bottom: 0; font-size: 1.1rem; line-height: 1.3; vertical-align: baseline; position: relative; } .table-caption { float:right; clear:right; margin-right: -60%; margin-top: 0; margin-bottom: 0; font-size: 1.0rem; line-height: 1.6; } .sidenote-number { counter-increment: sidenote-counter; } .sidenote-number:after, .sidenote:before { content: counter(sidenote-counter) " "; font-family: et-book-roman-old-style; position: relative; vertical-align: baseline; } .sidenote-number:after { content: counter(sidenote-counter); font-size: 1rem; top: -0.5rem; left: 0.1rem; } .sidenote:before { content: counter(sidenote-counter) " "; top: -0.5rem; } p, footer, table, div.table-wrapper-small, div.supertable-wrapper > p, div.booktabs-wrapper { } div.fullwidth, table.fullwidth { } div.table-wrapper { overflow-x: scroll; font-family: "Trebuchet MS", "Gill Sans", "Gill Sans MT", sans-serif; } .sans { font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif; letter-spacing: .03em; } code, .code { font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 1.0rem; line-height: 1.6; } pre > code.hljs { background: hsl(0deg 0% 97%); padding: 30px } h1 .code, h2 .code, h3 .code { font-size: 0.80em; } .marginnote .code, .sidenote .code { font-size: 1rem; } pre.code { padding-left: 2.5%; overflow-x: scroll; } .fullwidth { clear:both; } span.newthought { font-variant: small-caps; font-size: 1.2em; } input.margin-toggle { display: none; } label.sidenote-number { display: inline; } label.margin-toggle:not(.sidenote-number) { display: none; } img { display: block; margin-left: auto; margin-right: auto; } div.vega-embed { display: block; margin-left: auto; margin-right: auto; } canvas { display: block; margin-left: auto; margin-right: auto; } /* Tables */ table { border-collapse: collapse; font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif; font-size: 1.125rem; margin: 2rem 0; } th { border-bottom: 2px solid #cccccc; font-weight: normal; padding: 0.4em 0.8em; } td { padding: 0.4em 0.8em; } < ================================================ FILE: requirements.txt ================================================ --find-links https://download.pytorch.org/whl/torch_stable.html pandas==1.3.5 torch==1.11.0+cu113 torchdata==0.3.0 torchtext==0.12 spacy==3.2 altair==4.1 jupytext==1.13 flake8 black GPUtil wandb ================================================ FILE: the_annotated_transformer.py ================================================ # -*- coding: utf-8 -*- # --- # jupyter: # jupytext: # formats: ipynb,py:percent # text_representation: # extension: .py # format_name: percent # format_version: '1.3' # jupytext_version: 1.13.0 # kernelspec: # display_name: Python 3 (ipykernel) # language: python # name: python3 # --- # %% [markdown] id="SX7UC-8jTsp7" tags=[] # #

The Annotated Transformer

# # #
#

Attention is All You Need #

#
# # # # * *v2022: Austin Huang, Suraj Subramanian, Jonathan Sum, Khalid Almubarak, # and Stella Biderman.* # * *[Original](https://nlp.seas.harvard.edu/2018/04/03/attention.html): # [Sasha Rush](http://rush-nlp.com/).* # # # The Transformer has been on a lot of # people's minds over the last year five years. # This post presents an annotated version of the paper in the # form of a line-by-line implementation. It reorders and deletes # some sections from the original paper and adds comments # throughout. This document itself is a working notebook, and should # be a completely usable implementation. # Code is available # [here](https://github.com/harvardnlp/annotated-transformer/). # # %% [markdown] id="RSntDwKhTsp-" #

Table of Contents

# # %% [markdown] id="BhmOhn9lTsp8" # # Prelims # # Skip # %% id="NwClcbH6Tsp8" # # !pip install -r requirements.txt # %% id="NwClcbH6Tsp8" # # Uncomment for colab # # # # !pip install -q torchdata==0.3.0 torchtext==0.12 spacy==3.2 altair GPUtil # # !python -m spacy download de_core_news_sm # # !python -m spacy download en_core_web_sm # %% id="v1-1MX6oTsp9" import os from os.path import exists import torch import torch.nn as nn from torch.nn.functional import log_softmax, pad import math import copy import time from torch.optim.lr_scheduler import LambdaLR import pandas as pd import altair as alt from torchtext.data.functional import to_map_style_dataset from torch.utils.data import DataLoader from torchtext.vocab import build_vocab_from_iterator import torchtext.datasets as datasets import spacy import GPUtil import warnings from torch.utils.data.distributed import DistributedSampler import torch.distributed as dist import torch.multiprocessing as mp from torch.nn.parallel import DistributedDataParallel as DDP # Set to False to skip notebook execution (e.g. for debugging) warnings.filterwarnings("ignore") RUN_EXAMPLES = True # %% # Some convenience helper functions used throughout the notebook def is_interactive_notebook(): return __name__ == "__main__" def show_example(fn, args=[]): if __name__ == "__main__" and RUN_EXAMPLES: return fn(*args) def execute_example(fn, args=[]): if __name__ == "__main__" and RUN_EXAMPLES: fn(*args) class DummyOptimizer(torch.optim.Optimizer): def __init__(self): self.param_groups = [{"lr": 0}] None def step(self): None def zero_grad(self, set_to_none=False): None class DummyScheduler: def step(self): None # %% [markdown] id="jx49WRyfTsp-" # > My comments are blockquoted. The main text is all from the paper itself. # %% [markdown] id="7phVeWghTsp_" # # Background # %% [markdown] id="83ZDS91dTsqA" # # The goal of reducing sequential computation also forms the # foundation of the Extended Neural GPU, ByteNet and ConvS2S, all of # which use convolutional neural networks as basic building block, # computing hidden representations in parallel for all input and # output positions. In these models, the number of operations required # to relate signals from two arbitrary input or output positions grows # in the distance between positions, linearly for ConvS2S and # logarithmically for ByteNet. This makes it more difficult to learn # dependencies between distant positions. In the Transformer this is # reduced to a constant number of operations, albeit at the cost of # reduced effective resolution due to averaging attention-weighted # positions, an effect we counteract with Multi-Head Attention. # # Self-attention, sometimes called intra-attention is an attention # mechanism relating different positions of a single sequence in order # to compute a representation of the sequence. Self-attention has been # used successfully in a variety of tasks including reading # comprehension, abstractive summarization, textual entailment and # learning task-independent sentence representations. End-to-end # memory networks are based on a recurrent attention mechanism instead # of sequencealigned recurrence and have been shown to perform well on # simple-language question answering and language modeling tasks. # # To the best of our knowledge, however, the Transformer is the first # transduction model relying entirely on self-attention to compute # representations of its input and output without using sequence # aligned RNNs or convolution. # %% [markdown] # # Part 1: Model Architecture # %% [markdown] id="pFrPajezTsqB" # # Model Architecture # %% [markdown] id="ReuU_h-fTsqB" # # Most competitive neural sequence transduction models have an # encoder-decoder structure # [(cite)](https://arxiv.org/abs/1409.0473). Here, the encoder maps an # input sequence of symbol representations $(x_1, ..., x_n)$ to a # sequence of continuous representations $\mathbf{z} = (z_1, ..., # z_n)$. Given $\mathbf{z}$, the decoder then generates an output # sequence $(y_1,...,y_m)$ of symbols one element at a time. At each # step the model is auto-regressive # [(cite)](https://arxiv.org/abs/1308.0850), consuming the previously # generated symbols as additional input when generating the next. # %% id="k0XGXhzRTsqB" class EncoderDecoder(nn.Module): """ A standard Encoder-Decoder architecture. Base for this and many other models. """ def __init__(self, encoder, decoder, src_embed, tgt_embed, generator): super(EncoderDecoder, self).__init__() self.encoder = encoder self.decoder = decoder self.src_embed = src_embed self.tgt_embed = tgt_embed self.generator = generator def forward(self, src, tgt, src_mask, tgt_mask): "Take in and process masked src and target sequences." return self.decode(self.encode(src, src_mask), src_mask, tgt, tgt_mask) def encode(self, src, src_mask): return self.encoder(self.src_embed(src), src_mask) def decode(self, memory, src_mask, tgt, tgt_mask): return self.decoder(self.tgt_embed(tgt), memory, src_mask, tgt_mask) # %% id="NKGoH2RsTsqC" class Generator(nn.Module): "Define standard linear + softmax generation step." def __init__(self, d_model, vocab): super(Generator, self).__init__() self.proj = nn.Linear(d_model, vocab) def forward(self, x): return log_softmax(self.proj(x), dim=-1) # %% [markdown] id="mOoEnF_jTsqC" # # The Transformer follows this overall architecture using stacked # self-attention and point-wise, fully connected layers for both the # encoder and decoder, shown in the left and right halves of Figure 1, # respectively. # %% [markdown] id="oredWloYTsqC" # ![](images/ModalNet-21.png) # %% [markdown] id="bh092NZBTsqD" # ## Encoder and Decoder Stacks # # ### Encoder # # The encoder is composed of a stack of $N=6$ identical layers. # %% id="2gxTApUYTsqD" def clones(module, N): "Produce N identical layers." return nn.ModuleList([copy.deepcopy(module) for _ in range(N)]) # %% id="xqVTz9MkTsqD" class Encoder(nn.Module): "Core encoder is a stack of N layers" def __init__(self, layer, N): super(Encoder, self).__init__() self.layers = clones(layer, N) self.norm = LayerNorm(layer.size) def forward(self, x, mask): "Pass the input (and mask) through each layer in turn." for layer in self.layers: x = layer(x, mask) return self.norm(x) # %% [markdown] id="GjAKgjGwTsqD" # # We employ a residual connection # [(cite)](https://arxiv.org/abs/1512.03385) around each of the two # sub-layers, followed by layer normalization # [(cite)](https://arxiv.org/abs/1607.06450). # %% id="3jKa_prZTsqE" class LayerNorm(nn.Module): "Construct a layernorm module (See citation for details)." def __init__(self, features, eps=1e-6): super(LayerNorm, self).__init__() self.a_2 = nn.Parameter(torch.ones(features)) self.b_2 = nn.Parameter(torch.zeros(features)) self.eps = eps def forward(self, x): mean = x.mean(-1, keepdim=True) std = x.std(-1, keepdim=True) return self.a_2 * (x - mean) / (std + self.eps) + self.b_2 # %% [markdown] id="nXSJ3QYmTsqE" # # That is, the output of each sub-layer is $\mathrm{LayerNorm}(x + # \mathrm{Sublayer}(x))$, where $\mathrm{Sublayer}(x)$ is the function # implemented by the sub-layer itself. We apply dropout # [(cite)](http://jmlr.org/papers/v15/srivastava14a.html) to the # output of each sub-layer, before it is added to the sub-layer input # and normalized. # # To facilitate these residual connections, all sub-layers in the # model, as well as the embedding layers, produce outputs of dimension # $d_{\text{model}}=512$. # %% id="U1P7zI0eTsqE" class SublayerConnection(nn.Module): """ A residual connection followed by a layer norm. Note for code simplicity the norm is first as opposed to last. """ def __init__(self, size, dropout): super(SublayerConnection, self).__init__() self.norm = LayerNorm(size) self.dropout = nn.Dropout(dropout) def forward(self, x, sublayer): "Apply residual connection to any sublayer with the same size." return x + self.dropout(sublayer(self.norm(x))) # %% [markdown] id="ML6oDlEqTsqE" # # Each layer has two sub-layers. The first is a multi-head # self-attention mechanism, and the second is a simple, position-wise # fully connected feed-forward network. # %% id="qYkUFr6GTsqE" class EncoderLayer(nn.Module): "Encoder is made up of self-attn and feed forward (defined below)" def __init__(self, size, self_attn, feed_forward, dropout): super(EncoderLayer, self).__init__() self.self_attn = self_attn self.feed_forward = feed_forward self.sublayer = clones(SublayerConnection(size, dropout), 2) self.size = size def forward(self, x, mask): "Follow Figure 1 (left) for connections." x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, mask)) return self.sublayer[1](x, self.feed_forward) # %% [markdown] id="7ecOQIhkTsqF" # ### Decoder # # The decoder is also composed of a stack of $N=6$ identical layers. # # %% class Decoder(nn.Module): "Generic N layer decoder with masking." def __init__(self, layer, N): super(Decoder, self).__init__() self.layers = clones(layer, N) self.norm = LayerNorm(layer.size) def forward(self, x, memory, src_mask, tgt_mask): for layer in self.layers: x = layer(x, memory, src_mask, tgt_mask) return self.norm(x) # %% [markdown] id="dXlCB12pTsqF" # # In addition to the two sub-layers in each encoder layer, the decoder # inserts a third sub-layer, which performs multi-head attention over # the output of the encoder stack. Similar to the encoder, we employ # residual connections around each of the sub-layers, followed by # layer normalization. # %% id="M2hA1xFQTsqF" class DecoderLayer(nn.Module): "Decoder is made of self-attn, src-attn, and feed forward (defined below)" def __init__(self, size, self_attn, src_attn, feed_forward, dropout): super(DecoderLayer, self).__init__() self.size = size self.self_attn = self_attn self.src_attn = src_attn self.feed_forward = feed_forward self.sublayer = clones(SublayerConnection(size, dropout), 3) def forward(self, x, memory, src_mask, tgt_mask): "Follow Figure 1 (right) for connections." m = memory x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, tgt_mask)) x = self.sublayer[1](x, lambda x: self.src_attn(x, m, m, src_mask)) return self.sublayer[2](x, self.feed_forward) # %% [markdown] id="FZz5rLl4TsqF" # # We also modify the self-attention sub-layer in the decoder stack to # prevent positions from attending to subsequent positions. This # masking, combined with fact that the output embeddings are offset by # one position, ensures that the predictions for position $i$ can # depend only on the known outputs at positions less than $i$. # %% id="QN98O2l3TsqF" def subsequent_mask(size): "Mask out subsequent positions." attn_shape = (1, size, size) subsequent_mask = torch.triu(torch.ones(attn_shape), diagonal=1).type( torch.uint8 ) return subsequent_mask == 0 # %% [markdown] id="Vg_f_w-PTsqG" # # > Below the attention mask shows the position each tgt word (row) is # > allowed to look at (column). Words are blocked for attending to # > future words during training. # %% id="ht_FtgYAokC4" def example_mask(): LS_data = pd.concat( [ pd.DataFrame( { "Subsequent Mask": subsequent_mask(20)[0][x, y].flatten(), "Window": y, "Masking": x, } ) for y in range(20) for x in range(20) ] ) return ( alt.Chart(LS_data) .mark_rect() .properties(height=250, width=250) .encode( alt.X("Window:O"), alt.Y("Masking:O"), alt.Color("Subsequent Mask:Q", scale=alt.Scale(scheme="viridis")), ) .interactive() ) show_example(example_mask) # %% [markdown] id="Qto_yg7BTsqG" # ### Attention # # An attention function can be described as mapping a query and a set # of key-value pairs to an output, where the query, keys, values, and # output are all vectors. The output is computed as a weighted sum of # the values, where the weight assigned to each value is computed by a # compatibility function of the query with the corresponding key. # # We call our particular attention "Scaled Dot-Product Attention". # The input consists of queries and keys of dimension $d_k$, and # values of dimension $d_v$. We compute the dot products of the query # with all keys, divide each by $\sqrt{d_k}$, and apply a softmax # function to obtain the weights on the values. # # # # ![](images/ModalNet-19.png) # %% [markdown] id="EYJLWk6cTsqG" # # In practice, we compute the attention function on a set of queries # simultaneously, packed together into a matrix $Q$. The keys and # values are also packed together into matrices $K$ and $V$. We # compute the matrix of outputs as: # # $$ # \mathrm{Attention}(Q, K, V) = \mathrm{softmax}(\frac{QK^T}{\sqrt{d_k}})V # $$ # %% id="qsoVxS5yTsqG" def attention(query, key, value, mask=None, dropout=None): "Compute 'Scaled Dot Product Attention'" d_k = query.size(-1) scores = torch.matmul(query, key.transpose(-2, -1)) / math.sqrt(d_k) if mask is not None: scores = scores.masked_fill(mask == 0, -1e9) p_attn = scores.softmax(dim=-1) if dropout is not None: p_attn = dropout(p_attn) return torch.matmul(p_attn, value), p_attn # %% [markdown] id="jUkpwu8kTsqG" # # The two most commonly used attention functions are additive # attention [(cite)](https://arxiv.org/abs/1409.0473), and dot-product # (multiplicative) attention. Dot-product attention is identical to # our algorithm, except for the scaling factor of # $\frac{1}{\sqrt{d_k}}$. Additive attention computes the # compatibility function using a feed-forward network with a single # hidden layer. While the two are similar in theoretical complexity, # dot-product attention is much faster and more space-efficient in # practice, since it can be implemented using highly optimized matrix # multiplication code. # # # While for small values of $d_k$ the two mechanisms perform # similarly, additive attention outperforms dot product attention # without scaling for larger values of $d_k$ # [(cite)](https://arxiv.org/abs/1703.03906). We suspect that for # large values of $d_k$, the dot products grow large in magnitude, # pushing the softmax function into regions where it has extremely # small gradients (To illustrate why the dot products get large, # assume that the components of $q$ and $k$ are independent random # variables with mean $0$ and variance $1$. Then their dot product, # $q \cdot k = \sum_{i=1}^{d_k} q_ik_i$, has mean $0$ and variance # $d_k$.). To counteract this effect, we scale the dot products by # $\frac{1}{\sqrt{d_k}}$. # # # %% [markdown] id="bS1FszhVTsqG" # ![](images/ModalNet-20.png) # %% [markdown] id="TNtVyZ-pTsqH" # # Multi-head attention allows the model to jointly attend to # information from different representation subspaces at different # positions. With a single attention head, averaging inhibits this. # # $$ # \mathrm{MultiHead}(Q, K, V) = # \mathrm{Concat}(\mathrm{head_1}, ..., \mathrm{head_h})W^O \\ # \text{where}~\mathrm{head_i} = \mathrm{Attention}(QW^Q_i, KW^K_i, VW^V_i) # $$ # # Where the projections are parameter matrices $W^Q_i \in # \mathbb{R}^{d_{\text{model}} \times d_k}$, $W^K_i \in # \mathbb{R}^{d_{\text{model}} \times d_k}$, $W^V_i \in # \mathbb{R}^{d_{\text{model}} \times d_v}$ and $W^O \in # \mathbb{R}^{hd_v \times d_{\text{model}}}$. # # In this work we employ $h=8$ parallel attention layers, or # heads. For each of these we use $d_k=d_v=d_{\text{model}}/h=64$. Due # to the reduced dimension of each head, the total computational cost # is similar to that of single-head attention with full # dimensionality. # %% id="D2LBMKCQTsqH" class MultiHeadedAttention(nn.Module): def __init__(self, h, d_model, dropout=0.1): "Take in model size and number of heads." super(MultiHeadedAttention, self).__init__() assert d_model % h == 0 # We assume d_v always equals d_k self.d_k = d_model // h self.h = h self.linears = clones(nn.Linear(d_model, d_model), 4) self.attn = None self.dropout = nn.Dropout(p=dropout) def forward(self, query, key, value, mask=None): "Implements Figure 2" if mask is not None: # Same mask applied to all h heads. mask = mask.unsqueeze(1) nbatches = query.size(0) # 1) Do all the linear projections in batch from d_model => h x d_k query, key, value = [ lin(x).view(nbatches, -1, self.h, self.d_k).transpose(1, 2) for lin, x in zip(self.linears, (query, key, value)) ] # 2) Apply attention on all the projected vectors in batch. x, self.attn = attention( query, key, value, mask=mask, dropout=self.dropout ) # 3) "Concat" using a view and apply a final linear. x = ( x.transpose(1, 2) .contiguous() .view(nbatches, -1, self.h * self.d_k) ) del query del key del value return self.linears[-1](x) # %% [markdown] id="EDRba3J3TsqH" # ### Applications of Attention in our Model # # The Transformer uses multi-head attention in three different ways: # 1) In "encoder-decoder attention" layers, the queries come from the # previous decoder layer, and the memory keys and values come from the # output of the encoder. This allows every position in the decoder to # attend over all positions in the input sequence. This mimics the # typical encoder-decoder attention mechanisms in sequence-to-sequence # models such as [(cite)](https://arxiv.org/abs/1609.08144). # # # 2) The encoder contains self-attention layers. In a self-attention # layer all of the keys, values and queries come from the same place, # in this case, the output of the previous layer in the encoder. Each # position in the encoder can attend to all positions in the previous # layer of the encoder. # # # 3) Similarly, self-attention layers in the decoder allow each # position in the decoder to attend to all positions in the decoder up # to and including that position. We need to prevent leftward # information flow in the decoder to preserve the auto-regressive # property. We implement this inside of scaled dot-product attention # by masking out (setting to $-\infty$) all values in the input of the # softmax which correspond to illegal connections. # %% [markdown] id="M-en97_GTsqH" # ## Position-wise Feed-Forward Networks # # In addition to attention sub-layers, each of the layers in our # encoder and decoder contains a fully connected feed-forward network, # which is applied to each position separately and identically. This # consists of two linear transformations with a ReLU activation in # between. # # $$\mathrm{FFN}(x)=\max(0, xW_1 + b_1) W_2 + b_2$$ # # While the linear transformations are the same across different # positions, they use different parameters from layer to # layer. Another way of describing this is as two convolutions with # kernel size 1. The dimensionality of input and output is # $d_{\text{model}}=512$, and the inner-layer has dimensionality # $d_{ff}=2048$. # %% id="6HHCemCxTsqH" class PositionwiseFeedForward(nn.Module): "Implements FFN equation." def __init__(self, d_model, d_ff, dropout=0.1): super(PositionwiseFeedForward, self).__init__() self.w_1 = nn.Linear(d_model, d_ff) self.w_2 = nn.Linear(d_ff, d_model) self.dropout = nn.Dropout(dropout) def forward(self, x): return self.w_2(self.dropout(self.w_1(x).relu())) # %% [markdown] id="dR1YM520TsqH" # ## Embeddings and Softmax # # Similarly to other sequence transduction models, we use learned # embeddings to convert the input tokens and output tokens to vectors # of dimension $d_{\text{model}}$. We also use the usual learned # linear transformation and softmax function to convert the decoder # output to predicted next-token probabilities. In our model, we # share the same weight matrix between the two embedding layers and # the pre-softmax linear transformation, similar to # [(cite)](https://arxiv.org/abs/1608.05859). In the embedding layers, # we multiply those weights by $\sqrt{d_{\text{model}}}$. # %% id="pyrChq9qTsqH" class Embeddings(nn.Module): def __init__(self, d_model, vocab): super(Embeddings, self).__init__() self.lut = nn.Embedding(vocab, d_model) self.d_model = d_model def forward(self, x): return self.lut(x) * math.sqrt(self.d_model) # %% [markdown] id="vOkdui-cTsqH" # ## Positional Encoding # # Since our model contains no recurrence and no convolution, in order # for the model to make use of the order of the sequence, we must # inject some information about the relative or absolute position of # the tokens in the sequence. To this end, we add "positional # encodings" to the input embeddings at the bottoms of the encoder and # decoder stacks. The positional encodings have the same dimension # $d_{\text{model}}$ as the embeddings, so that the two can be summed. # There are many choices of positional encodings, learned and fixed # [(cite)](https://arxiv.org/pdf/1705.03122.pdf). # # In this work, we use sine and cosine functions of different frequencies: # # $$PE_{(pos,2i)} = \sin(pos / 10000^{2i/d_{\text{model}}})$$ # # $$PE_{(pos,2i+1)} = \cos(pos / 10000^{2i/d_{\text{model}}})$$ # # where $pos$ is the position and $i$ is the dimension. That is, each # dimension of the positional encoding corresponds to a sinusoid. The # wavelengths form a geometric progression from $2\pi$ to $10000 \cdot # 2\pi$. We chose this function because we hypothesized it would # allow the model to easily learn to attend by relative positions, # since for any fixed offset $k$, $PE_{pos+k}$ can be represented as a # linear function of $PE_{pos}$. # # In addition, we apply dropout to the sums of the embeddings and the # positional encodings in both the encoder and decoder stacks. For # the base model, we use a rate of $P_{drop}=0.1$. # # # %% id="zaHGD4yJTsqH" class PositionalEncoding(nn.Module): "Implement the PE function." def __init__(self, d_model, dropout, max_len=5000): super(PositionalEncoding, self).__init__() self.dropout = nn.Dropout(p=dropout) # Compute the positional encodings once in log space. pe = torch.zeros(max_len, d_model) position = torch.arange(0, max_len).unsqueeze(1) div_term = torch.exp( torch.arange(0, d_model, 2) * -(math.log(10000.0) / d_model) ) pe[:, 0::2] = torch.sin(position * div_term) pe[:, 1::2] = torch.cos(position * div_term) pe = pe.unsqueeze(0) self.register_buffer("pe", pe) def forward(self, x): x = x + self.pe[:, : x.size(1)].requires_grad_(False) return self.dropout(x) # %% [markdown] id="EfHacTJLTsqH" # # > Below the positional encoding will add in a sine wave based on # > position. The frequency and offset of the wave is different for # > each dimension. # %% id="rnvHk_1QokC6" type="example" def example_positional(): pe = PositionalEncoding(20, 0) y = pe.forward(torch.zeros(1, 100, 20)) data = pd.concat( [ pd.DataFrame( { "embedding": y[0, :, dim], "dimension": dim, "position": list(range(100)), } ) for dim in [4, 5, 6, 7] ] ) return ( alt.Chart(data) .mark_line() .properties(width=800) .encode(x="position", y="embedding", color="dimension:N") .interactive() ) show_example(example_positional) # %% [markdown] id="g8rZNCrzTsqI" # # We also experimented with using learned positional embeddings # [(cite)](https://arxiv.org/pdf/1705.03122.pdf) instead, and found # that the two versions produced nearly identical results. We chose # the sinusoidal version because it may allow the model to extrapolate # to sequence lengths longer than the ones encountered during # training. # %% [markdown] id="iwNKCzlyTsqI" # ## Full Model # # > Here we define a function from hyperparameters to a full model. # %% id="mPe1ES0UTsqI" def make_model( src_vocab, tgt_vocab, N=6, d_model=512, d_ff=2048, h=8, dropout=0.1 ): "Helper: Construct a model from hyperparameters." c = copy.deepcopy attn = MultiHeadedAttention(h, d_model) ff = PositionwiseFeedForward(d_model, d_ff, dropout) position = PositionalEncoding(d_model, dropout) model = EncoderDecoder( Encoder(EncoderLayer(d_model, c(attn), c(ff), dropout), N), Decoder(DecoderLayer(d_model, c(attn), c(attn), c(ff), dropout), N), nn.Sequential(Embeddings(d_model, src_vocab), c(position)), nn.Sequential(Embeddings(d_model, tgt_vocab), c(position)), Generator(d_model, tgt_vocab), ) # This was important from their code. # Initialize parameters with Glorot / fan_avg. for p in model.parameters(): if p.dim() > 1: nn.init.xavier_uniform_(p) return model # %% [markdown] # ## Inference: # # > Here we make a forward step to generate a prediction of the # model. We try to use our transformer to memorize the input. As you # will see the output is randomly generated due to the fact that the # model is not trained yet. In the next tutorial we will build the # training function and try to train our model to memorize the numbers # from 1 to 10. # %% def inference_test(): test_model = make_model(11, 11, 2) test_model.eval() src = torch.LongTensor([[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]]) src_mask = torch.ones(1, 1, 10) memory = test_model.encode(src, src_mask) ys = torch.zeros(1, 1).type_as(src) for i in range(9): out = test_model.decode( memory, src_mask, ys, subsequent_mask(ys.size(1)).type_as(src.data) ) prob = test_model.generator(out[:, -1]) _, next_word = torch.max(prob, dim=1) next_word = next_word.data[0] ys = torch.cat( [ys, torch.empty(1, 1).type_as(src.data).fill_(next_word)], dim=1 ) print("Example Untrained Model Prediction:", ys) def run_tests(): for _ in range(10): inference_test() show_example(run_tests) # %% [markdown] # # Part 2: Model Training # %% [markdown] id="05s6oT9fTsqI" # # Training # # This section describes the training regime for our models. # %% [markdown] id="fTxlofs4TsqI" # # > We stop for a quick interlude to introduce some of the tools # > needed to train a standard encoder decoder model. First we define a # > batch object that holds the src and target sentences for training, # > as well as constructing the masks. # %% [markdown] id="G7SkCenXTsqI" # ## Batches and Masking # %% class Batch: """Object for holding a batch of data with mask during training.""" def __init__(self, src, tgt=None, pad=2): # 2 = self.src = src self.src_mask = (src != pad).unsqueeze(-2) if tgt is not None: self.tgt = tgt[:, :-1] self.tgt_y = tgt[:, 1:] self.tgt_mask = self.make_std_mask(self.tgt, pad) self.ntokens = (self.tgt_y != pad).data.sum() @staticmethod def make_std_mask(tgt, pad): "Create a mask to hide padding and future words." tgt_mask = (tgt != pad).unsqueeze(-2) tgt_mask = tgt_mask & subsequent_mask(tgt.size(-1)).type_as( tgt_mask.data ) return tgt_mask # %% [markdown] id="cKkw5GjLTsqI" # # > Next we create a generic training and scoring function to keep # > track of loss. We pass in a generic loss compute function that # > also handles parameter updates. # %% [markdown] id="Q8zzeUc0TsqJ" # ## Training Loop # %% class TrainState: """Track number of steps, examples, and tokens processed""" step: int = 0 # Steps in the current epoch accum_step: int = 0 # Number of gradient accumulation steps samples: int = 0 # total # of examples used tokens: int = 0 # total # of tokens processed # %% id="2HAZD3hiTsqJ" def run_epoch( data_iter, model, loss_compute, optimizer, scheduler, mode="train", accum_iter=1, train_state=TrainState(), ): """Train a single epoch""" start = time.time() total_tokens = 0 total_loss = 0 tokens = 0 n_accum = 0 for i, batch in enumerate(data_iter): out = model.forward( batch.src, batch.tgt, batch.src_mask, batch.tgt_mask ) loss, loss_node = loss_compute(out, batch.tgt_y, batch.ntokens) # loss_node = loss_node / accum_iter if mode == "train" or mode == "train+log": loss_node.backward() train_state.step += 1 train_state.samples += batch.src.shape[0] train_state.tokens += batch.ntokens if i % accum_iter == 0: optimizer.step() optimizer.zero_grad(set_to_none=True) n_accum += 1 train_state.accum_step += 1 scheduler.step() total_loss += loss total_tokens += batch.ntokens tokens += batch.ntokens if i % 40 == 1 and (mode == "train" or mode == "train+log"): lr = optimizer.param_groups[0]["lr"] elapsed = time.time() - start print( ( "Epoch Step: %6d | Accumulation Step: %3d | Loss: %6.2f " + "| Tokens / Sec: %7.1f | Learning Rate: %6.1e" ) % (i, n_accum, loss / batch.ntokens, tokens / elapsed, lr) ) start = time.time() tokens = 0 del loss del loss_node return total_loss / total_tokens, train_state # %% [markdown] id="aB1IF0foTsqJ" # ## Training Data and Batching # # We trained on the standard WMT 2014 English-German dataset # consisting of about 4.5 million sentence pairs. Sentences were # encoded using byte-pair encoding, which has a shared source-target # vocabulary of about 37000 tokens. For English-French, we used the # significantly larger WMT 2014 English-French dataset consisting of # 36M sentences and split tokens into a 32000 word-piece vocabulary. # # # Sentence pairs were batched together by approximate sequence length. # Each training batch contained a set of sentence pairs containing # approximately 25000 source tokens and 25000 target tokens. # %% [markdown] id="F1mTQatiTsqJ" jp-MarkdownHeadingCollapsed=true tags=[] # ## Hardware and Schedule # # We trained our models on one machine with 8 NVIDIA P100 GPUs. For # our base models using the hyperparameters described throughout the # paper, each training step took about 0.4 seconds. We trained the # base models for a total of 100,000 steps or 12 hours. For our big # models, step time was 1.0 seconds. The big models were trained for # 300,000 steps (3.5 days). # %% [markdown] id="-utZeuGcTsqJ" # ## Optimizer # # We used the Adam optimizer [(cite)](https://arxiv.org/abs/1412.6980) # with $\beta_1=0.9$, $\beta_2=0.98$ and $\epsilon=10^{-9}$. We # varied the learning rate over the course of training, according to # the formula: # # $$ # lrate = d_{\text{model}}^{-0.5} \cdot # \min({step\_num}^{-0.5}, # {step\_num} \cdot {warmup\_steps}^{-1.5}) # $$ # # This corresponds to increasing the learning rate linearly for the # first $warmup\_steps$ training steps, and decreasing it thereafter # proportionally to the inverse square root of the step number. We # used $warmup\_steps=4000$. # %% [markdown] id="39FbYnt-TsqJ" # # > Note: This part is very important. Need to train with this setup # > of the model. # %% [markdown] id="hlbojFkjTsqJ" # # > Example of the curves of this model for different model sizes and # > for optimization hyperparameters. # %% id="zUz3PdAnVg4o" def rate(step, model_size, factor, warmup): """ we have to default the step to 1 for LambdaLR function to avoid zero raising to negative power. """ if step == 0: step = 1 return factor * ( model_size ** (-0.5) * min(step ** (-0.5), step * warmup ** (-1.5)) ) # %% id="l1bnrlnSV8J5" tags=[] def example_learning_schedule(): opts = [ [512, 1, 4000], # example 1 [512, 1, 8000], # example 2 [256, 1, 4000], # example 3 ] dummy_model = torch.nn.Linear(1, 1) learning_rates = [] # we have 3 examples in opts list. for idx, example in enumerate(opts): # run 20000 epoch for each example optimizer = torch.optim.Adam( dummy_model.parameters(), lr=1, betas=(0.9, 0.98), eps=1e-9 ) lr_scheduler = LambdaLR( optimizer=optimizer, lr_lambda=lambda step: rate(step, *example) ) tmp = [] # take 20K dummy training steps, save the learning rate at each step for step in range(20000): tmp.append(optimizer.param_groups[0]["lr"]) optimizer.step() lr_scheduler.step() learning_rates.append(tmp) learning_rates = torch.tensor(learning_rates) # Enable altair to handle more than 5000 rows alt.data_transformers.disable_max_rows() opts_data = pd.concat( [ pd.DataFrame( { "Learning Rate": learning_rates[warmup_idx, :], "model_size:warmup": ["512:4000", "512:8000", "256:4000"][ warmup_idx ], "step": range(20000), } ) for warmup_idx in [0, 1, 2] ] ) return ( alt.Chart(opts_data) .mark_line() .properties(width=600) .encode(x="step", y="Learning Rate", color="model_size:warmup:N") .interactive() ) example_learning_schedule() # %% [markdown] id="7T1uD15VTsqK" # ## Regularization # # ### Label Smoothing # # During training, we employed label smoothing of value # $\epsilon_{ls}=0.1$ [(cite)](https://arxiv.org/abs/1512.00567). # This hurts perplexity, as the model learns to be more unsure, but # improves accuracy and BLEU score. # %% [markdown] id="kNoAVD8bTsqK" # # > We implement label smoothing using the KL div loss. Instead of # > using a one-hot target distribution, we create a distribution that # > has `confidence` of the correct word and the rest of the # > `smoothing` mass distributed throughout the vocabulary. # %% id="shU2GyiETsqK" class LabelSmoothing(nn.Module): "Implement label smoothing." def __init__(self, size, padding_idx, smoothing=0.0): super(LabelSmoothing, self).__init__() self.criterion = nn.KLDivLoss(reduction="sum") self.padding_idx = padding_idx self.confidence = 1.0 - smoothing self.smoothing = smoothing self.size = size self.true_dist = None def forward(self, x, target): assert x.size(1) == self.size true_dist = x.data.clone() true_dist.fill_(self.smoothing / (self.size - 2)) true_dist.scatter_(1, target.data.unsqueeze(1), self.confidence) true_dist[:, self.padding_idx] = 0 mask = torch.nonzero(target.data == self.padding_idx) if mask.dim() > 0: true_dist.index_fill_(0, mask.squeeze(), 0.0) self.true_dist = true_dist return self.criterion(x, true_dist.clone().detach()) # %% [markdown] id="jCxUrlUyTsqK" # # > Here we can see an example of how the mass is distributed to the # > words based on confidence. # %% id="EZtKaaQNTsqK" # Example of label smoothing. def example_label_smoothing(): crit = LabelSmoothing(5, 0, 0.4) predict = torch.FloatTensor( [ [0, 0.2, 0.7, 0.1, 0], [0, 0.2, 0.7, 0.1, 0], [0, 0.2, 0.7, 0.1, 0], [0, 0.2, 0.7, 0.1, 0], [0, 0.2, 0.7, 0.1, 0], ] ) crit(x=predict.log(), target=torch.LongTensor([2, 1, 0, 3, 3])) LS_data = pd.concat( [ pd.DataFrame( { "target distribution": crit.true_dist[x, y].flatten(), "columns": y, "rows": x, } ) for y in range(5) for x in range(5) ] ) return ( alt.Chart(LS_data) .mark_rect(color="Blue", opacity=1) .properties(height=200, width=200) .encode( alt.X("columns:O", title=None), alt.Y("rows:O", title=None), alt.Color( "target distribution:Q", scale=alt.Scale(scheme="viridis") ), ) .interactive() ) show_example(example_label_smoothing) # %% [markdown] id="CGM8J1veTsqK" # # > Label smoothing actually starts to penalize the model if it gets # > very confident about a given choice. # %% id="78EHzLP7TsqK" def loss(x, crit): d = x + 3 * 1 predict = torch.FloatTensor([[0, x / d, 1 / d, 1 / d, 1 / d]]) return crit(predict.log(), torch.LongTensor([1])).data def penalization_visualization(): crit = LabelSmoothing(5, 0, 0.1) loss_data = pd.DataFrame( { "Loss": [loss(x, crit) for x in range(1, 100)], "Steps": list(range(99)), } ).astype("float") return ( alt.Chart(loss_data) .mark_line() .properties(width=350) .encode( x="Steps", y="Loss", ) .interactive() ) show_example(penalization_visualization) # %% [markdown] id="67lUqeLXTsqK" # # A First Example # # > We can begin by trying out a simple copy-task. Given a random set # > of input symbols from a small vocabulary, the goal is to generate # > back those same symbols. # %% [markdown] id="jJa-89_pTsqK" # ## Synthetic Data # %% id="g1aTxeqqTsqK" def data_gen(V, batch_size, nbatches): "Generate random data for a src-tgt copy task." for i in range(nbatches): data = torch.randint(1, V, size=(batch_size, 10)) data[:, 0] = 1 src = data.requires_grad_(False).clone().detach() tgt = data.requires_grad_(False).clone().detach() yield Batch(src, tgt, 0) # %% [markdown] id="XTXwD9hUTsqK" # ## Loss Computation # %% id="3J8EJm87TsqK" class SimpleLossCompute: "A simple loss compute and train function." def __init__(self, generator, criterion): self.generator = generator self.criterion = criterion def __call__(self, x, y, norm): x = self.generator(x) sloss = ( self.criterion( x.contiguous().view(-1, x.size(-1)), y.contiguous().view(-1) ) / norm ) return sloss.data * norm, sloss # %% [markdown] id="eDAI7ELUTsqL" # ## Greedy Decoding # %% [markdown] id="LFkWakplTsqL" tags=[] # > This code predicts a translation using greedy decoding for simplicity. # %% id="N2UOpnT3bIyU" def greedy_decode(model, src, src_mask, max_len, start_symbol): memory = model.encode(src, src_mask) ys = torch.zeros(1, 1).fill_(start_symbol).type_as(src.data) for i in range(max_len - 1): out = model.decode( memory, src_mask, ys, subsequent_mask(ys.size(1)).type_as(src.data) ) prob = model.generator(out[:, -1]) _, next_word = torch.max(prob, dim=1) next_word = next_word.data[0] ys = torch.cat( [ys, torch.zeros(1, 1).type_as(src.data).fill_(next_word)], dim=1 ) return ys # %% id="qgIZ2yEtdYwe" tags=[] # Train the simple copy task. def example_simple_model(): V = 11 criterion = LabelSmoothing(size=V, padding_idx=0, smoothing=0.0) model = make_model(V, V, N=2) optimizer = torch.optim.Adam( model.parameters(), lr=0.5, betas=(0.9, 0.98), eps=1e-9 ) lr_scheduler = LambdaLR( optimizer=optimizer, lr_lambda=lambda step: rate( step, model_size=model.src_embed[0].d_model, factor=1.0, warmup=400 ), ) batch_size = 80 for epoch in range(20): model.train() run_epoch( data_gen(V, batch_size, 20), model, SimpleLossCompute(model.generator, criterion), optimizer, lr_scheduler, mode="train", ) model.eval() run_epoch( data_gen(V, batch_size, 5), model, SimpleLossCompute(model.generator, criterion), DummyOptimizer(), DummyScheduler(), mode="eval", )[0] model.eval() src = torch.LongTensor([[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]]) max_len = src.shape[1] src_mask = torch.ones(1, 1, max_len) print(greedy_decode(model, src, src_mask, max_len=max_len, start_symbol=0)) # execute_example(example_simple_model) # %% [markdown] id="OpuQv2GsTsqL" # # Part 3: A Real World Example # # > Now we consider a real-world example using the Multi30k # > German-English Translation task. This task is much smaller than # > the WMT task considered in the paper, but it illustrates the whole # > system. We also show how to use multi-gpu processing to make it # > really fast. # %% [markdown] id="8y9dpfolTsqL" tags=[] # ## Data Loading # # > We will load the dataset using torchtext and spacy for # > tokenization. # %% # Load spacy tokenizer models, download them if they haven't been # downloaded already def load_tokenizers(): try: spacy_de = spacy.load("de_core_news_sm") except IOError: os.system("python -m spacy download de_core_news_sm") spacy_de = spacy.load("de_core_news_sm") try: spacy_en = spacy.load("en_core_web_sm") except IOError: os.system("python -m spacy download en_core_web_sm") spacy_en = spacy.load("en_core_web_sm") return spacy_de, spacy_en # %% id="t4BszXXJTsqL" tags=[] def tokenize(text, tokenizer): return [tok.text for tok in tokenizer.tokenizer(text)] def yield_tokens(data_iter, tokenizer, index): for from_to_tuple in data_iter: yield tokenizer(from_to_tuple[index]) # %% id="jU3kVlV5okC-" tags=[] def build_vocabulary(spacy_de, spacy_en): def tokenize_de(text): return tokenize(text, spacy_de) def tokenize_en(text): return tokenize(text, spacy_en) print("Building German Vocabulary ...") train, val, test = datasets.Multi30k(language_pair=("de", "en")) vocab_src = build_vocab_from_iterator( yield_tokens(train + val + test, tokenize_de, index=0), min_freq=2, specials=["", "", "", ""], ) print("Building English Vocabulary ...") train, val, test = datasets.Multi30k(language_pair=("de", "en")) vocab_tgt = build_vocab_from_iterator( yield_tokens(train + val + test, tokenize_en, index=1), min_freq=2, specials=["", "", "", ""], ) vocab_src.set_default_index(vocab_src[""]) vocab_tgt.set_default_index(vocab_tgt[""]) return vocab_src, vocab_tgt def load_vocab(spacy_de, spacy_en): if not exists("vocab.pt"): vocab_src, vocab_tgt = build_vocabulary(spacy_de, spacy_en) torch.save((vocab_src, vocab_tgt), "vocab.pt") else: vocab_src, vocab_tgt = torch.load("vocab.pt") print("Finished.\nVocabulary sizes:") print(len(vocab_src)) print(len(vocab_tgt)) return vocab_src, vocab_tgt if is_interactive_notebook(): # global variables used later in the script spacy_de, spacy_en = show_example(load_tokenizers) vocab_src, vocab_tgt = show_example(load_vocab, args=[spacy_de, spacy_en]) # %% [markdown] id="-l-TFwzfTsqL" # # > Batching matters a ton for speed. We want to have very evenly # > divided batches, with absolutely minimal padding. To do this we # > have to hack a bit around the default torchtext batching. This # > code patches their default batching to make sure we search over # > enough sentences to find tight batches. # %% [markdown] id="kDEj-hCgokC-" tags=[] jp-MarkdownHeadingCollapsed=true # ## Iterators # %% id="wGsIHFgOokC_" tags=[] def collate_batch( batch, src_pipeline, tgt_pipeline, src_vocab, tgt_vocab, device, max_padding=128, pad_id=2, ): bs_id = torch.tensor([0], device=device) # token id eos_id = torch.tensor([1], device=device) # token id src_list, tgt_list = [], [] for (_src, _tgt) in batch: processed_src = torch.cat( [ bs_id, torch.tensor( src_vocab(src_pipeline(_src)), dtype=torch.int64, device=device, ), eos_id, ], 0, ) processed_tgt = torch.cat( [ bs_id, torch.tensor( tgt_vocab(tgt_pipeline(_tgt)), dtype=torch.int64, device=device, ), eos_id, ], 0, ) src_list.append( # warning - overwrites values for negative values of padding - len pad( processed_src, ( 0, max_padding - len(processed_src), ), value=pad_id, ) ) tgt_list.append( pad( processed_tgt, (0, max_padding - len(processed_tgt)), value=pad_id, ) ) src = torch.stack(src_list) tgt = torch.stack(tgt_list) return (src, tgt) # %% id="ka2Ce_WIokC_" tags=[] def create_dataloaders( device, vocab_src, vocab_tgt, spacy_de, spacy_en, batch_size=12000, max_padding=128, is_distributed=True, ): # def create_dataloaders(batch_size=12000): def tokenize_de(text): return tokenize(text, spacy_de) def tokenize_en(text): return tokenize(text, spacy_en) def collate_fn(batch): return collate_batch( batch, tokenize_de, tokenize_en, vocab_src, vocab_tgt, device, max_padding=max_padding, pad_id=vocab_src.get_stoi()[""], ) train_iter, valid_iter, test_iter = datasets.Multi30k( language_pair=("de", "en") ) train_iter_map = to_map_style_dataset( train_iter ) # DistributedSampler needs a dataset len() train_sampler = ( DistributedSampler(train_iter_map) if is_distributed else None ) valid_iter_map = to_map_style_dataset(valid_iter) valid_sampler = ( DistributedSampler(valid_iter_map) if is_distributed else None ) train_dataloader = DataLoader( train_iter_map, batch_size=batch_size, shuffle=(train_sampler is None), sampler=train_sampler, collate_fn=collate_fn, ) valid_dataloader = DataLoader( valid_iter_map, batch_size=batch_size, shuffle=(valid_sampler is None), sampler=valid_sampler, collate_fn=collate_fn, ) return train_dataloader, valid_dataloader # %% [markdown] id="90qM8RzCTsqM" # ## Training the System # %% def train_worker( gpu, ngpus_per_node, vocab_src, vocab_tgt, spacy_de, spacy_en, config, is_distributed=False, ): print(f"Train worker process using GPU: {gpu} for training", flush=True) torch.cuda.set_device(gpu) pad_idx = vocab_tgt[""] d_model = 512 model = make_model(len(vocab_src), len(vocab_tgt), N=6) model.cuda(gpu) module = model is_main_process = True if is_distributed: dist.init_process_group( "nccl", init_method="env://", rank=gpu, world_size=ngpus_per_node ) model = DDP(model, device_ids=[gpu]) module = model.module is_main_process = gpu == 0 criterion = LabelSmoothing( size=len(vocab_tgt), padding_idx=pad_idx, smoothing=0.1 ) criterion.cuda(gpu) train_dataloader, valid_dataloader = create_dataloaders( gpu, vocab_src, vocab_tgt, spacy_de, spacy_en, batch_size=config["batch_size"] // ngpus_per_node, max_padding=config["max_padding"], is_distributed=is_distributed, ) optimizer = torch.optim.Adam( model.parameters(), lr=config["base_lr"], betas=(0.9, 0.98), eps=1e-9 ) lr_scheduler = LambdaLR( optimizer=optimizer, lr_lambda=lambda step: rate( step, d_model, factor=1, warmup=config["warmup"] ), ) train_state = TrainState() for epoch in range(config["num_epochs"]): if is_distributed: train_dataloader.sampler.set_epoch(epoch) valid_dataloader.sampler.set_epoch(epoch) model.train() print(f"[GPU{gpu}] Epoch {epoch} Training ====", flush=True) _, train_state = run_epoch( (Batch(b[0], b[1], pad_idx) for b in train_dataloader), model, SimpleLossCompute(module.generator, criterion), optimizer, lr_scheduler, mode="train+log", accum_iter=config["accum_iter"], train_state=train_state, ) GPUtil.showUtilization() if is_main_process: file_path = "%s%.2d.pt" % (config["file_prefix"], epoch) torch.save(module.state_dict(), file_path) torch.cuda.empty_cache() print(f"[GPU{gpu}] Epoch {epoch} Validation ====", flush=True) model.eval() sloss = run_epoch( (Batch(b[0], b[1], pad_idx) for b in valid_dataloader), model, SimpleLossCompute(module.generator, criterion), DummyOptimizer(), DummyScheduler(), mode="eval", ) print(sloss) torch.cuda.empty_cache() if is_main_process: file_path = "%sfinal.pt" % config["file_prefix"] torch.save(module.state_dict(), file_path) # %% tags=[] def train_distributed_model(vocab_src, vocab_tgt, spacy_de, spacy_en, config): from the_annotated_transformer import train_worker ngpus = torch.cuda.device_count() os.environ["MASTER_ADDR"] = "localhost" os.environ["MASTER_PORT"] = "12356" print(f"Number of GPUs detected: {ngpus}") print("Spawning training processes ...") mp.spawn( train_worker, nprocs=ngpus, args=(ngpus, vocab_src, vocab_tgt, spacy_de, spacy_en, config, True), ) def train_model(vocab_src, vocab_tgt, spacy_de, spacy_en, config): if config["distributed"]: train_distributed_model( vocab_src, vocab_tgt, spacy_de, spacy_en, config ) else: train_worker( 0, 1, vocab_src, vocab_tgt, spacy_de, spacy_en, config, False ) def load_trained_model(): config = { "batch_size": 32, "distributed": False, "num_epochs": 8, "accum_iter": 10, "base_lr": 1.0, "max_padding": 72, "warmup": 3000, "file_prefix": "multi30k_model_", } model_path = "multi30k_model_final.pt" if not exists(model_path): train_model(vocab_src, vocab_tgt, spacy_de, spacy_en, config) model = make_model(len(vocab_src), len(vocab_tgt), N=6) model.load_state_dict(torch.load("multi30k_model_final.pt")) return model if is_interactive_notebook(): model = load_trained_model() # %% [markdown] id="RZK_VjDPTsqN" # # > Once trained we can decode the model to produce a set of # > translations. Here we simply translate the first sentence in the # > validation set. This dataset is pretty small so the translations # > with greedy search are reasonably accurate. # %% [markdown] id="L50i0iEXTsqN" # # Additional Components: BPE, Search, Averaging # %% [markdown] id="NBx1C2_NTsqN" # # > So this mostly covers the transformer model itself. There are four # > aspects that we didn't cover explicitly. We also have all these # > additional features implemented in # > [OpenNMT-py](https://github.com/opennmt/opennmt-py). # # # %% [markdown] id="UpqV1mWnTsqN" # # > 1) BPE/ Word-piece: We can use a library to first preprocess the # > data into subword units. See Rico Sennrich's # > [subword-nmt](https://github.com/rsennrich/subword-nmt) # > implementation. These models will transform the training data to # > look like this: # %% [markdown] id="hwJ_9J0BTsqN" # ▁Die ▁Protokoll datei ▁kann ▁ heimlich ▁per ▁E - Mail ▁oder ▁FTP # ▁an ▁einen ▁bestimmte n ▁Empfänger ▁gesendet ▁werden . # %% [markdown] id="9HwejYkpTsqN" # # > 2) Shared Embeddings: When using BPE with shared vocabulary we can # > share the same weight vectors between the source / target / # > generator. See the [(cite)](https://arxiv.org/abs/1608.05859) for # > details. To add this to the model simply do this: # %% id="tb3j3CYLTsqN" tags=[] if False: model.src_embed[0].lut.weight = model.tgt_embeddings[0].lut.weight model.generator.lut.weight = model.tgt_embed[0].lut.weight # %% [markdown] id="xDKJsSwRTsqN" # # > 3) Beam Search: This is a bit too complicated to cover here. See the # > [OpenNMT-py](https://github.com/OpenNMT/OpenNMT-py/) # > for a pytorch implementation. # > # # %% [markdown] id="wf3vVYGZTsqN" # # > 4) Model Averaging: The paper averages the last k checkpoints to # > create an ensembling effect. We can do this after the fact if we # > have a bunch of models: # %% id="hAFEa78JokDB" def average(model, models): "Average models into model" for ps in zip(*[m.params() for m in [model] + models]): ps[0].copy_(torch.sum(*ps[1:]) / len(ps[1:])) # %% [markdown] id="Kz5BYJ9sTsqO" # # Results # # On the WMT 2014 English-to-German translation task, the big # transformer model (Transformer (big) in Table 2) outperforms the # best previously reported models (including ensembles) by more than # 2.0 BLEU, establishing a new state-of-the-art BLEU score of # 28.4. The configuration of this model is listed in the bottom line # of Table 3. Training took 3.5 days on 8 P100 GPUs. Even our base # model surpasses all previously published models and ensembles, at a # fraction of the training cost of any of the competitive models. # # On the WMT 2014 English-to-French translation task, our big model # achieves a BLEU score of 41.0, outperforming all of the previously # published single models, at less than 1/4 the training cost of the # previous state-of-the-art model. The Transformer (big) model trained # for English-to-French used dropout rate Pdrop = 0.1, instead of 0.3. # # %% [markdown] # ![](images/results.png) # %% [markdown] id="cPcnsHvQTsqO" # # # > With the addtional extensions in the last section, the OpenNMT-py # > replication gets to 26.9 on EN-DE WMT. Here I have loaded in those # > parameters to our reimplemenation. # %% # Load data and model for output checks # %% def check_outputs( valid_dataloader, model, vocab_src, vocab_tgt, n_examples=15, pad_idx=2, eos_string="", ): results = [()] * n_examples for idx in range(n_examples): print("\nExample %d ========\n" % idx) b = next(iter(valid_dataloader)) rb = Batch(b[0], b[1], pad_idx) greedy_decode(model, rb.src, rb.src_mask, 64, 0)[0] src_tokens = [ vocab_src.get_itos()[x] for x in rb.src[0] if x != pad_idx ] tgt_tokens = [ vocab_tgt.get_itos()[x] for x in rb.tgt[0] if x != pad_idx ] print( "Source Text (Input) : " + " ".join(src_tokens).replace("\n", "") ) print( "Target Text (Ground Truth) : " + " ".join(tgt_tokens).replace("\n", "") ) model_out = greedy_decode(model, rb.src, rb.src_mask, 72, 0)[0] model_txt = ( " ".join( [vocab_tgt.get_itos()[x] for x in model_out if x != pad_idx] ).split(eos_string, 1)[0] + eos_string ) print("Model Output : " + model_txt.replace("\n", "")) results[idx] = (rb, src_tokens, tgt_tokens, model_out, model_txt) return results def run_model_example(n_examples=5): global vocab_src, vocab_tgt, spacy_de, spacy_en print("Preparing Data ...") _, valid_dataloader = create_dataloaders( torch.device("cpu"), vocab_src, vocab_tgt, spacy_de, spacy_en, batch_size=1, is_distributed=False, ) print("Loading Trained Model ...") model = make_model(len(vocab_src), len(vocab_tgt), N=6) model.load_state_dict( torch.load("multi30k_model_final.pt", map_location=torch.device("cpu")) ) print("Checking Model Outputs:") example_data = check_outputs( valid_dataloader, model, vocab_src, vocab_tgt, n_examples=n_examples ) return model, example_data # execute_example(run_model_example) # %% [markdown] id="0ZkkNTKLTsqO" # ## Attention Visualization # # > Even with a greedy decoder the translation looks pretty good. We # > can further visualize it to see what is happening at each layer of # > the attention # %% def mtx2df(m, max_row, max_col, row_tokens, col_tokens): "convert a dense matrix to a data frame with row and column indices" return pd.DataFrame( [ ( r, c, float(m[r, c]), "%.3d %s" % (r, row_tokens[r] if len(row_tokens) > r else ""), "%.3d %s" % (c, col_tokens[c] if len(col_tokens) > c else ""), ) for r in range(m.shape[0]) for c in range(m.shape[1]) if r < max_row and c < max_col ], # if float(m[r,c]) != 0 and r < max_row and c < max_col], columns=["row", "column", "value", "row_token", "col_token"], ) def attn_map(attn, layer, head, row_tokens, col_tokens, max_dim=30): df = mtx2df( attn[0, head].data, max_dim, max_dim, row_tokens, col_tokens, ) return ( alt.Chart(data=df) .mark_rect() .encode( x=alt.X("col_token", axis=alt.Axis(title="")), y=alt.Y("row_token", axis=alt.Axis(title="")), color="value", tooltip=["row", "column", "value", "row_token", "col_token"], ) .properties(height=400, width=400) .interactive() ) # %% tags=[] def get_encoder(model, layer): return model.encoder.layers[layer].self_attn.attn def get_decoder_self(model, layer): return model.decoder.layers[layer].self_attn.attn def get_decoder_src(model, layer): return model.decoder.layers[layer].src_attn.attn def visualize_layer(model, layer, getter_fn, ntokens, row_tokens, col_tokens): # ntokens = last_example[0].ntokens attn = getter_fn(model, layer) n_heads = attn.shape[1] charts = [ attn_map( attn, 0, h, row_tokens=row_tokens, col_tokens=col_tokens, max_dim=ntokens, ) for h in range(n_heads) ] assert n_heads == 8 return alt.vconcat( charts[0] # | charts[1] | charts[2] # | charts[3] | charts[4] # | charts[5] | charts[6] # | charts[7] # layer + 1 due to 0-indexing ).properties(title="Layer %d" % (layer + 1)) # %% [markdown] # ## Encoder Self Attention # %% tags=[] def viz_encoder_self(): model, example_data = run_model_example(n_examples=1) example = example_data[ len(example_data) - 1 ] # batch object for the final example layer_viz = [ visualize_layer( model, layer, get_encoder, len(example[1]), example[1], example[1] ) for layer in range(6) ] return alt.hconcat( layer_viz[0] # & layer_viz[1] & layer_viz[2] # & layer_viz[3] & layer_viz[4] # & layer_viz[5] ) show_example(viz_encoder_self) # %% [markdown] # ## Decoder Self Attention # %% tags=[] def viz_decoder_self(): model, example_data = run_model_example(n_examples=1) example = example_data[len(example_data) - 1] layer_viz = [ visualize_layer( model, layer, get_decoder_self, len(example[1]), example[1], example[1], ) for layer in range(6) ] return alt.hconcat( layer_viz[0] & layer_viz[1] & layer_viz[2] & layer_viz[3] & layer_viz[4] & layer_viz[5] ) show_example(viz_decoder_self) # %% [markdown] # ## Decoder Src Attention # %% tags=[] def viz_decoder_src(): model, example_data = run_model_example(n_examples=1) example = example_data[len(example_data) - 1] layer_viz = [ visualize_layer( model, layer, get_decoder_src, max(len(example[1]), len(example[2])), example[1], example[2], ) for layer in range(6) ] return alt.hconcat( layer_viz[0] & layer_viz[1] & layer_viz[2] & layer_viz[3] & layer_viz[4] & layer_viz[5] ) show_example(viz_decoder_src) # %% [markdown] id="nSseuCcATsqO" # # Conclusion # # Hopefully this code is useful for future research. Please reach # out if you have any issues. # # # Cheers, # Sasha Rush, Austin Huang, Suraj Subramanian, Jonathan Sum, Khalid Almubarak, # Stella Biderman ================================================ FILE: writeup/acl2018.sty ================================================ % % 2018: modified line numbering to be in gainsboro gray color so one % can write comments on the margins. -- Shay Cohen / Kevin Gimpel / Wei Lu % 2017: modified to support DOI links in bibliography. Now uses % natbib package rather than defining citation commands in this file. % Use with acl_natbib.bst bib style. -- Dan Gildea % This is the LaTeX style for ACL 2016. It contains Margaret Mitchell's % line number adaptations (ported by Hai Zhao and Yannick Versley). % It is nearly identical to the style files for ACL 2015, % ACL 2014, EACL 2006, ACL2005, ACL 2002, ACL 2001, ACL 2000, % EACL 95 and EACL 99. % % Changes made include: adapt layout to A4 and centimeters, widen abstract % This is the LaTeX style file for ACL 2000. It is nearly identical to the % style files for EACL 95 and EACL 99. Minor changes include editing the % instructions to reflect use of \documentclass rather than \documentstyle % and removing the white space before the title on the first page % -- John Chen, June 29, 2000 % This is the LaTeX style file for EACL-95. It is identical to the % style file for ANLP '94 except that the margins are adjusted for A4 % paper. -- abney 13 Dec 94 % The ANLP '94 style file is a slightly modified % version of the style used for AAAI and IJCAI, using some changes % prepared by Fernando Pereira and others and some minor changes % by Paul Jacobs. % Papers prepared using the aclsub.sty file and acl.bst bibtex style % should be easily converted to final format using this style. % (1) Submission information (\wordcount, \subject, and \makeidpage) % should be removed. % (2) \summary should be removed. The summary material should come % after \maketitle and should be in the ``abstract'' environment % (between \begin{abstract} and \end{abstract}). % (3) Check all citations. This style should handle citations correctly % and also allows multiple citations separated by semicolons. % (4) Check figures and examples. Because the final format is double- % column, some adjustments may have to be made to fit text in the column % or to choose full-width (\figure*} figures. % Place this in a file called aclap.sty in the TeX search path. % (Placing it in the same directory as the paper should also work.) % Prepared by Peter F. Patel-Schneider, liberally using the ideas of % other style hackers, including Barbara Beeton. % This style is NOT guaranteed to work. It is provided in the hope % that it will make the preparation of papers easier. % % There are undoubtably bugs in this style. If you make bug fixes, % improvements, etc. please let me know. My e-mail address is: % pfps@research.att.com % Papers are to be prepared using the ``acl_natbib'' bibliography style, % as follows: % \documentclass[11pt]{article} % \usepackage{acl2000} % \title{Title} % \author{Author 1 \and Author 2 \\ Address line \\ Address line \And % Author 3 \\ Address line \\ Address line} % \begin{document} % ... % \bibliography{bibliography-file} % \bibliographystyle{acl_natbib} % \end{document} % Author information can be set in various styles: % For several authors from the same institution: % \author{Author 1 \and ... \and Author n \\ % Address line \\ ... \\ Address line} % if the names do not fit well on one line use % Author 1 \\ {\bf Author 2} \\ ... \\ {\bf Author n} \\ % For authors from different institutions: % \author{Author 1 \\ Address line \\ ... \\ Address line % \And ... \And % Author n \\ Address line \\ ... \\ Address line} % To start a seperate ``row'' of authors use \AND, as in % \author{Author 1 \\ Address line \\ ... \\ Address line % \AND % Author 2 \\ Address line \\ ... \\ Address line \And % Author 3 \\ Address line \\ ... \\ Address line} % If the title and author information does not fit in the area allocated, % place \setlength\titlebox{} right after % \usepackage{acl2015} % where can be something larger than 5cm % include hyperref, unless user specifies nohyperref option like this: % \usepackage[nohyperref]{acl2018} \newif\ifacl@hyperref \DeclareOption{hyperref}{\acl@hyperreftrue} \DeclareOption{nohyperref}{\acl@hyperreffalse} \ExecuteOptions{hyperref} % default is to use hyperref \ProcessOptions\relax \ifacl@hyperref \RequirePackage{hyperref} \usepackage{xcolor} % make links dark blue \definecolor{darkblue}{rgb}{0, 0, 0.5} \hypersetup{colorlinks=true,citecolor=darkblue, linkcolor=darkblue, urlcolor=darkblue} \else % This definition is used if the hyperref package is not loaded. % It provides a backup, no-op definiton of \href. % This is necessary because \href command is used in the acl_natbib.bst file. \def\href#1#2{{#2}} % We still need to load xcolor in this case because the lighter line numbers require it. (SC/KG/WL) \usepackage{xcolor} \fi \typeout{Conference Style for ACL 2018} % NOTE: Some laser printers have a serious problem printing TeX output. % These printing devices, commonly known as ``write-white'' laser % printers, tend to make characters too light. To get around this % problem, a darker set of fonts must be created for these devices. % \newcommand{\Thanks}[1]{\thanks{\ #1}} % A4 modified by Eneko; again modified by Alexander for 5cm titlebox \setlength{\paperwidth}{21cm} % A4 \setlength{\paperheight}{29.7cm}% A4 \setlength\topmargin{-0.5cm} \setlength\oddsidemargin{0cm} \setlength\textheight{24.7cm} \setlength\textwidth{16.0cm} \setlength\columnsep{0.6cm} \newlength\titlebox \setlength\titlebox{5cm} \setlength\headheight{5pt} \setlength\headsep{0pt} \thispagestyle{empty} \pagestyle{empty} \flushbottom \twocolumn \sloppy % We're never going to need a table of contents, so just flush it to % save space --- suggested by drstrip@sandia-2 \def\addcontentsline#1#2#3{} \newif\ifaclfinal \aclfinalfalse \def\aclfinalcopy{\global\aclfinaltrue} %% ----- Set up hooks to repeat content on every page of the output doc, %% necessary for the line numbers in the submitted version. --MM %% %% Copied from CVPR 2015's cvpr_eso.sty, which appears to be largely copied from everyshi.sty. %% %% Original cvpr_eso.sty available at: http://www.pamitc.org/cvpr15/author_guidelines.php %% Original evershi.sty available at: https://www.ctan.org/pkg/everyshi %% %% Copyright (C) 2001 Martin Schr\"oder: %% %% Martin Schr"oder %% Cr"usemannallee 3 %% D-28213 Bremen %% Martin.Schroeder@ACM.org %% %% This program may be redistributed and/or modified under the terms %% of the LaTeX Project Public License, either version 1.0 of this %% license, or (at your option) any later version. %% The latest version of this license is in %% CTAN:macros/latex/base/lppl.txt. %% %% Happy users are requested to send [Martin] a postcard. :-) %% \newcommand{\@EveryShipoutACL@Hook}{} \newcommand{\@EveryShipoutACL@AtNextHook}{} \newcommand*{\EveryShipoutACL}[1] {\g@addto@macro\@EveryShipoutACL@Hook{#1}} \newcommand*{\AtNextShipoutACL@}[1] {\g@addto@macro\@EveryShipoutACL@AtNextHook{#1}} \newcommand{\@EveryShipoutACL@Shipout}{% \afterassignment\@EveryShipoutACL@Test \global\setbox\@cclv= % } \newcommand{\@EveryShipoutACL@Test}{% \ifvoid\@cclv\relax \aftergroup\@EveryShipoutACL@Output \else \@EveryShipoutACL@Output \fi% } \newcommand{\@EveryShipoutACL@Output}{% \@EveryShipoutACL@Hook% \@EveryShipoutACL@AtNextHook% \gdef\@EveryShipoutACL@AtNextHook{}% \@EveryShipoutACL@Org@Shipout\box\@cclv% } \newcommand{\@EveryShipoutACL@Org@Shipout}{} \newcommand*{\@EveryShipoutACL@Init}{% \message{ABD: EveryShipout initializing macros}% \let\@EveryShipoutACL@Org@Shipout\shipout \let\shipout\@EveryShipoutACL@Shipout } \AtBeginDocument{\@EveryShipoutACL@Init} %% ----- Set up for placing additional items into the submitted version --MM %% %% Based on eso-pic.sty %% %% Original available at: https://www.ctan.org/tex-archive/macros/latex/contrib/eso-pic %% Copyright (C) 1998-2002 by Rolf Niepraschk %% %% Which may be distributed and/or modified under the conditions of %% the LaTeX Project Public License, either version 1.2 of this license %% or (at your option) any later version. The latest version of this %% license is in: %% %% http://www.latex-project.org/lppl.txt %% %% and version 1.2 or later is part of all distributions of LaTeX version %% 1999/12/01 or later. %% %% In contrast to the original, we do not include the definitions for/using: %% gridpicture, div[2], isMEMOIR[1], gridSetup[6][], subgridstyle{dotted}, labelfactor{}, gap{}, gridunitname{}, gridunit{}, gridlines{\thinlines}, subgridlines{\thinlines}, the {keyval} package, evenside margin, nor any definitions with 'color'. %% %% These are beyond what is needed for the NAACL style. %% \newcommand\LenToUnit[1]{#1\@gobble} \newcommand\AtPageUpperLeft[1]{% \begingroup \@tempdima=0pt\relax\@tempdimb=\ESO@yoffsetI\relax \put(\LenToUnit{\@tempdima},\LenToUnit{\@tempdimb}){#1}% \endgroup } \newcommand\AtPageLowerLeft[1]{\AtPageUpperLeft{% \put(0,\LenToUnit{-\paperheight}){#1}}} \newcommand\AtPageCenter[1]{\AtPageUpperLeft{% \put(\LenToUnit{.5\paperwidth},\LenToUnit{-.5\paperheight}){#1}}} \newcommand\AtPageLowerCenter[1]{\AtPageUpperLeft{% \put(\LenToUnit{.5\paperwidth},\LenToUnit{-\paperheight}){#1}}}% \newcommand\AtPageLowishCenter[1]{\AtPageUpperLeft{% \put(\LenToUnit{.5\paperwidth},\LenToUnit{-.96\paperheight}){#1}}} \newcommand\AtTextUpperLeft[1]{% \begingroup \setlength\@tempdima{1in}% \advance\@tempdima\oddsidemargin% \@tempdimb=\ESO@yoffsetI\relax\advance\@tempdimb-1in\relax% \advance\@tempdimb-\topmargin% \advance\@tempdimb-\headheight\advance\@tempdimb-\headsep% \put(\LenToUnit{\@tempdima},\LenToUnit{\@tempdimb}){#1}% \endgroup } \newcommand\AtTextLowerLeft[1]{\AtTextUpperLeft{% \put(0,\LenToUnit{-\textheight}){#1}}} \newcommand\AtTextCenter[1]{\AtTextUpperLeft{% \put(\LenToUnit{.5\textwidth},\LenToUnit{-.5\textheight}){#1}}} \newcommand{\ESO@HookI}{} \newcommand{\ESO@HookII}{} \newcommand{\ESO@HookIII}{} \newcommand{\AddToShipoutPicture}{% \@ifstar{\g@addto@macro\ESO@HookII}{\g@addto@macro\ESO@HookI}} \newcommand{\ClearShipoutPicture}{\global\let\ESO@HookI\@empty} \newcommand{\@ShipoutPicture}{% \bgroup \@tempswafalse% \ifx\ESO@HookI\@empty\else\@tempswatrue\fi% \ifx\ESO@HookII\@empty\else\@tempswatrue\fi% \ifx\ESO@HookIII\@empty\else\@tempswatrue\fi% \if@tempswa% \@tempdima=1in\@tempdimb=-\@tempdima% \advance\@tempdimb\ESO@yoffsetI% \unitlength=1pt% \global\setbox\@cclv\vbox{% \vbox{\let\protect\relax \pictur@(0,0)(\strip@pt\@tempdima,\strip@pt\@tempdimb)% \ESO@HookIII\ESO@HookI\ESO@HookII% \global\let\ESO@HookII\@empty% \endpicture}% \nointerlineskip% \box\@cclv}% \fi \egroup } \EveryShipoutACL{\@ShipoutPicture} \newif\ifESO@dvips\ESO@dvipsfalse \newif\ifESO@grid\ESO@gridfalse \newif\ifESO@texcoord\ESO@texcoordfalse \newcommand*\ESO@griddelta{}\newcommand*\ESO@griddeltaY{} \newcommand*\ESO@gridDelta{}\newcommand*\ESO@gridDeltaY{} \newcommand*\ESO@yoffsetI{}\newcommand*\ESO@yoffsetII{} \ifESO@texcoord \def\ESO@yoffsetI{0pt}\def\ESO@yoffsetII{-\paperheight} \edef\ESO@griddeltaY{-\ESO@griddelta}\edef\ESO@gridDeltaY{-\ESO@gridDelta} \else \def\ESO@yoffsetI{\paperheight}\def\ESO@yoffsetII{0pt} \edef\ESO@griddeltaY{\ESO@griddelta}\edef\ESO@gridDeltaY{\ESO@gridDelta} \fi %% ----- Submitted version markup: Page numbers, ruler, and confidentiality. Using ideas/code from cvpr.sty 2015. --MM \font\naaclhv = phvb at 8pt %% Define vruler %% %\makeatletter \newbox\aclrulerbox \newcount\aclrulercount \newdimen\aclruleroffset \newdimen\cv@lineheight \newdimen\cv@boxheight \newbox\cv@tmpbox \newcount\cv@refno \newcount\cv@tot % NUMBER with left flushed zeros \fillzeros[] \newcount\cv@tmpc@ \newcount\cv@tmpc \def\fillzeros[#1]#2{\cv@tmpc@=#2\relax\ifnum\cv@tmpc@<0\cv@tmpc@=-\cv@tmpc@\fi \cv@tmpc=1 % \loop\ifnum\cv@tmpc@<10 \else \divide\cv@tmpc@ by 10 \advance\cv@tmpc by 1 \fi \ifnum\cv@tmpc@=10\relax\cv@tmpc@=11\relax\fi \ifnum\cv@tmpc@>10 \repeat \ifnum#2<0\advance\cv@tmpc1\relax-\fi \loop\ifnum\cv@tmpc<#1\relax0\advance\cv@tmpc1\relax\fi \ifnum\cv@tmpc<#1 \repeat \cv@tmpc@=#2\relax\ifnum\cv@tmpc@<0\cv@tmpc@=-\cv@tmpc@\fi \relax\the\cv@tmpc@}% % \makevruler[][][][][] \def\makevruler[#1][#2][#3][#4][#5]{\begingroup\offinterlineskip \textheight=#5\vbadness=10000\vfuzz=120ex\overfullrule=0pt% \global\setbox\aclrulerbox=\vbox to \textheight{% {\parskip=0pt\hfuzz=150em\cv@boxheight=\textheight \cv@lineheight=#1\global\aclrulercount=#2% \cv@tot\cv@boxheight\divide\cv@tot\cv@lineheight\advance\cv@tot2% \cv@refno1\vskip-\cv@lineheight\vskip1ex% \loop\setbox\cv@tmpbox=\hbox to0cm{{\naaclhv\hfil\fillzeros[#4]\aclrulercount}}% \ht\cv@tmpbox\cv@lineheight\dp\cv@tmpbox0pt\box\cv@tmpbox\break \advance\cv@refno1\global\advance\aclrulercount#3\relax \ifnum\cv@refno<\cv@tot\repeat}}\endgroup}% %\makeatother \def\aclpaperid{***} \def\confidential{ACL 2018 Submission~\aclpaperid. Confidential Review Copy. DO NOT DISTRIBUTE.} %% Page numbering, Vruler and Confidentiality %% % \makevruler[][][][][] % SC/KG/WL - changed line numbering to gainsboro \definecolor{gainsboro}{rgb}{0.8, 0.8, 0.8} %\def\aclruler#1{\makevruler[14.17pt][#1][1][3][\textheight]\usebox{\aclrulerbox}} %% old line \def\aclruler#1{\textcolor{gainsboro}{\makevruler[14.17pt][#1][1][3][\textheight]\usebox{\aclrulerbox}}} \def\leftoffset{-2.1cm} %original: -45pt \def\rightoffset{17.5cm} %original: 500pt \ifaclfinal\else\pagenumbering{arabic} \AddToShipoutPicture{% \ifaclfinal\else \AtPageLowishCenter{\thepage} \aclruleroffset=\textheight \advance\aclruleroffset4pt \AtTextUpperLeft{% \put(\LenToUnit{\leftoffset},\LenToUnit{-\aclruleroffset}){%left ruler \aclruler{\aclrulercount}} \put(\LenToUnit{\rightoffset},\LenToUnit{-\aclruleroffset}){%right ruler \aclruler{\aclrulercount}} } \AtTextUpperLeft{%confidential \put(0,\LenToUnit{1cm}){\parbox{\textwidth}{\centering\naaclhv\confidential}} } \fi } %%%% ----- End settings for placing additional items into the submitted version --MM ----- %%%% %%%% ----- Begin settings for both submitted and camera-ready version ----- %%%% %% Title and Authors %% \newcommand\outauthor{ \begin{tabular}[t]{c} \ifaclfinal \bf\@author \else % Avoiding common accidental de-anonymization issue. --MM \bf Anonymous ACL submission \fi \end{tabular}} % Changing the expanded titlebox for submissions to 2.5 in (rather than 6.5cm) % and moving it to the style sheet, rather than within the example tex file. --MM \ifaclfinal \else \addtolength\titlebox{.25in} \fi % Mostly taken from deproc. \def\maketitle{\par \begingroup \def\thefootnote{\fnsymbol{footnote}} \def\@makefnmark{\hbox to 0pt{$^{\@thefnmark}$\hss}} \twocolumn[\@maketitle] \@thanks \endgroup \setcounter{footnote}{0} \let\maketitle\relax \let\@maketitle\relax \gdef\@thanks{}\gdef\@author{}\gdef\@title{}\let\thanks\relax} \def\@maketitle{\vbox to \titlebox{\hsize\textwidth \linewidth\hsize \vskip 0.125in minus 0.125in \centering {\Large\bf \@title \par} \vskip 0.2in plus 1fil minus 0.1in {\def\and{\unskip\enspace{\rm and}\enspace}% \def\And{\end{tabular}\hss \egroup \hskip 1in plus 2fil \hbox to 0pt\bgroup\hss \begin{tabular}[t]{c}\bf}% \def\AND{\end{tabular}\hss\egroup \hfil\hfil\egroup \vskip 0.25in plus 1fil minus 0.125in \hbox to \linewidth\bgroup\large \hfil\hfil \hbox to 0pt\bgroup\hss \begin{tabular}[t]{c}\bf} \hbox to \linewidth\bgroup\large \hfil\hfil \hbox to 0pt\bgroup\hss \outauthor \hss\egroup \hfil\hfil\egroup} \vskip 0.3in plus 2fil minus 0.1in }} % margins for abstract \renewenvironment{abstract}% {\centerline{\large\bf Abstract}% \begin{list}{}% {\setlength{\rightmargin}{0.6cm}% \setlength{\leftmargin}{0.6cm}}% \item[]\ignorespaces}% {\unskip\end{list}} %\renewenvironment{abstract}{\centerline{\large\bf % Abstract}\vspace{0.5ex}\begin{quote}}{\par\end{quote}\vskip 1ex} \RequirePackage{natbib} % for citation commands in the .tex, authors can use: % \citep, \citet, and \citeyearpar for compatibility with natbib, or % \cite, \newcite, and \shortcite for compatibility with older ACL .sty files \renewcommand\cite{\citep} % to get "(Author Year)" with natbib \newcommand\shortcite{\citeyearpar}% to get "(Year)" with natbib \newcommand\newcite{\citet} % to get "Author (Year)" with natbib % bibliography \def\@up#1{\raise.2ex\hbox{#1}} % Don't put a label in the bibliography at all. Just use the unlabeled format % instead. \def\thebibliography#1{\vskip\parskip% \vskip\baselineskip% \def\baselinestretch{1}% \ifx\@currsize\normalsize\@normalsize\else\@currsize\fi% \vskip-\parskip% \vskip-\baselineskip% \section*{References\@mkboth {References}{References}}\list {}{\setlength{\labelwidth}{0pt}\setlength{\leftmargin}{\parindent} \setlength{\itemindent}{-\parindent}} \def\newblock{\hskip .11em plus .33em minus -.07em} \sloppy\clubpenalty4000\widowpenalty4000 \sfcode`\.=1000\relax} \let\endthebibliography=\endlist % Allow for a bibliography of sources of attested examples \def\thesourcebibliography#1{\vskip\parskip% \vskip\baselineskip% \def\baselinestretch{1}% \ifx\@currsize\normalsize\@normalsize\else\@currsize\fi% \vskip-\parskip% \vskip-\baselineskip% \section*{Sources of Attested Examples\@mkboth {Sources of Attested Examples}{Sources of Attested Examples}}\list {}{\setlength{\labelwidth}{0pt}\setlength{\leftmargin}{\parindent} \setlength{\itemindent}{-\parindent}} \def\newblock{\hskip .11em plus .33em minus -.07em} \sloppy\clubpenalty4000\widowpenalty4000 \sfcode`\.=1000\relax} \let\endthesourcebibliography=\endlist % sections with less space \def\section{\@startsection {section}{1}{\z@}{-2.0ex plus -0.5ex minus -.2ex}{1.5ex plus 0.3ex minus .2ex}{\large\bf\raggedright}} \def\subsection{\@startsection{subsection}{2}{\z@}{-1.8ex plus -0.5ex minus -.2ex}{0.8ex plus .2ex}{\normalsize\bf\raggedright}} %% changed by KO to - values to get teh initial parindent right \def\subsubsection{\@startsection{subsubsection}{3}{\z@}{-1.5ex plus -0.5ex minus -.2ex}{0.5ex plus .2ex}{\normalsize\bf\raggedright}} \def\paragraph{\@startsection{paragraph}{4}{\z@}{1.5ex plus 0.5ex minus .2ex}{-1em}{\normalsize\bf}} \def\subparagraph{\@startsection{subparagraph}{5}{\parindent}{1.5ex plus 0.5ex minus .2ex}{-1em}{\normalsize\bf}} % Footnotes \footnotesep 6.65pt % \skip\footins 9pt plus 4pt minus 2pt \def\footnoterule{\kern-3pt \hrule width 5pc \kern 2.6pt } \setcounter{footnote}{0} % Lists and paragraphs \parindent 1em \topsep 4pt plus 1pt minus 2pt \partopsep 1pt plus 0.5pt minus 0.5pt \itemsep 2pt plus 1pt minus 0.5pt \parsep 2pt plus 1pt minus 0.5pt \leftmargin 2em \leftmargini\leftmargin \leftmarginii 2em \leftmarginiii 1.5em \leftmarginiv 1.0em \leftmarginv .5em \leftmarginvi .5em \labelwidth\leftmargini\advance\labelwidth-\labelsep \labelsep 5pt \def\@listi{\leftmargin\leftmargini} \def\@listii{\leftmargin\leftmarginii \labelwidth\leftmarginii\advance\labelwidth-\labelsep \topsep 2pt plus 1pt minus 0.5pt \parsep 1pt plus 0.5pt minus 0.5pt \itemsep \parsep} \def\@listiii{\leftmargin\leftmarginiii \labelwidth\leftmarginiii\advance\labelwidth-\labelsep \topsep 1pt plus 0.5pt minus 0.5pt \parsep \z@ \partopsep 0.5pt plus 0pt minus 0.5pt \itemsep \topsep} \def\@listiv{\leftmargin\leftmarginiv \labelwidth\leftmarginiv\advance\labelwidth-\labelsep} \def\@listv{\leftmargin\leftmarginv \labelwidth\leftmarginv\advance\labelwidth-\labelsep} \def\@listvi{\leftmargin\leftmarginvi \labelwidth\leftmarginvi\advance\labelwidth-\labelsep} \abovedisplayskip 7pt plus2pt minus5pt% \belowdisplayskip \abovedisplayskip \abovedisplayshortskip 0pt plus3pt% \belowdisplayshortskip 4pt plus3pt minus3pt% % Less leading in most fonts (due to the narrow columns) % The choices were between 1-pt and 1.5-pt leading \def\@normalsize{\@setsize\normalsize{11pt}\xpt\@xpt} \def\small{\@setsize\small{10pt}\ixpt\@ixpt} \def\footnotesize{\@setsize\footnotesize{10pt}\ixpt\@ixpt} \def\scriptsize{\@setsize\scriptsize{8pt}\viipt\@viipt} \def\tiny{\@setsize\tiny{7pt}\vipt\@vipt} \def\large{\@setsize\large{14pt}\xiipt\@xiipt} \def\Large{\@setsize\Large{16pt}\xivpt\@xivpt} \def\LARGE{\@setsize\LARGE{20pt}\xviipt\@xviipt} \def\huge{\@setsize\huge{23pt}\xxpt\@xxpt} \def\Huge{\@setsize\Huge{28pt}\xxvpt\@xxvpt} ================================================ FILE: writeup/acl_natbib.bst ================================================ %%% Modification of BibTeX style file acl_natbib_nourl.bst %%% ... by urlbst, version 0.7 (marked with "% urlbst") %%% See %%% Added webpage entry type, and url and lastchecked fields. %%% Added eprint support. %%% Added DOI support. %%% Added PUBMED support. %%% Added hyperref support. %%% Original headers follow... %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % - fixed a bug with format.chapter - error given in chapter is empty % with inbook. % Shay Cohen 2018/02/16 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % BibTeX style file acl_natbib.bst % % intended as input to urlbst script % % adapted from compling.bst % in order to mimic the style files for ACL conferences prior to 2017 % by making the following three changes: % - for @incollection, page numbers now follow volume title. % - for @inproceedings, address now follows conference name. % (address is intended as location of conference, % not address of publisher.) % - for papers with three authors, use et al. in citation % Dan Gildea 2017/06/08 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % BibTeX style file compling.bst % % Intended for the journal Computational Linguistics (ACL/MIT Press) % Created by Ron Artstein on 2005/08/22 % For use with for author-year citations. % % I created this file in order to allow submissions to the journal % Computational Linguistics using the package for author-year % citations, which offers a lot more flexibility than , CL's % official citation package. This file adheres strictly to the official % style guide available from the MIT Press: % % http://mitpress.mit.edu/journals/coli/compling_style.pdf % % This includes all the various quirks of the style guide, for example: % - a chapter from a monograph (@inbook) has no page numbers. % - an article from an edited volume (@incollection) has page numbers % after the publisher and address. % - an article from a proceedings volume (@inproceedings) has page % numbers before the publisher and address. % % Where the style guide was inconsistent or not specific enough I % looked at actual published articles and exercised my own judgment. % I noticed two inconsistencies in the style guide: % % - The style guide gives one example of an article from an edited % volume with the editor's name spelled out in full, and another % with the editors' names abbreviated. I chose to accept the first % one as correct, since the style guide generally shuns abbreviations, % and editors' names are also spelled out in some recently published % articles. % % - The style guide gives one example of a reference where the word % "and" between two authors is preceded by a comma. This is most % likely a typo, since in all other cases with just two authors or % editors there is no comma before the word "and". % % One case where the style guide is not being specific is the placement % of the edition number, for which no example is given. I chose to put % it immediately after the title, which I (subjectively) find natural, % and is also the place of the edition in a few recently published % articles. % % This file correctly reproduces all of the examples in the official % style guide, except for the two inconsistencies noted above. I even % managed to get it to correctly format the proceedings example which % has an organization, a publisher, and two addresses (the conference % location and the publisher's address), though I cheated a bit by % putting the conference location and month as part of the title field; % I feel that in this case the conference location and month can be % considered as part of the title, and that adding a location field % is not justified. Note also that a location field is not standard, % so entries made with this field would not port nicely to other styles. % However, if authors feel that there's a need for a location field % then tell me and I'll see what I can do. % % The file also produces to my satisfaction all the bibliographical % entries in my recent (joint) submission to CL (this was the original % motivation for creating the file). I also tested it by running it % on a larger set of entries and eyeballing the results. There may of % course still be errors, especially with combinations of fields that % are not that common, or with cross-references (which I seldom use). % If you find such errors please write to me. % % I hope people find this file useful. Please email me with comments % and suggestions. % % Ron Artstein % artstein [at] essex.ac.uk % August 22, 2005. % % Some technical notes. % % This file is based on a file generated with the package % by Patrick W. Daly (see selected options below), which was then % manually customized to conform with certain CL requirements which % cannot be met by . Departures from the generated file % include: % % Function inbook: moved publisher and address to the end; moved % edition after title; replaced function format.chapter.pages by % new function format.chapter to output chapter without pages. % % Function inproceedings: moved publisher and address to the end; % replaced function format.in.ed.booktitle by new function % format.in.booktitle to output the proceedings title without % the editor. % % Functions book, incollection, manual: moved edition after title. % % Function mastersthesis: formatted title as for articles (unlike % phdthesis which is formatted as book) and added month. % % Function proceedings: added new.sentence between organization and % publisher when both are present. % % Function format.lab.names: modified so that it gives all the % authors' surnames for in-text citations for one, two and three % authors and only uses "et. al" for works with four authors or more % (thanks to Ken Shan for convincing me to go through the trouble of % modifying this function rather than using unreliable hacks). % % Changes: % % 2006-10-27: Changed function reverse.pass so that the extra label is % enclosed in parentheses when the year field ends in an uppercase or % lowercase letter (change modeled after Uli Sauerland's modification % of nals.bst). RA. % % % The preamble of the generated file begins below: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% This is file `compling.bst', %% generated with the docstrip utility. %% %% The original source files were: %% %% merlin.mbs (with options: `ay,nat,vonx,nm-revv1,jnrlst,keyxyr,blkyear,dt-beg,yr-per,note-yr,num-xser,pre-pub,xedn,nfss') %% ---------------------------------------- %% *** Intended for the journal Computational Linguistics *** %% %% Copyright 1994-2002 Patrick W Daly % =============================================================== % IMPORTANT NOTICE: % This bibliographic style (bst) file has been generated from one or % more master bibliographic style (mbs) files, listed above. % % This generated file can be redistributed and/or modified under the terms % of the LaTeX Project Public License Distributed from CTAN % archives in directory macros/latex/base/lppl.txt; either % version 1 of the License, or any later version. % =============================================================== % Name and version information of the main mbs file: % \ProvidesFile{merlin.mbs}[2002/10/21 4.05 (PWD, AO, DPC)] % For use with BibTeX version 0.99a or later %------------------------------------------------------------------- % This bibliography style file is intended for texts in ENGLISH % This is an author-year citation style bibliography. As such, it is % non-standard LaTeX, and requires a special package file to function properly. % Such a package is natbib.sty by Patrick W. Daly % The form of the \bibitem entries is % \bibitem[Jones et al.(1990)]{key}... % \bibitem[Jones et al.(1990)Jones, Baker, and Smith]{key}... % The essential feature is that the label (the part in brackets) consists % of the author names, as they should appear in the citation, with the year % in parentheses following. There must be no space before the opening % parenthesis! % With natbib v5.3, a full list of authors may also follow the year. % In natbib.sty, it is possible to define the type of enclosures that is % really wanted (brackets or parentheses), but in either case, there must % be parentheses in the label. % The \cite command functions as follows: % \citet{key} ==>> Jones et al. (1990) % \citet*{key} ==>> Jones, Baker, and Smith (1990) % \citep{key} ==>> (Jones et al., 1990) % \citep*{key} ==>> (Jones, Baker, and Smith, 1990) % \citep[chap. 2]{key} ==>> (Jones et al., 1990, chap. 2) % \citep[e.g.][]{key} ==>> (e.g. Jones et al., 1990) % \citep[e.g.][p. 32]{key} ==>> (e.g. Jones et al., p. 32) % \citeauthor{key} ==>> Jones et al. % \citeauthor*{key} ==>> Jones, Baker, and Smith % \citeyear{key} ==>> 1990 %--------------------------------------------------------------------- ENTRY { address author booktitle chapter edition editor howpublished institution journal key month note number organization pages publisher school series title type volume year eprint % urlbst doi % urlbst pubmed % urlbst url % urlbst lastchecked % urlbst } {} { label extra.label sort.label short.list } INTEGERS { output.state before.all mid.sentence after.sentence after.block } % urlbst... % urlbst constants and state variables STRINGS { urlintro eprinturl eprintprefix doiprefix doiurl pubmedprefix pubmedurl citedstring onlinestring linktextstring openinlinelink closeinlinelink } INTEGERS { hrefform inlinelinks makeinlinelink addeprints adddoiresolver addpubmedresolver } FUNCTION {init.urlbst.variables} { % The following constants may be adjusted by hand, if desired % The first set allow you to enable or disable certain functionality. #1 'addeprints := % 0=no eprints; 1=include eprints #1 'adddoiresolver := % 0=no DOI resolver; 1=include it #1 'addpubmedresolver := % 0=no PUBMED resolver; 1=include it #2 'hrefform := % 0=no crossrefs; 1=hypertex xrefs; 2=hyperref refs #1 'inlinelinks := % 0=URLs explicit; 1=URLs attached to titles % String constants, which you _might_ want to tweak. "URL: " 'urlintro := % prefix before URL; typically "Available from:" or "URL": "online" 'onlinestring := % indication that resource is online; typically "online" "cited " 'citedstring := % indicator of citation date; typically "cited " "[link]" 'linktextstring := % dummy link text; typically "[link]" "http://arxiv.org/abs/" 'eprinturl := % prefix to make URL from eprint ref "arXiv:" 'eprintprefix := % text prefix printed before eprint ref; typically "arXiv:" "https://doi.org/" 'doiurl := % prefix to make URL from DOI "doi:" 'doiprefix := % text prefix printed before DOI ref; typically "doi:" "http://www.ncbi.nlm.nih.gov/pubmed/" 'pubmedurl := % prefix to make URL from PUBMED "PMID:" 'pubmedprefix := % text prefix printed before PUBMED ref; typically "PMID:" % The following are internal state variables, not configuration constants, % so they shouldn't be fiddled with. #0 'makeinlinelink := % state variable managed by possibly.setup.inlinelink "" 'openinlinelink := % ditto "" 'closeinlinelink := % ditto } INTEGERS { bracket.state outside.brackets open.brackets within.brackets close.brackets } % ...urlbst to here FUNCTION {init.state.consts} { #0 'outside.brackets := % urlbst... #1 'open.brackets := #2 'within.brackets := #3 'close.brackets := % ...urlbst to here #0 'before.all := #1 'mid.sentence := #2 'after.sentence := #3 'after.block := } STRINGS { s t} % urlbst FUNCTION {output.nonnull.original} { 's := output.state mid.sentence = { ", " * write$ } { output.state after.block = { add.period$ write$ newline$ "\newblock " write$ } { output.state before.all = 'write$ { add.period$ " " * write$ } if$ } if$ mid.sentence 'output.state := } if$ s } % urlbst... % The following three functions are for handling inlinelink. They wrap % a block of text which is potentially output with write$ by multiple % other functions, so we don't know the content a priori. % They communicate between each other using the variables makeinlinelink % (which is true if a link should be made), and closeinlinelink (which holds % the string which should close any current link. They can be called % at any time, but start.inlinelink will be a no-op unless something has % previously set makeinlinelink true, and the two ...end.inlinelink functions % will only do their stuff if start.inlinelink has previously set % closeinlinelink to be non-empty. % (thanks to 'ijvm' for suggested code here) FUNCTION {uand} { 'skip$ { pop$ #0 } if$ } % 'and' (which isn't defined at this point in the file) FUNCTION {possibly.setup.inlinelink} { makeinlinelink hrefform #0 > uand { doi empty$ adddoiresolver uand { pubmed empty$ addpubmedresolver uand { eprint empty$ addeprints uand { url empty$ { "" } { url } if$ } { eprinturl eprint * } if$ } { pubmedurl pubmed * } if$ } { doiurl doi * } if$ % an appropriately-formatted URL is now on the stack hrefform #1 = % hypertex { "\special {html: }{" * 'openinlinelink := "\special {html:}" 'closeinlinelink := } { "\href {" swap$ * "} {" * 'openinlinelink := % hrefform=#2 -- hyperref % the space between "} {" matters: a URL of just the right length can cause "\% newline em" "}" 'closeinlinelink := } if$ #0 'makeinlinelink := } 'skip$ if$ % makeinlinelink } FUNCTION {add.inlinelink} { openinlinelink empty$ 'skip$ { openinlinelink swap$ * closeinlinelink * "" 'openinlinelink := } if$ } FUNCTION {output.nonnull} { % Save the thing we've been asked to output 's := % If the bracket-state is close.brackets, then add a close-bracket to % what is currently at the top of the stack, and set bracket.state % to outside.brackets bracket.state close.brackets = { "]" * outside.brackets 'bracket.state := } 'skip$ if$ bracket.state outside.brackets = { % We're outside all brackets -- this is the normal situation. % Write out what's currently at the top of the stack, using the % original output.nonnull function. s add.inlinelink output.nonnull.original % invoke the original output.nonnull } { % Still in brackets. Add open-bracket or (continuation) comma, add the % new text (in s) to the top of the stack, and move to the close-brackets % state, ready for next time (unless inbrackets resets it). If we come % into this branch, then output.state is carefully undisturbed. bracket.state open.brackets = { " [" * } { ", " * } % bracket.state will be within.brackets if$ s * close.brackets 'bracket.state := } if$ } % Call this function just before adding something which should be presented in % brackets. bracket.state is handled specially within output.nonnull. FUNCTION {inbrackets} { bracket.state close.brackets = { within.brackets 'bracket.state := } % reset the state: not open nor closed { open.brackets 'bracket.state := } if$ } FUNCTION {format.lastchecked} { lastchecked empty$ { "" } { inbrackets citedstring lastchecked * } if$ } % ...urlbst to here FUNCTION {output} { duplicate$ empty$ 'pop$ 'output.nonnull if$ } FUNCTION {output.check} { 't := duplicate$ empty$ { pop$ "empty " t * " in " * cite$ * warning$ } 'output.nonnull if$ } FUNCTION {fin.entry.original} % urlbst (renamed from fin.entry, so it can be wrapped below) { add.period$ write$ newline$ } FUNCTION {new.block} { output.state before.all = 'skip$ { after.block 'output.state := } if$ } FUNCTION {new.sentence} { output.state after.block = 'skip$ { output.state before.all = 'skip$ { after.sentence 'output.state := } if$ } if$ } FUNCTION {add.blank} { " " * before.all 'output.state := } FUNCTION {date.block} { new.block } FUNCTION {not} { { #0 } { #1 } if$ } FUNCTION {and} { 'skip$ { pop$ #0 } if$ } FUNCTION {or} { { pop$ #1 } 'skip$ if$ } FUNCTION {new.block.checkb} { empty$ swap$ empty$ and 'skip$ 'new.block if$ } FUNCTION {field.or.null} { duplicate$ empty$ { pop$ "" } 'skip$ if$ } FUNCTION {emphasize} { duplicate$ empty$ { pop$ "" } { "\emph{" swap$ * "}" * } if$ } FUNCTION {tie.or.space.prefix} { duplicate$ text.length$ #3 < { "~" } { " " } if$ swap$ } FUNCTION {capitalize} { "u" change.case$ "t" change.case$ } FUNCTION {space.word} { " " swap$ * " " * } % Here are the language-specific definitions for explicit words. % Each function has a name bbl.xxx where xxx is the English word. % The language selected here is ENGLISH FUNCTION {bbl.and} { "and"} FUNCTION {bbl.etal} { "et~al." } FUNCTION {bbl.editors} { "editors" } FUNCTION {bbl.editor} { "editor" } FUNCTION {bbl.edby} { "edited by" } FUNCTION {bbl.edition} { "edition" } FUNCTION {bbl.volume} { "volume" } FUNCTION {bbl.of} { "of" } FUNCTION {bbl.number} { "number" } FUNCTION {bbl.nr} { "no." } FUNCTION {bbl.in} { "in" } FUNCTION {bbl.pages} { "pages" } FUNCTION {bbl.page} { "page" } FUNCTION {bbl.chapter} { "chapter" } FUNCTION {bbl.techrep} { "Technical Report" } FUNCTION {bbl.mthesis} { "Master's thesis" } FUNCTION {bbl.phdthesis} { "Ph.D. thesis" } MACRO {jan} {"January"} MACRO {feb} {"February"} MACRO {mar} {"March"} MACRO {apr} {"April"} MACRO {may} {"May"} MACRO {jun} {"June"} MACRO {jul} {"July"} MACRO {aug} {"August"} MACRO {sep} {"September"} MACRO {oct} {"October"} MACRO {nov} {"November"} MACRO {dec} {"December"} MACRO {acmcs} {"ACM Computing Surveys"} MACRO {acta} {"Acta Informatica"} MACRO {cacm} {"Communications of the ACM"} MACRO {ibmjrd} {"IBM Journal of Research and Development"} MACRO {ibmsj} {"IBM Systems Journal"} MACRO {ieeese} {"IEEE Transactions on Software Engineering"} MACRO {ieeetc} {"IEEE Transactions on Computers"} MACRO {ieeetcad} {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"} MACRO {ipl} {"Information Processing Letters"} MACRO {jacm} {"Journal of the ACM"} MACRO {jcss} {"Journal of Computer and System Sciences"} MACRO {scp} {"Science of Computer Programming"} MACRO {sicomp} {"SIAM Journal on Computing"} MACRO {tocs} {"ACM Transactions on Computer Systems"} MACRO {tods} {"ACM Transactions on Database Systems"} MACRO {tog} {"ACM Transactions on Graphics"} MACRO {toms} {"ACM Transactions on Mathematical Software"} MACRO {toois} {"ACM Transactions on Office Information Systems"} MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"} MACRO {tcs} {"Theoretical Computer Science"} FUNCTION {bibinfo.check} { swap$ duplicate$ missing$ { pop$ pop$ "" } { duplicate$ empty$ { swap$ pop$ } { swap$ pop$ } if$ } if$ } FUNCTION {bibinfo.warn} { swap$ duplicate$ missing$ { swap$ "missing " swap$ * " in " * cite$ * warning$ pop$ "" } { duplicate$ empty$ { swap$ "empty " swap$ * " in " * cite$ * warning$ } { swap$ pop$ } if$ } if$ } STRINGS { bibinfo} INTEGERS { nameptr namesleft numnames } FUNCTION {format.names} { 'bibinfo := duplicate$ empty$ 'skip$ { 's := "" 't := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { s nameptr duplicate$ #1 > { "{ff~}{vv~}{ll}{, jj}" } { "{ff~}{vv~}{ll}{, jj}" } % first name first for first author % { "{vv~}{ll}{, ff}{, jj}" } % last name first for first author if$ format.name$ bibinfo bibinfo.check 't := nameptr #1 > { namesleft #1 > { ", " * t * } { numnames #2 > { "," * } 'skip$ if$ s nameptr "{ll}" format.name$ duplicate$ "others" = { 't := } { pop$ } if$ t "others" = { " " * bbl.etal * } { bbl.and space.word * t * } if$ } if$ } 't if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } if$ } FUNCTION {format.names.ed} { 'bibinfo := duplicate$ empty$ 'skip$ { 's := "" 't := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ bibinfo bibinfo.check 't := nameptr #1 > { namesleft #1 > { ", " * t * } { numnames #2 > { "," * } 'skip$ if$ s nameptr "{ll}" format.name$ duplicate$ "others" = { 't := } { pop$ } if$ t "others" = { " " * bbl.etal * } { bbl.and space.word * t * } if$ } if$ } 't if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } if$ } FUNCTION {format.key} { empty$ { key field.or.null } { "" } if$ } FUNCTION {format.authors} { author "author" format.names } FUNCTION {get.bbl.editor} { editor num.names$ #1 > 'bbl.editors 'bbl.editor if$ } FUNCTION {format.editors} { editor "editor" format.names duplicate$ empty$ 'skip$ { "," * " " * get.bbl.editor * } if$ } FUNCTION {format.note} { note empty$ { "" } { note #1 #1 substring$ duplicate$ "{" = 'skip$ { output.state mid.sentence = { "l" } { "u" } if$ change.case$ } if$ note #2 global.max$ substring$ * "note" bibinfo.check } if$ } FUNCTION {format.title} { title duplicate$ empty$ 'skip$ { "t" change.case$ } if$ "title" bibinfo.check } FUNCTION {format.full.names} {'s := "" 't := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { s nameptr "{vv~}{ll}" format.name$ 't := nameptr #1 > { namesleft #1 > { ", " * t * } { s nameptr "{ll}" format.name$ duplicate$ "others" = { 't := } { pop$ } if$ t "others" = { " " * bbl.etal * } { numnames #2 > { "," * } 'skip$ if$ bbl.and space.word * t * } if$ } if$ } 't if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {author.editor.key.full} { author empty$ { editor empty$ { key empty$ { cite$ #1 #3 substring$ } 'key if$ } { editor format.full.names } if$ } { author format.full.names } if$ } FUNCTION {author.key.full} { author empty$ { key empty$ { cite$ #1 #3 substring$ } 'key if$ } { author format.full.names } if$ } FUNCTION {editor.key.full} { editor empty$ { key empty$ { cite$ #1 #3 substring$ } 'key if$ } { editor format.full.names } if$ } FUNCTION {make.full.names} { type$ "book" = type$ "inbook" = or 'author.editor.key.full { type$ "proceedings" = 'editor.key.full 'author.key.full if$ } if$ } FUNCTION {output.bibitem.original} % urlbst (renamed from output.bibitem, so it can be wrapped below) { newline$ "\bibitem[{" write$ label write$ ")" make.full.names duplicate$ short.list = { pop$ } { * } if$ "}]{" * write$ cite$ write$ "}" write$ newline$ "" before.all 'output.state := } FUNCTION {n.dashify} { 't := "" { t empty$ not } { t #1 #1 substring$ "-" = { t #1 #2 substring$ "--" = not { "--" * t #2 global.max$ substring$ 't := } { { t #1 #1 substring$ "-" = } { "-" * t #2 global.max$ substring$ 't := } while$ } if$ } { t #1 #1 substring$ * t #2 global.max$ substring$ 't := } if$ } while$ } FUNCTION {word.in} { bbl.in capitalize " " * } FUNCTION {format.date} { year "year" bibinfo.check duplicate$ empty$ { } 'skip$ if$ extra.label * before.all 'output.state := after.sentence 'output.state := } FUNCTION {format.btitle} { title "title" bibinfo.check duplicate$ empty$ 'skip$ { emphasize } if$ } FUNCTION {either.or.check} { empty$ 'pop$ { "can't use both " swap$ * " fields in " * cite$ * warning$ } if$ } FUNCTION {format.bvolume} { volume empty$ { "" } { bbl.volume volume tie.or.space.prefix "volume" bibinfo.check * * series "series" bibinfo.check duplicate$ empty$ 'pop$ { swap$ bbl.of space.word * swap$ emphasize * } if$ "volume and number" number either.or.check } if$ } FUNCTION {format.number.series} { volume empty$ { number empty$ { series field.or.null } { series empty$ { number "number" bibinfo.check } { output.state mid.sentence = { bbl.number } { bbl.number capitalize } if$ number tie.or.space.prefix "number" bibinfo.check * * bbl.in space.word * series "series" bibinfo.check * } if$ } if$ } { "" } if$ } FUNCTION {format.edition} { edition duplicate$ empty$ 'skip$ { output.state mid.sentence = { "l" } { "t" } if$ change.case$ "edition" bibinfo.check " " * bbl.edition * } if$ } INTEGERS { multiresult } FUNCTION {multi.page.check} { 't := #0 'multiresult := { multiresult not t empty$ not and } { t #1 #1 substring$ duplicate$ "-" = swap$ duplicate$ "," = swap$ "+" = or or { #1 'multiresult := } { t #2 global.max$ substring$ 't := } if$ } while$ multiresult } FUNCTION {format.pages} { pages duplicate$ empty$ 'skip$ { duplicate$ multi.page.check { bbl.pages swap$ n.dashify } { bbl.page swap$ } if$ tie.or.space.prefix "pages" bibinfo.check * * } if$ } FUNCTION {format.journal.pages} { pages duplicate$ empty$ 'pop$ { swap$ duplicate$ empty$ { pop$ pop$ format.pages } { ":" * swap$ n.dashify "pages" bibinfo.check * } if$ } if$ } FUNCTION {format.vol.num.pages} { volume field.or.null duplicate$ empty$ 'skip$ { "volume" bibinfo.check } if$ number "number" bibinfo.check duplicate$ empty$ 'skip$ { swap$ duplicate$ empty$ { "there's a number but no volume in " cite$ * warning$ } 'skip$ if$ swap$ "(" swap$ * ")" * } if$ * format.journal.pages } FUNCTION {format.chapter} { chapter empty$ %'skip$ %% SC { "" } { type empty$ { bbl.chapter } { type "l" change.case$ "type" bibinfo.check } if$ chapter tie.or.space.prefix "chapter" bibinfo.check * * } if$ } FUNCTION {format.chapter.pages} { chapter empty$ 'format.pages { type empty$ { bbl.chapter } { type "l" change.case$ "type" bibinfo.check } if$ chapter tie.or.space.prefix "chapter" bibinfo.check * * pages empty$ 'skip$ { ", " * format.pages * } if$ } if$ } FUNCTION {format.booktitle} { booktitle "booktitle" bibinfo.check emphasize } FUNCTION {format.in.booktitle} { format.booktitle duplicate$ empty$ 'skip$ { word.in swap$ * } if$ } FUNCTION {format.in.ed.booktitle} { format.booktitle duplicate$ empty$ 'skip$ { editor "editor" format.names.ed duplicate$ empty$ 'pop$ { "," * " " * get.bbl.editor ", " * * swap$ * } if$ word.in swap$ * } if$ } FUNCTION {format.thesis.type} { type duplicate$ empty$ 'pop$ { swap$ pop$ "t" change.case$ "type" bibinfo.check } if$ } FUNCTION {format.tr.number} { number "number" bibinfo.check type duplicate$ empty$ { pop$ bbl.techrep } 'skip$ if$ "type" bibinfo.check swap$ duplicate$ empty$ { pop$ "t" change.case$ } { tie.or.space.prefix * * } if$ } FUNCTION {format.article.crossref} { word.in " \cite{" * crossref * "}" * } FUNCTION {format.book.crossref} { volume duplicate$ empty$ { "empty volume in " cite$ * "'s crossref of " * crossref * warning$ pop$ word.in } { bbl.volume capitalize swap$ tie.or.space.prefix "volume" bibinfo.check * * bbl.of space.word * } if$ " \cite{" * crossref * "}" * } FUNCTION {format.incoll.inproc.crossref} { word.in " \cite{" * crossref * "}" * } FUNCTION {format.org.or.pub} { 't := "" address empty$ t empty$ and 'skip$ { t empty$ { address "address" bibinfo.check * } { t * address empty$ 'skip$ { ", " * address "address" bibinfo.check * } if$ } if$ } if$ } FUNCTION {format.publisher.address} { publisher "publisher" bibinfo.warn format.org.or.pub } FUNCTION {format.organization.address} { organization "organization" bibinfo.check format.org.or.pub } % urlbst... % Functions for making hypertext links. % In all cases, the stack has (link-text href-url) % % make 'null' specials FUNCTION {make.href.null} { pop$ } % make hypertex specials FUNCTION {make.href.hypertex} { "\special {html: }" * swap$ * "\special {html:}" * } % make hyperref specials FUNCTION {make.href.hyperref} { "\href {" swap$ * "} {\path{" * swap$ * "}}" * } FUNCTION {make.href} { hrefform #2 = 'make.href.hyperref % hrefform = 2 { hrefform #1 = 'make.href.hypertex % hrefform = 1 'make.href.null % hrefform = 0 (or anything else) if$ } if$ } % If inlinelinks is true, then format.url should be a no-op, since it's % (a) redundant, and (b) could end up as a link-within-a-link. FUNCTION {format.url} { inlinelinks #1 = url empty$ or { "" } { hrefform #1 = { % special case -- add HyperTeX specials urlintro "\url{" url * "}" * url make.href.hypertex * } { urlintro "\url{" * url * "}" * } if$ } if$ } FUNCTION {format.eprint} { eprint empty$ { "" } { eprintprefix eprint * eprinturl eprint * make.href } if$ } FUNCTION {format.doi} { doi empty$ { "" } { doiprefix doi * doiurl doi * make.href } if$ } FUNCTION {format.pubmed} { pubmed empty$ { "" } { pubmedprefix pubmed * pubmedurl pubmed * make.href } if$ } % Output a URL. We can't use the more normal idiom (something like % `format.url output'), because the `inbrackets' within % format.lastchecked applies to everything between calls to `output', % so that `format.url format.lastchecked * output' ends up with both % the URL and the lastchecked in brackets. FUNCTION {output.url} { url empty$ 'skip$ { new.block format.url output format.lastchecked output } if$ } FUNCTION {output.web.refs} { new.block inlinelinks 'skip$ % links were inline -- don't repeat them { output.url addeprints eprint empty$ not and { format.eprint output.nonnull } 'skip$ if$ adddoiresolver doi empty$ not and { format.doi output.nonnull } 'skip$ if$ addpubmedresolver pubmed empty$ not and { format.pubmed output.nonnull } 'skip$ if$ } if$ } % Wrapper for output.bibitem.original. % If the URL field is not empty, set makeinlinelink to be true, % so that an inline link will be started at the next opportunity FUNCTION {output.bibitem} { outside.brackets 'bracket.state := output.bibitem.original inlinelinks url empty$ not doi empty$ not or pubmed empty$ not or eprint empty$ not or and { #1 'makeinlinelink := } { #0 'makeinlinelink := } if$ } % Wrapper for fin.entry.original FUNCTION {fin.entry} { output.web.refs % urlbst makeinlinelink % ooops, it appears we didn't have a title for inlinelink { possibly.setup.inlinelink % add some artificial link text here, as a fallback linktextstring output.nonnull } 'skip$ if$ bracket.state close.brackets = % urlbst { "]" * } 'skip$ if$ fin.entry.original } % Webpage entry type. % Title and url fields required; % author, note, year, month, and lastchecked fields optional % See references % ISO 690-2 http://www.nlc-bnc.ca/iso/tc46sc9/standard/690-2e.htm % http://www.classroom.net/classroom/CitingNetResources.html % http://neal.ctstateu.edu/history/cite.html % http://www.cas.usf.edu/english/walker/mla.html % for citation formats for web pages. FUNCTION {webpage} { output.bibitem author empty$ { editor empty$ 'skip$ % author and editor both optional { format.editors output.nonnull } if$ } { editor empty$ { format.authors output.nonnull } { "can't use both author and editor fields in " cite$ * warning$ } if$ } if$ new.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ format.title "title" output.check inbrackets onlinestring output new.block year empty$ 'skip$ { format.date "year" output.check } if$ % We don't need to output the URL details ('lastchecked' and 'url'), % because fin.entry does that for us, using output.web.refs. The only % reason we would want to put them here is if we were to decide that % they should go in front of the rather miscellaneous information in 'note'. new.block note output fin.entry } % ...urlbst to here FUNCTION {article} { output.bibitem format.authors "author" output.check author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.title "title" output.check new.block crossref missing$ { journal "journal" bibinfo.check emphasize "journal" output.check possibly.setup.inlinelink format.vol.num.pages output% urlbst } { format.article.crossref output.nonnull format.pages output } if$ new.block format.note output fin.entry } FUNCTION {book} { output.bibitem author empty$ { format.editors "author and editor" output.check editor format.key output } { format.authors output.nonnull crossref missing$ { "author and editor" editor either.or.check } 'skip$ if$ } if$ format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.btitle "title" output.check format.edition output crossref missing$ { format.bvolume output new.block format.number.series output new.sentence format.publisher.address output } { new.block format.book.crossref output.nonnull } if$ new.block format.note output fin.entry } FUNCTION {booklet} { output.bibitem format.authors output author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.title "title" output.check new.block howpublished "howpublished" bibinfo.check output address "address" bibinfo.check output new.block format.note output fin.entry } FUNCTION {inbook} { output.bibitem author empty$ { format.editors "author and editor" output.check editor format.key output } { format.authors output.nonnull crossref missing$ { "author and editor" editor either.or.check } 'skip$ if$ } if$ format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.btitle "title" output.check format.edition output crossref missing$ { format.bvolume output format.number.series output format.chapter "chapter" output.check new.sentence format.publisher.address output new.block } { format.chapter "chapter" output.check new.block format.book.crossref output.nonnull } if$ new.block format.note output fin.entry } FUNCTION {incollection} { output.bibitem format.authors "author" output.check author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.title "title" output.check new.block crossref missing$ { format.in.ed.booktitle "booktitle" output.check format.edition output format.bvolume output format.number.series output format.chapter.pages output new.sentence format.publisher.address output } { format.incoll.inproc.crossref output.nonnull format.chapter.pages output } if$ new.block format.note output fin.entry } FUNCTION {inproceedings} { output.bibitem format.authors "author" output.check author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.title "title" output.check new.block crossref missing$ { format.in.booktitle "booktitle" output.check format.bvolume output format.number.series output format.pages output address "address" bibinfo.check output new.sentence organization "organization" bibinfo.check output publisher "publisher" bibinfo.check output } { format.incoll.inproc.crossref output.nonnull format.pages output } if$ new.block format.note output fin.entry } FUNCTION {conference} { inproceedings } FUNCTION {manual} { output.bibitem format.authors output author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.btitle "title" output.check format.edition output organization address new.block.checkb organization "organization" bibinfo.check output address "address" bibinfo.check output new.block format.note output fin.entry } FUNCTION {mastersthesis} { output.bibitem format.authors "author" output.check author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.title "title" output.check new.block bbl.mthesis format.thesis.type output.nonnull school "school" bibinfo.warn output address "address" bibinfo.check output month "month" bibinfo.check output new.block format.note output fin.entry } FUNCTION {misc} { output.bibitem format.authors output author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.title output new.block howpublished "howpublished" bibinfo.check output new.block format.note output fin.entry } FUNCTION {phdthesis} { output.bibitem format.authors "author" output.check author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.btitle "title" output.check new.block bbl.phdthesis format.thesis.type output.nonnull school "school" bibinfo.warn output address "address" bibinfo.check output new.block format.note output fin.entry } FUNCTION {proceedings} { output.bibitem format.editors output editor format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.btitle "title" output.check format.bvolume output format.number.series output new.sentence publisher empty$ { format.organization.address output } { organization "organization" bibinfo.check output new.sentence format.publisher.address output } if$ new.block format.note output fin.entry } FUNCTION {techreport} { output.bibitem format.authors "author" output.check author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.title "title" output.check new.block format.tr.number output.nonnull institution "institution" bibinfo.warn output address "address" bibinfo.check output new.block format.note output fin.entry } FUNCTION {unpublished} { output.bibitem format.authors "author" output.check author format.key output format.date "year" output.check date.block title empty$ 'skip$ 'possibly.setup.inlinelink if$ % urlbst format.title "title" output.check new.block format.note "note" output.check fin.entry } FUNCTION {default.type} { misc } READ FUNCTION {sortify} { purify$ "l" change.case$ } INTEGERS { len } FUNCTION {chop.word} { 's := 'len := s #1 len substring$ = { s len #1 + global.max$ substring$ } 's if$ } FUNCTION {format.lab.names} { 's := "" 't := s #1 "{vv~}{ll}" format.name$ s num.names$ duplicate$ #2 > { pop$ " " * bbl.etal * } { #2 < 'skip$ { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" = { " " * bbl.etal * } { bbl.and space.word * s #2 "{vv~}{ll}" format.name$ * } if$ } if$ } if$ } FUNCTION {author.key.label} { author empty$ { key empty$ { cite$ #1 #3 substring$ } 'key if$ } { author format.lab.names } if$ } FUNCTION {author.editor.key.label} { author empty$ { editor empty$ { key empty$ { cite$ #1 #3 substring$ } 'key if$ } { editor format.lab.names } if$ } { author format.lab.names } if$ } FUNCTION {editor.key.label} { editor empty$ { key empty$ { cite$ #1 #3 substring$ } 'key if$ } { editor format.lab.names } if$ } FUNCTION {calc.short.authors} { type$ "book" = type$ "inbook" = or 'author.editor.key.label { type$ "proceedings" = 'editor.key.label 'author.key.label if$ } if$ 'short.list := } FUNCTION {calc.label} { calc.short.authors short.list "(" * year duplicate$ empty$ short.list key field.or.null = or { pop$ "" } 'skip$ if$ * 'label := } FUNCTION {sort.format.names} { 's := #1 'nameptr := "" s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { s nameptr "{ll{ }}{ ff{ }}{ jj{ }}" format.name$ 't := nameptr #1 > { " " * namesleft #1 = t "others" = and { "zzzzz" * } { t sortify * } if$ } { t sortify * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {sort.format.title} { 't := "A " #2 "An " #3 "The " #4 t chop.word chop.word chop.word sortify #1 global.max$ substring$ } FUNCTION {author.sort} { author empty$ { key empty$ { "to sort, need author or key in " cite$ * warning$ "" } { key sortify } if$ } { author sort.format.names } if$ } FUNCTION {author.editor.sort} { author empty$ { editor empty$ { key empty$ { "to sort, need author, editor, or key in " cite$ * warning$ "" } { key sortify } if$ } { editor sort.format.names } if$ } { author sort.format.names } if$ } FUNCTION {editor.sort} { editor empty$ { key empty$ { "to sort, need editor or key in " cite$ * warning$ "" } { key sortify } if$ } { editor sort.format.names } if$ } FUNCTION {presort} { calc.label label sortify " " * type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.sort 'author.sort if$ } if$ #1 entry.max$ substring$ 'sort.label := sort.label * " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } ITERATE {presort} SORT STRINGS { last.label next.extra } INTEGERS { last.extra.num number.label } FUNCTION {initialize.extra.label.stuff} { #0 int.to.chr$ 'last.label := "" 'next.extra := #0 'last.extra.num := #0 'number.label := } FUNCTION {forward.pass} { last.label label = { last.extra.num #1 + 'last.extra.num := last.extra.num int.to.chr$ 'extra.label := } { "a" chr.to.int$ 'last.extra.num := "" 'extra.label := label 'last.label := } if$ number.label #1 + 'number.label := } FUNCTION {reverse.pass} { next.extra "b" = { "a" 'extra.label := } 'skip$ if$ extra.label 'next.extra := extra.label duplicate$ empty$ 'skip$ { year field.or.null #-1 #1 substring$ chr.to.int$ #65 < { "{\natexlab{" swap$ * "}}" * } { "{(\natexlab{" swap$ * "})}" * } if$ } if$ 'extra.label := label extra.label * 'label := } EXECUTE {initialize.extra.label.stuff} ITERATE {forward.pass} REVERSE {reverse.pass} FUNCTION {bib.sort.order} { sort.label " " * year field.or.null sortify * " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } ITERATE {bib.sort.order} SORT FUNCTION {begin.bib} { preamble$ empty$ 'skip$ { preamble$ write$ newline$ } if$ "\begin{thebibliography}{" number.label int.to.str$ * "}" * write$ newline$ "\expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi" write$ newline$ } EXECUTE {begin.bib} EXECUTE {init.urlbst.variables} % urlbst EXECUTE {init.state.consts} ITERATE {call.type$} FUNCTION {end.bib} { newline$ "\end{thebibliography}" write$ newline$ } EXECUTE {end.bib} %% End of customized bst file %% %% End of file `compling.bst'.