AI TrainingTensorFlow DemosMini Batches

TensorFlow Demos


Image Classification with ResNet50Text Extraction with BERTBidirectional LSTM

Text Extraction with BERT

To demonstrate the performance of the B67 algorithm vs. Adam, text extraction with the BERT neural-network model (over 100 million parameters) was trained on the SQuAD data set using both algorithms.

B67's loss value after a two epochs, was lower than that of Adam algorithm after 30 epochs (see below). And, despite the severe performance limitation incurred by TensorFlow's constraints on our basic demo implementation (see Performance Penalty) this result was achieved in nearly half the time it took for Adam to reach a minimum (9.49 hours vs. 17.33 hours). In a production environment this performance penalty does not exist and the time per epoch would be comparable to Adam.

Result Summary

Results are shown below. A plot of loss vs. time is omitted as it is not representative of performance (see Performance Penalty).

Convergence

Raw Data

Summary logs and screen output are available.

Demonstration Limitations

Performance Penalty

For this demonstration, B67 is implemented as a custom TensorFlow 'op.' TensorFlow does not supply B67's required inputs by default, and we are forced to explicitly recalculate the values that Tensorflow has already performed internally. This recalculation imposes a severe time penatly, and only allows B67 to perform a step once every two epochs. In addition, the custom op is currently implemented for CPU.

As stated above: in a production environment a B67 epoch would take roughly the same amount of time as an Adam (or any of the algorithms packaged in TensorFlow) epoch.

Test Setup

Single node network output and exclusion of pooling layer

As the network has two instances of an identical output, one to indicate the start of the answer text and the other to indicate the end, this demonstration is performed on one of the outputs (the starting index).

In addition, the pooling layer (BertPooler) is not added since its inclusion results in an 'unconnected gradients' error when used with our custom B67 TensorFlow op.

Randomness Minimized for Performance Comparison

The random seeds for Python, Python's numpy library, and TensorFlow are set to fixed values. In addition, shuffling of data sets is disabled.

Note that there still exist unavoidable variations in floating-point values due to non-deterministic ordering of parallel operations and aggregation of GPU calculations.

Loss function, batch size

  1. The loss function used is: .
  2. The batch size is 9 samples (largest possible with available memory).

Adam

Adam was run with default parameters.

Software

Hardware