DeepLearningExamples/PyTorch/LanguageModeling/BERT
2019-10-16 15:12:00 -07:00
..
checkpoints [BERT] [PyTorch] Data prep fix (#171) 2019-08-22 07:52:18 +02:00
data [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
images Updating models and adding BERT/PyT 2019-07-16 21:13:08 +02:00
results [BERT] [PyTorch] Data prep fix (#171) 2019-08-22 07:52:18 +02:00
scripts Fix training perf calculation 2019-10-15 17:39:39 -07:00
.dockerignore [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
.gitignore [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
bert_config.json [BERT] [PyTorch] Data prep fix (#171) 2019-08-22 07:52:18 +02:00
bind_pyt.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
configurations.yml [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
create_pretraining_data.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
Dockerfile [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
extract_features.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
file_utils.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
LICENSE [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
modeling.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
NOTICE [BERT] [PyTorch] Data prep fix (#171) 2019-08-22 07:52:18 +02:00
optimization.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
README.md Minor fixes to BERT/PyT 2019-09-13 15:23:39 +02:00
requirements.txt [BERT] [PyTorch] Data prep fix (#171) 2019-08-22 07:52:18 +02:00
run.sub [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
run_glue.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
run_pretraining.py fix logging total steps 2019-10-16 15:12:00 -07:00
run_pretraining_inference.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
run_squad.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
run_swag.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
schedulers.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
tokenization.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00
utils.py [BERT/PyT] Support for multi-node 2019-09-10 17:21:52 +02:00

BERT For PyTorch

This repository provides a script and recipe to train the BERT model for PyTorch to achieve state-of-the-art accuracy, and is tested and maintained by NVIDIA.

Table Of Contents

Model overview

BERT, or Bidirectional Encoder Representations from Transformers, is a new method of pre-training language representations which obtains state-of-the-art results on a wide array of Natural Language Processing (NLP) tasks. This model is based on the BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding paper. NVIDIA's implementation of BERT is an optimized version of the Hugging Face implementation, leveraging mixed precision arithmetic and Tensor Cores on V100 GPUs for faster training times while maintaining target accuracy.

The repository also contains scripts to interactively launch data download, training, benchmarking and inference routines in a Docker container for both pre-training and fine-tuning for tasks such as question answering. The major differences between the original implementation of the paper and this version of BERT are as follows:

  • Scripts to download Wikipedia and BookCorpus datasets
  • Scripts to preprocess downloaded data or a custom corpus into inputs and targets for pre-training in a modular fashion
  • Fused LAMB optimizer to support training with larger batches
  • Fused Adam optimizer for fine tuning tasks
  • Fused CUDA kernels for better performance LayerNorm
  • Automatic mixed precision (AMP) training support
  • Scripts to launch on multiple number of nodes

Other publicly available implementations of BERT include:

  1. NVIDIA Tensorflow
  2. Hugging Face
  3. codertimo
  4. gluon-nlp
  5. Google's implementation

This model trains with mixed precision Tensor Cores on Volta and provides a push-button solution to pretraining on a corpus of choice. As a result, researchers can get results 4x faster than training without Tensor Cores. This model is tested against each NGC monthly container release to ensure consistent accuracy and performance over time.

Model architecture

The BERT architecture uses the same architecture as the encoder half of the Transformer. Input sequences are projected into an embedding space before being fed into the encoder structure. Additionally, positional and segment encodings are added to the embeddings to preserve positional information. The encoder structure is simply a stack of Transformer blocks, which consist of a multi-head attention layer followed by successive stages of feed-forward networks and layer normalization. The multi-head attention layer accomplishes self-attention on multiple input representations.

An illustration of the architecture taken from the Transformer paper is shown below.

BERT

Default configuration

The architecture of the BERT model is almost identical to the Transformer model that was first introduced in the Attention Is All You Need paper. The main innovation of BERT lies in the pre-training step, where the model is trained on two unsupervised prediction tasks using a large text corpus. Training on these unsupervised tasks produces a generic language model, which can then be quickly fine-tuned to achieve state-of-the-art performance on language processing tasks such as question answering.

The BERT paper reports the results for two configurations of BERT, each corresponding to a unique model size. This implementation provides the same configurations by default, which are described in the table below.

Model Hidden layers Hidden unit size Attention heads Feedforward filter size Max sequence length Parameters
BERTBASE 12 encoder 768 12 4 x 768 512 110M
BERTLARGE 24 encoder 1024 16 4 x 1024 512 330M

Feature support matrix

The following features are supported by this model.

Feature BERT
APEX AMP Yes
APEX DDP Yes
LAMB Yes
Multi-node Yes

Features

APEX is a Pytorch extension with NVIDIA-maintained utilities to streamline mixed precision and distributed training, whereas AMP is an abbreviation used for automatic mixed precision training.

DDP stands for DistributedDataParallel and is used for multi-GPU training.

LAMB stands for Layerwise Adaptive Moments based optimizer, is a large batch optimization technique that helps accelerate training of deep neural networks using large minibatches. It allows using a global batch size of 65536 and 32768 on sequence lengths 128 and 512 respectively, compared to a batch size of 256 for Adam. The optimized implementation accumulates 1024 gradients batches in phase 1 and 4096 steps in phase 2 before updating weights once. This results in 15% training speedup. On multi-node systems, LAMB allows scaling up to 1024 GPUs resulting in training speedups of up to 72x in comparison to Adam. Adam has limitations on the learning rate that can be used since it is applied globally on all parameters whereas LAMB follows a layerwise learning rate strategy.

Mixed precision training

Mixed precision is the combined use of different numerical precisions in a computational method. Mixed precision training offers significant computational speedup by performing operations in half-precision format, while storing minimal information in single-precision to retain as much information as possible in critical parts of the network. Since the introduction of Tensor Cores in the Volta and Turing architecture, significant training speedups are experienced by switching to mixed precision -- up to 3x overall speedup on the most arithmetically intense model architectures. Using mixed precision training requires two steps:

  1. Porting the model to use the FP16 data type where appropriate.
  2. Adding loss scaling to preserve small gradient values.

For information about:

Enabling mixed precision

In this repository, mixed precision training is enabled by NVIDIAs APEX library. The APEX library has an automatic mixed precision module that allows mixed precision to be enabled with minimal code changes.

Automatic mixed precision can be enabled with the following code changes:

from apex import amp
if fp16:
    # Wrap optimizer and model
    model, optimizer = amp.initialize(model, optimizer, opt_level=<opt_level>, loss_scale=”dynamic”)
 
if fp16:
    with amp.scale_loss(loss, optimizer) as scaled_loss:
        scaled_loss.backward()

Where <opt_level> is the optimization level. In the pretraining, O2 is set as the optimization level. Mixed precision training can be turned on by passing the fp16 argument to the run_pretraining.py and run_squad.py. All shell scripts have a positional argument available to enable mixed precision training.

Glossary

Fine-tuning
Training an already pretrained model further using a task specific dataset for subject-specific refinements, by adding task-specific layers on top if required.

Language Model
Assigns a probability distribution over a sequence of words. Given a sequence of words, it assigns a probability to the whole sequence.

Pre-training
Training a model on vast amounts of data on the same (or different) task to build general understandings.

Transformer
The paper Attention Is All You Need introduces a novel architecture called Transformer that uses an attention mechanism and transforms one sequence into another.

Phase1
Pretraining on samples of sequence length 128 and 20 masked predictions per sequence.

Phase2
Pretraining on samples of sequence length 512 and 80 masked predictions per sequence.

Setup

The following section lists the requirements in order to start training the BERT model.

Requirements

This repository contains Dockerfile which extends the PyTorch NGC container and encapsulates some dependencies. Aside from these dependencies, ensure you have the following components:

For more information about how to get started with NGC containers, see the following sections from the NVIDIA GPU Cloud Documentation and the Deep Learning Documentation:

For those unable to use the PyTorch NGC container, to set up the required environment or create your own container, see the versioned NVIDIA Container Support Matrix.

For multi-node, the sample provided in this repository requires Enroot and Pyxis set up on a SLURM cluster.

More information on how to set up and launch can be found in the Multi-node Documentation.

Quick Start Guide

To train your model using mixed precision with Tensor Cores or using FP32, perform the following steps using the default parameters of the BERT model. The default parameters for pretraining have been set to run on 8 x V100 32G cards. For the specifics concerning training and inference, see the Advanced section.

  1. Clone the repository.

git clone https://github.com/NVIDIA/DeepLearningExamples.git

cd DeepLearningExamples/PyTorch/LanguageModeling/BERT

  1. Download the NVIDIA pretrained checkpoint.

If you want to use a pretrained checkpoint, visit NGC and browse the available models. This downloaded checkpoint is used to fine-tune on SQuAD. Ensure you place the downloaded checkpoint in the checkpoints/ folder.

  1. Build the BERT 19.08 NGC container.

bash scripts/docker/build.sh

  1. Start an interactive session in the NGC container to run training/inference.

bash scripts/docker/launch.sh

Resultant logs and checkpoints of pretraining and fine-tuning routines get stored in the results/ folder.

data and vocab.txt are downloaded in data/ directory by default. Refer to the Getting the data section for more details on how to process a custom corpus as required for BERT pretraining.

  1. Download and preprocess the dataset.

This repository provides scripts to download, verify and extract the following datasets:

  • SQuAD (fine-tuning for question answering)
  • Wikipedia (pre-training)
  • BookCorpus (pre-training)

To download, verify, extract the datasets, and create the shards in hdf5 format, run:
/workspace/bert/data/create_datasets_from_start.sh

Depending on the speed of your internet connection, this process takes about a day to complete.

  1. Start pretraining.

BERT is designed to pre-train deep bidirectional networks for language representations. The following scripts replicate pretraining on Wikipedia + BookCorpus from this paper. These scripts are general and can be used for pre-training language representations on any corpus of choice.

To run on a single node, from within the container, you can use the following script to run pre-training.
bash scripts/run_pretraining.sh

The default hyperparameters are set to run on 8 x V100 32G cards.

To run on multiple nodes, see the Multi-node section.

  1. Start fine-tuning with the SQuAD dataset.

The above pretrained BERT representations can be fine tuned with just one additional output layer for a state-of-the-art question answering system. Running the following script launches fine-tuning for question answering with the SQuAD dataset.

bash scripts/run_squad.sh /workspace/checkpoints/<downloaded_checkpoint>

Default arguments are listed below in the order the scripts expects:

  • Initial checkpoint - The default is /workspace/checkpoints/bert_uncased.pt.
  • Number of training Epochs - The default is 2.
  • Batch size - The default is 3.
  • Learning rate - The default is 3e-5.
  • Precision (either fp16 or fp32) - The default is fp16.
  • Number of GPUs - The default is 8.
  • Seed - The default is 1.
  • SQuAD directory - The default is /workspace/bert/data/v1.1.
  • Vocabulary file (token to ID mapping) - The default is /workspace/bert/vocab/vocab.
  • Output directory for result - The default is /results/SQuAD.
  • Mode (train, eval, train eval, predict) - The default is train.
  • Config file for the BERT model (It should be the same as the pretrained model) - The default is /workspace/bert/bert_config.json.

The script saves the final checkpoint to the /results/SQuAD/pytorch_model.bin file.

  1. Start validation/evaluation.

Validation can be performed with the same script as above, setting Mode to prediction.

  1. Start inference/predictions.

Inference can be performed with the same script as above, setting Mode to eval. Inference predictions are saved to <OUTPUT_DIRECTORY>/predictions.json.

Advanced

The following sections provide greater details of the dataset, running training and inference, and the training results.

Scripts and sample code

Descriptions of the key scripts and folders are provided below.

  • data/ - Contains scripts for downloading and preparing individual datasets, and will contain downloaded and processed datasets.
  • scripts/ - Contains shell scripts to launch data download, pre-training, and fine-tuning.
  • data_download.sh - Launches download and processing of required datasets.
  • run_squad.sh - Interface for launching question answering fine-tuning with run_squad.py.
  • run_pretraining.sh - Interface for launching BERT pre-training with run_pretraining.py.
  • create_pretraining_data.py - Creates .hdf5 files from shared text files in the final step of dataset creation.
  • model.py - Implements the BERT pre-training and fine-tuning model architectures with PyTorch.
  • optimization.py - Implements the LAMB optimizer with PyTorch.
  • run_squad.py - Implements fine tuning training and evaluation for question answering on the SQuAD dataset.
  • run_pretraining.py - Implements BERT pre-training.
  • run_pretraining_inference.py - Implements evaluation of a BERT pre-trained model.

Parameters

Pre-training parameters

The complete list of the available parameters for the run_pretraining.py script are:

  --input_dir INPUT_DIR       - The input data directory.
                                Should contain .hdf5 files for the task.

  --config_file CONFIG_FILE      - Path to a json file describing the BERT model
                                configuration. This file configures the model
                                architecture, such as the number of transformer
                                blocks, number of attention heads, etc.

  --bert_model BERT_MODEL        - Specifies the type of BERT model to use;
                                should be one of the following:
        bert-base-uncased
        bert-large-uncased
        bert-base-cased
        bert-base-multilingual
        bert-base-chinese

  --output_dir OUTPUT_DIR        - Path to the output directory where the model
                                checkpoints will be written.

  --max_seq_length MAX_SEQ_LENGTH
                              - The maximum total input sequence length after
                                WordPiece tokenization. Sequences longer than
                                this will be truncated, and sequences shorter
                                than this will be padded.

  --max_predictions_per_seq MAX_PREDICTIONS_PER_SEQ
                              - The maximum total of masked tokens per input
                                sequence for Masked LM.

  --train_batch_size TRAIN_BATCH_SIZE
                              - Batch size per GPU for training.

  --learning_rate LEARNING_RATE
                              - The initial learning rate for LAMB optimizer.

  --max_steps MAX_STEPS       - Total number of training steps to perform.

  --warmup_proportion WARMUP_PROPORTION
                              - Proportion of training to perform linear learning
                                rate warmup for. For example, 0.1 = 10% of training.

  --seed SEED                 - Sets the seed to use for random number generation.

  --gradient_accumulation_steps GRADIENT_ACCUMULATION_STEPS
                              - Number of update steps to accumulate before
                                performing a backward/update pass.

  --fp16                      - If set, will perform computations using
                                automatic mixed precision.

  --loss_scale LOSS_SCALE        - Sets the loss scaling value to use when
                                mixed precision is used. The default value (0)
                                tells the script to use dynamic loss scaling
                                instead of fixed loss scaling.

  --log_freq LOG_FREQ         - If set, the script will output the training
                                loss every LOG_FREQ steps.
 
  --resume_from_checkpoint       - If set, training will resume from a checkpoint
                                that currently exists in OUTPUT_DIR.

  --num_steps_per_checkpoint NUM_STEPS_PER_CHECKPOINT
                              - Number of update steps until a model checkpoint
                                is saved to disk.
  --phase2                 - Specified if training on phase 2 only. If not specified, default pretraining is on phase 1.

  --phase1_end_step        - The number of steps phase 1 was trained for. In order to  
                           resume phase 2 the correct way, phase1_end_step should correspond to the --max_steps phase 1 was trained for.

Multi-node

Multi-node runs can be launched on a pyxis/enroot Slurm cluster (see Requirements) with the run.sub script with the following command for a 4-node DGX1 example for both phase 1 and phase 2:

BATCHSIZE=2048 LR=6e-3 GRADIENT_STEPS=128 PHASE=1 sbatch -N4 --ntasks-per-node=8 run.sub
BATCHSIZE=1024 LR=4e-3 GRADIENT_STEPS=256 PHASE=2 sbatch -N4 --ntasks-per-node=8 run.sub

Checkpoint after phase 1 will be saved in checkpointdir specified in run.sub. The checkpoint will be automatically picked up to resume training on phase 2. Note that phase 2 should be run after phase 1.

Variables to re-run the Training performance results are available in the configurations.yml file.

The batch variables BATCHSIZE, LR, GRADIENT_STEPS,PHASE refer to the Python arguments train_batch_size, learning_rate, gradient_accumulation_steps, phase2 respectively.

Note that the run.sub script is a starting point that has to be adapted depending on the environment. In particular, variables such as datadir handle the location of the files for each phase.

Refer to the files contents to see the full list of variables to adjust for your system.

Fine-tuning parameters

The run_squad.py script contains many of the same arguments as run_pretraining.py. The main script specific parameters are:

 --bert_model BERT_MODEL      - Specifies the type of BERT model to use;
                                should be one of the following:
        bert-base-uncased
        bert-large-uncased
        bert-base-cased
        bert-base-multilingual
        bert-base-chinese

 --train_file TRAIN_FILE      - Path to the SQuAD json for training.
                                For example, train-v1.1.json.

 --predict_file PREDICT_FILE     - Path to the SQuAD json for predictions.
                                For example, dev-v1.1.json or test-v1.1.json.

 --max_seq_length MAX_SEQ_LENGTH
                              - The maximum total input sequence length
                                after WordPiece tokenization.
                                Sequences longer than this will be truncated,
                                and sequences shorter than this will be padded.

 --doc_stride DOC_STRIDE      - When splitting up a long document into chunks
                                this parameters sets how much stride to take
                                between chunks of tokens.

 --max_query_length MAX_QUERY_LENGTH
                              - The maximum number of tokens for the question.
                                Questions longer than <max_query_length>
                                will be truncated to the value specified.

 --n_best_size N_BEST_SIZE       - The total number of n-best predictions to
                                generate in the nbest_predictions.json
                                output file.

 --max_answer_length MAX_ANSWER_LENGTH
                              - The maximum length of an answer that can be
                                generated. This is needed because the start and
                                end predictions are not conditioned on one another.

 --verbose_logging            - If true, all the warnings related to data
                                processing will be printed. A number of warnings
                                are expected for a normal SQuAD evaluation.

 --do_lower_case              - Whether to lower case the input text. Set to
                                true for uncased models and false for cased models.

 --version_2_with_negative       - If true, the SQuAD examples contain questions
                                that do not have an answer.

 --null_score_diff_threshold NULL_SCORE_DIFF_THRES HOLD
                              - A null answer will be predicted if null_score if
                                best_non_null is greater than NULL_SCORE_DIFF_THRESHOLD.

Command-line options

To see the full list of available options and their descriptions, use the -h or --help command line option, for example:

python run_pretraining.py --help

python run_squad.py --help

Detailed descriptions of command-line options can be found in the Parameters section.

Getting the data

For pre-training BERT, we use the concatenation of Wikipedia (2500M words) as well as BookCorpus (800M words). For Wikipedia, we extract only the text passages and ignore headers, lists, and tables. BERT requires that datasets are structured as a document level corpus rather than a shuffled sentence level corpus because it is critical to extract long contiguous sentences.

The preparation of pre-training dataset is described in the bertPrep.py script found in the data/ folder. The component steps in the automated scripts to prepare the datasets are as follows:

  1. Data download and extract - the dataset is downloaded and extracted.

  2. Clean and format - document tags, etc. are removed from the dataset.

  3. Sentence segmentation - the corpus text file is processed into separate sentences.

  4. Sharding - the sentence segmented corpus file is split into a number of uniformly distributed smaller text documents.

  5. hdf5 file creation - each text file shard is processed by the create_pretraining_data.py script to produce a corresponding hdf5 file. The script generates input data and labels for masked language modeling and sentence prediction tasks for the input text shard.

The tools used for preparing the BookCorpus and Wikipedia datasets can be applied to prepare an arbitrary corpus. The create_datasets_from_start.sh script in the data/ directory applies sentence segmentation, sharding, and hdf5 file creation given an arbitrary text file containing a document-separated text corpus.

For fine-tuning a pre-trained BERT model for specific tasks, by default this repository prepares the following dataset:

  • SQuAD: for question answering

Dataset guidelines

The procedure to prepare a text corpus for pre-training is described in the above section. This section will provide additional insight into how exactly raw text is processed so that it is ready for pre-training.

First, raw text is tokenized using WordPiece tokenization. A [CLS] token is inserted at the start of every sequence, and the two sentences in the sequence are separated by a [SEP] token.

Note: BERT pre-training looks at pairs of sentences at a time. A sentence embedding token [A] is added to the first sentence and token [B] to the next.

BERT pre-training optimizes for two unsupervised classification tasks. The first is Masked Language Modelling (Masked LM). One training instance of Masked LM is a single modified sentence. Each token in the sentence has a 15% chance of being replaced by a [MASK] token. The chosen token is replaced with [MASK] 80% of the time, 10% with a random token and the remaining 10% the token is retained. The task is then to predict the original token.

The second task is next sentence prediction. One training instance of BERT pre-training is two sentences (a sentence pair). A sentence pair may be constructed by simply taking two adjacent sentences from a single document, or by pairing up two random sentences with equal probability. The goal of this task is to predict whether or not the second sentence followed the first in the original document.

The create_pretraining_data.py script takes in raw text and creates training instances for both pre-training tasks.

Multi-dataset

This repository provides functionality to combine multiple datasets into a single dataset for pre-training on a diverse text corpus at the shard level in data/create_datasets_from_start.sh.

Training process

The training process consists of two steps: pre-training and fine-tuning.

Pre-training

Pre-training is performed using the run_pretraining.py script along with parameters defined in the scripts/run_pretraining.sh.

The run_pretraining.sh script runs a job on a single node that trains the BERT-large model from scratch using Wikipedia and BookCorpus datasets as training data using the LAMB optimizer. By default, the training script runs two phases of training with a hyperparameter recipe specific to 8 x V100 32G cards:

Phase 1: (Maximum sequence length of 128)

  • Runs on 8 GPUs with training batch size of 64 per GPU
  • Uses a learning rate of 6e-3
  • Has FP16 precision enabled
  • Runs for 7038 steps, where the first 28.43% (2000) are warm-up steps
  • Saves a checkpoint every 200 iterations (keeps only the latest 3 checkpoints) and at the end of training. All checkpoints, and training logs are saved to the /results directory (in the container which can be mounted to a local directory).
  • Creates a log file containing all the output

Phase 2: (Maximum sequence length of 512)

  • Runs on 8 GPUs with training batch size of 8 per GPU
  • Uses a learning rate of 4e-3
  • Has FP16 precision enabled
  • Runs for 1563 steps, where the first 12.8% are warm-up steps
  • Saves a checkpoint every 200 iterations (keeps only the latest 3 checkpoints) and at the end of training. All checkpoints, and training logs are saved to the /results directory (in the container which can be mounted to a local directory).
  • Creates a log file containing all the output

These parameters will train on Wikipedia and BookCorpus to SoTA accuracy on a DGX-1 with 32GB V100 cards.

bash run_pretraining.sh <training_batch_size> <learning-rate> <precision> <num_gpus> <warmup_proportion> <training_steps> <save_checkpoint_steps> <resume_training> <create_logfile> <accumulate_gradients> <gradient_accumulation_steps> <seed> <job_name> <allreduce_post_accumulation> <allreduce_post_accumulation_fp16> <accumulate_into_fp16> <train_bath_size_phase2> <learning_rate_phase2> <warmup_proportion_phase2> <train_steps_phase2> <gradient_accumulation_steps_phase2>

Where:

  • <training_batch_size> is per-GPU batch size used for training. Larger batch sizes run more efficiently, but require more memory.

  • <learning_rate> is the base learning rate for training

  • <precision> is the type of math in your model, can be either fp32 or fp16. The options mean:

    • FP32: 32-bit IEEE single precision floats.
    • FP16: Mixed precision 16 and 32 bit floats.
  • <num_gpus> is the number of GPUs to use for training. Must be equal to or smaller than the number of GPUs attached to your node.

  • <warmup_proportion> is the percentage of training steps used for warm-up at the start of training.

  • <training_steps> is the total number of training steps.

  • <save_checkpoint_steps> controls how often checkpoints are saved.

  • <resume_training> if set to true, training should resume from latest model in /results/checkpoints. Default is false.

  • <create_logfile> a flag indicating if output should be written to a log file or not (acceptable values are true or 'false. true` indicates output should be saved to a log file.)

  • <accumulate_gradient> a flag indicating whether a larger batch should be simulated with gradient accumulation.

  • <gradient_accumulation_steps> an integer indicating the number of steps to accumulate gradients over. Effective batch size = training_batch_size / gradient_accumulation_steps.

  • <seed> random seed for the run.

  • <allreduce_post_accumulation> - If set to true, performs allreduce only after the defined number of gradient accumulation steps.

  • <allreduce_post_accumulation_fp16> - If set to true, performs allreduce after gradient accumulation steps in FP16.

  • <accumulate_into_fp16> - If set to true, accumulates/sums the gradients in FP16.

    Note: The above three options need to be set to false when running on fp32.

  • <training_batch_size_phase2> is per-GPU batch size used for training in phase 2. Larger batch sizes run more efficiently, but require more memory.

  • <learning_rate_phase2> is the base learning rate for training phase 2.

  • <warmup_proportion_phase2> is the percentage of training steps used for warm-up at the start of training.

  • <training_steps_phase2> is the total number of training steps for phase 2, to be continued in addition to phase 1.

  • <gradient_accumulation_steps_phase2> an integer indicating the number of steps to accumulate gradients over in phase 2. Effective batch size = training_batch_size_phase2 / gradient_accumulation_steps_phase2.

For example:

bash scripts/run_pretraining.sh

Trains BERT-large from scratch on a DGX-1 32G using FP16 arithmetic. 90% of the training steps are done with sequence length 128 (phase1 of training) and 10% of the training steps are done with sequence length 512 (phase2 of training).

In order to train on a DGX-1 16G, set gradient_accumulation_steps to 512 and gradient_accumulation_steps_phase2 to 1024 in scripts/run_pretraining.sh.

In order to train on a DGX-2 32G, set train_batch_size to 4096, train_batch_size_phase2 to 2048, num_gpus to 16, gradient_accumulation_steps to 64 and gradient_accumulation_steps_phase2 to 256 in scripts/run_pretraining.sh

Fine-tuning

Fine-tuning is provided for a variety of tasks. The following tasks are included with this repository through the following scripts:

  • Question Answering (scripts/run_squad.sh)

By default, each Python script implements fine-tuning a pre-trained BERT model for a specified number of training epochs as well as evaluation of the fine-tuned model. Each shell script invokes the associated python script with the following default parameters:

  • Uses 8 GPUs
  • Has FP16 precision enabled
  • Saves a checkpoint at the end of training to the /results/<dataset_name> folder

Fine-tuning Python scripts implement support for mixed precision and multi-GPU training through NVIDIAs APEX library. For a full list of parameters and associated explanations, see the Parameters section.

All fine-tuning shell scripts have the same positional arguments, outlined below:

bash scripts/run_squad.sh <checkpoint_to_load> <epochs> <batch_size per GPU> <learning rate> <precision (either `fp16` or `fp32`)> <number of GPUs to use> <seed> <SQuAD_DATA_DIR> <VOCAB_FILE> <OUTPUT_DIR> <mode (either `train`, `eval` or `train eval`)> <CONFIG_FILE>

By default, the mode positional argument is set to train eval. See the Quick Start Guide for explanations of each positional argument.

Note: The first positional argument (the path to the checkpoint to load) is required.

Each fine-tuning script assumes that the corresponding dataset files exist in the data/ directory or separate path can be a command-line input to run_squad.sh.

Inference process

Pre-training inference

Inference on a pretrained model is performed using the run_pretraining_inference.py script along with parameters defined in scripts/run_pretraining_inference.sh. Inference is supported both for single and multi-GPU. By setting either the --eval or --prediction flag, you can choose between running evaluation on a given dataset or doing prediction (on both masked language model and next sentence prediction).

Prediction mode can be used to measure the inference turnaround time.

The run_pretraining_inference.sh script takes a model and a dataset and performs inference/evaluation on it. By default, the inferencing script:

  • Has FP16 precision enabled
  • Runs on 8 GPUs
  • Evaluates the latest checkpoint present in /results/checkpoints with a batch size of 14
  • Runs inference on the entire Wikipedia dataset

This script outputs prediction file to /results/pyt_bert_pretraining_inference_<precision>_<global_batchsize>.<datestamp>.log. The output log contains information about:

  • Inference performance
  • Loss (masked language model loss and next sentence prediction loss) of the specified dataset if ground truths exist with the --eval flag.

For example:

bash scripts/run_pretraining_inference.sh <evaluation_batch_size> <precision> <num_gpus> <inference_mode><model_checkpoint><inference_steps><create_logfile>

Where:

  • <evaluation_batch_size> is per-GPU batch size used for inference. Larger batch sizes run more efficiently, but require more memory.
  • <precision> is the type of math in your model, can be either fp32 or fp16. The options mean:
    • fp32: 32-bit IEEE single precision floats
    • fp16: 16-bit floats for 3.2x faster inference
  • <num_gpus> is the number of GPUs to use for inference. Must be equal to or smaller than the number of GPUs attached to your node.
  • <inference_mode> is either --eval for evaluation or --prediction for inference
  • <model_checkpoint> is the model checkpoint to run inference on. Default is -1, which takes the most recent model checkpoint from the checkpoints folder.
  • <inference_steps> is the total number of inference steps per process. Default is -1, which iterates over the entire dataset.
  • <create_logfile> a flag indicating if output should be written to a logfile or not (acceptable values are true or false. true indicates output should be saved to a logfile.)

For example:

bash scripts/run_pretraining_inference.sh 14 fp16 8 eval -1 -1 true

Fine-tuning inference

Evaluation fine-tuning is enabled by the same scripts as training:

  • Question Answering (scripts/run_squad.sh)

The mode positional argument of the shell script is used to run in evaluation mode. The fine-tuned BERT model will be run on the evaluation dataset, and the evaluation loss and accuracy will be displayed.

Each inference shell script expects dataset files to exist in the same locations as the corresponding training scripts. The inference scripts can be run with default settings. By setting mode variable in the script to either eval or prediction flag, you can choose between running prediction and evaluating them on a given dataset or just the former.

bash scripts/run_squad.sh <path to fine-tuned model checkpoint>

Performance

Benchmarking

The following section shows how to run benchmarks measuring the model performance in training and inference modes.

Training performance benchmark

Training performance benchmarks for both pretraining and fine-tuning can be obtained by running scripts/run_pretraining.sh and scripts/run_squad.sh respectively. The required parameters can be passed through the command-line as described in Training process.

To benchmark the training performance on a specific batch size, run:

bash scripts/run_squad.sh <pretrained model path> <epochs> <batch size> <learning rate> <fp16|fp32> <num_gpus> <seed> <path to SQuAD dataset> <path to vocab set> <results directory> train <BERT config path] <max steps>

An example call used to generate throughput numbers:

bash scripts/run_squad.sh /workspace/bert/bert_large_uncased_wiki+books.pt.model 2.0 4 3e-5 fp16 8 42 /workspace/bert/squad_data /workspace/bert/scripts/vocab/vocab /results/SQuAD train /workspace/bert/bert_config.json -1

Inference performance benchmark

Inference performance benchmarks for both pretraining and fine-tuning can be obtained by running scripts/run_pretraining_inference.sh and scripts/run_squad.sh respectively. The required parameters can be passed through the command-line as described in Inference process.

To benchmark the inference performance on a specific batch size, run:

bash scripts/run_squad.sh <pretrained model path> <epochs> <batch size> <learning rate> <fp16|fp32> <num_gpus> <seed> <path to SQuAD dataset> <path to vocab set> <results directory> eval <BERT config path> <max steps>

An example call used to generate throughput numbers:

bash scripts/run_squad.sh /workspace/bert/bert_large_uncased_wiki+books.pt.model 2.0 4 3e-5 fp16 8 42 /workspace/bert/squad_data /workspace/bert/scripts/vocab/vocab /results/SQuAD eval /workspace/bert/bert_config.json -1

Results

Training accuracy results

Our results were obtained by running the scripts/run_squad.sh and scripts/run_pretraining.sh training scripts in the pytorch:19.07-py3 NGC container on NVIDIA DGX-2 with (16x V100 32G) GPUs for pretraining and NVIDIA DGX-1 with (8x V100 16G) GPUs for fine-tuning.

Pre-training loss results
DGX System GPUs Accumulated Batch size / GPU (Phase 1 and Phase 2) Accumulation steps (Phase 1 and Phase 2) Final Loss - FP32 Final Loss - mixed precision Time to train(hours) - FP32 Time to train(hours) - mixed precision Time to train speedup (FP32 to mixed precision)
1 x NVIDIA DGX-1 With 16G 8 8192 and 4196 512 and 1024 - 1.36 - 153.16 -
1 x NVIDIA DGX-2H With 32G 16 4096 and 2048 64 and 256 - 1.35 - 58.4 -
4 x NVIDIA DGX-1 With 16G 8 2048 and 1024 128 and 256 - 1.34 - 39.27 -
4 x NVIDIA DGX-2H With 32G 16 1024 and 512 16 and 64 - 1.33 - 15.35 -
16 x NVIDIA DGX-1 With 16G 8 512 and 256 32 and 64 - 1.329 - 10.36 -
16 x NVIDIA DGX-2H With 32G 16 256 and 128 4 and 16 - 1.33 - 3.94 -
64 x NVIDIA DGX-2H With 32G 16 64 and 32 (1 and 4)FP16 and (2 and 8)FP32 1.33 1.331 4.338 1.124 3.85
Fine-tuning accuracy results
GPUs Batch size / GPU Accuracy - FP32(% F1) Accuracy - mixed precision(% F1) Time to train(hours) - FP32 Time to train(hours) - mixed precision Time to train speedup (FP32 to mixed precision)
8 4 91.18 91.24 .77 .21 3.66
Training stability test
Pre-training stability test
Accuracy Metric Seed 1 Seed 2 Seed 3 Seed 4 Seed 5 Mean Standard Deviation
Final Loss 1.344 1.328 1.324 1.326 1.333 1.331 0.009
Fine-tuning stability test

Training stability with 8 GPUs, FP16 computations, batch size of 4:

Accuracy Metric Seed 1 Seed 2 Seed 3 Seed 4 Seed 5 Mean Standard Deviation
Exact Match % 84.50 84.07 84.52 84.23 84.17 84.30 .200
f1 % 91.29 91.01 91.14 91.10 90.85 91.08 0.162

Training performance results

Training performance: NVIDIA DGX-1 (8x V100 16G)

Our results were obtained by running the scripts/run_pretraining.sh and scripts/run_squad.sh training scripts in the pytorch:19.07-py3 NGC container on NVIDIA DGX-1 with (8x V100 16G) GPUs. Performance numbers (in sequences per second) were averaged over a predefined number of training iterations.

Pre-training NVIDIA DGX-1 With 16G
GPUs Batch size / GPU (FP32) Batch size / GPU (FP16) Sequence length Throughput - FP32(sequences/sec) Throughput - mixed precision(sequences/sec) Throughput speedup (FP32 - mixed precision) Weak scaling - FP32 Weak scaling - mixed precision
1 8 16 128 33.36 125.44 3.76 1.00 1.00
4 8 16 128 121.92 458.24 3.75 3.65 3.65
8 8 16 128 245.12 919.04 3.74 7.34 7.32
1 2 4 512 7.56 26.64 3.52 1.00 1.00
4 2 4 512 28 98.24 3.50 3.70 3.69
8 2 4 512 56.16 194.56 3.46 7.43 7.30
Pre-training on multiple NVIDIA DGX-1 With 16G
Nodes GPUs Batch size / GPU (FP32) Batch size / GPU (FP16) Sequence length Throughput - FP32(sequences/sec) Throughput - mixed precision(sequences/sec) Throughput speedup (FP32 - mixed precision) Weak scaling - FP32 Weak scaling - mixed precision
1 8 N/A 16 128 N/A 874.24 N/A N/A 1.00
4 8 N/A 16 128 N/A 3089.76 N/A N/A 3.53
16 8 N/A 16 128 N/A 12144.64 N/A N/A 13.89
1 8 N/A 4 512 N/A 195.93 N/A N/A 1.00
4 8 N/A 4 512 N/A 700.16 N/A N/A 3.57
16 8 N/A 4 512 N/A 2746.368 N/A N/A 14.02
Fine-tuning NVIDIA DGX-1 With 16G
GPUs Batch size / GPU Throughput - FP32(sequences/sec) Throughput - mixed precision(sequences/sec) Throughput speedup (FP32 - mixed precision) Weak scaling - FP32 Weak scaling - mixed precision
1 4 8.96 35.88 3.99 1.00 1.00
4 4 31.04 120.00 3.86 3.46 3.34
8 4 64.64 227.84 3.52 7.20 6.35
1 10 N/A 45.2 N/A N/A 1.0
4 10 N/A 163.6 N/A N/A 3.62
8 10 N/A 327.2 N/A N/A 7.24
Training performance: NVIDIA DGX-1 (8x V100 32G)

Our results were obtained by running the scripts/run_pretraining.sh and scripts/run_squad.sh training scripts in the pytorch:19.07-py3 NGC container on NVIDIA DGX-1 with (8x V100 32G) GPUs. Performance numbers (in sequences per second) were averaged over an entire training epoch.

Pre-training NVIDIA DGX-1 With 32G
GPUs Batch size / GPU (FP32) Batch size / GPU (FP16) Sequence length Throughput - FP32(sequences/sec) Throughput - mixed precision(sequences/sec) Throughput speedup (FP32 - mixed precision) Weak scaling - FP32 Weak scaling - mixed precision
1 32 64 128 40.32 171.52 4.25 1.0 1.0
4 32 64 128 154.88 655.36 4.23 3.84 3.82
8 32 64 128 309.76 1305.6 4.21 7.68 7.62
1 4 8 512 8.36 30.08 3.68 1.00 1.00
4 4 8 512 31.52 116.80 3.70 3.84 3.82
8 4 8 512 62.72 231.68 3.69 7.68 7.61
1 N/A 10 512 N/A 46.00 N/A N/A 1.0
4 N/A 10 512 N/A 164.00 N/A N/A 3.57
8 N/A 10 512 N/A 325.60 N/A N/A 7.08
Fine-tuning NVIDIA DGX-1 With 32G
GPUs Batch size / GPU Throughput - FP32(sequences/sec) Throughput - mixed precision(sequences/sec) Throughput speedup (FP32 - mixed precision) Weak scaling - FP32 Weak scaling - mixed precision
1 8 8.64 36.04 4.171 1.00 1.00
4 8 31.52 116.80 3.71 3.64 3.24
8 8 64.32 231.04 3.59 7.44 6.41
1 10 N/A 46.00 N/A N/A 1.0
4 10 N/A 164.00 N/A N/A 3.57
8 10 N/A 325.60 N/A N/A 7.08
Training performance: NVIDIA DGX-2 (16x V100 32G)

Our results were obtained by running the scripts/run_pretraining.sh and scripts/run_squad.sh training scripts in the pytorch:19.07-py3 NGC container on NVIDIA DGX-2 with (16x V100 32G) GPUs. Performance numbers (in sequences per second) were averaged over an entire training epoch.

Pre-training NVIDIA DGX-2 With 32G
GPUs Batch size / GPU (FP32) Batch size / GPU (FP16) Sequence length Throughput - FP32(sequences/sec) Throughput - mixed precision(sequences/sec) Throughput speedup (FP32 - mixed precision) Weak scaling - FP32 Weak scaling - mixed precision
1 32 64 128 43.52 181.76 4.17 1.00 1.00
4 32 64 128 168.96 704 4.16 3.88 3.87
8 32 64 128 335.36 1402.88 4.18 7.70 7.72
16 32 64 128 665.6 2775.04 4.16 15.29 15.26
1 4 8 512 9.0 32.32 3.59 1.00 1.00
4 4 8 512 34.4 124.16 3.60 3.82 3.84
8 4 8 512 68.16 247.04 3.62 7.57 7.64
16 4 8 512 135.68 488.96 3.60 15.08 15.13
1 N/A 10 512 N/A 47.40 N/A N/A 1.00
4 N/A 10 512 N/A 165.60 N/A N/A 3.49
8 N/A 10 512 N/A 325.60 N/A N/A 6.87
16 N/A 10 512 N/A 648.00 N/A N/A 13.67
Pre-training on multiple NVIDIA DGX-2H With 32G

Note: Multi-node performance numbers below are on DGX-2H whereas the single node performance numbers above are on DGX-2.

Nodes GPUs Batch size / GPU (FP32) Batch size / GPU (FP16) Sequence length Throughput - FP32(sequences/sec) Throughput - mixed precision(sequences/sec) Throughput speedup (FP32 - mixed precision) Weak scaling - FP32 Weak scaling - mixed precision
1 16 N/A 64 128 N/A 3379.2 N/A N/A 1.00
4 16 N/A 64 128 N/A 12709.88 N/A N/A 3.76
16 16 N/A 64 128 N/A 51937.28 N/A N/A 15.37
64 16 32 64 128 46628.86 188088.32 4.03 N/A 55.66
1 16 N/A 8 512 N/A 625.66 N/A N/A 1.00
4 16 N/A 8 512 N/A 2386.38 N/A N/A 3.81
16 16 N/A 8 512 N/A 9932.8 N/A N/A 15.87
64 16 4 8 512 9543.68 37478.4 3.92 N/A 59.9
Fine-tuning NVIDIA DGX-2 With 32G
GPUs Batch size / GPU Throughput - FP32(sequences/sec) Throughput - mixed precision(sequences/sec) Throughput speedup (FP32 - mixed precision) Weak scaling - FP32 Weak scaling - mixed precision
1 4 9.92 38.16 3.84 1.00 1.00
4 4 35.52 122.08 3.43 3.58 3.20
8 4 71.36 241.28 3.38 7.19 6.32
16 4 141.40 462.08 3.27 14.25 12.11
1 10 N/A 47.40 N/A N/A 1.00
4 10 N/A 165.60 N/A N/A 3.49
8 10 N/A 325.60 N/A N/A 6.87
16 10 N/A 648.00 N/A N/A 13.67

To achieve these same results, follow the steps in the Quick Start Guide.

Inference performance results

Inference performance: NVIDIA DGX-1 (1x V100 16G)

Our results were obtained by running the scripts/run_pretraining_inference.sh script on data of sequence length 512 and the scripts/run_squad.sh script in the pytorch:19.07-py3 NGC container on NVIDIA DGX-1 with (1x V100 16G) GPUs.

Pre-training inference on NVIDIA DGX-1 with 16G
GPUs Throughput - FP32(sequences/sec) Throughput - Mixed Precision(sequences/sec)
1 28.32 94.36
Fine-tuning inference on NVIDIA DGX-1 with 16G
GPUs Throughput - FP32(sequences/sec) Throughput - Mixed Precision(sequences/sec)
1 37.64 119.76
Inference performance: NVIDIA DGX-1 (1x V100 32G)

Our results were obtained by running the scripts/run_pretraining_inference.sh and scripts/run_squad.sh scripts in the pytorch:19.07-py3 NGC container on NVIDIA DGX-1 with (1x V100 32G) GPUs.

Pre-training inference on NVIDIA DGX-1 with 32G
GPUs Throughput(sequences/sec) - FP32 Throughput - Mixed Precision(sequences/sec)
1 27.58 90.16
Fine-tuning inference on NVIDIA DGX-1 with 32G
GPUs Throughput(sequences/sec) - FP32 Throughput - Mixed Precision(sequences/sec)
1 37.64 119.76
Inference performance: NVIDIA DGX-2 (1x V100 32G)

Our results were obtained by running the scripts/run_pretraining_inference.sh and scripts/run_squad.sh scripts in the pytorch:19.07-py3 NGC container on NVIDIA DGX-2 with (1x V100 32G) GPUs.

Pre-training inference on NVIDIA DGX-2 with 32G
GPUs Throughput - FP32(sequences/sec) Throughput - Mixed Precision(sequences/sec)
1 30.24 97.72
Fine-tuning inference on NVIDIA DGX-2 with 32G
GPUs Throughput - FP32(sequences/sec) Throughput - Mixed Precision(sequences/sec)
1 35.76 112.60

To achieve these same results, follow the steps in the Quick Start Guide.

The inference performance metrics used were items/second.

Release notes

Changelog

September 2019

  • Scripts to support multi-node launch
  • Update pretraining loss results based on the latest data preparation scripts

August 2019

  • Pre-training support with LAMB optimizer
  • Updated Data download and Preprocessing

July 2019

  • Initial release

Known issues

There are no known issues with this model.