ERNIE 2.0: Continual multi-task pre-training for language understanding

What Baidu's 2019 framework changed, how its seven objectives work, and what its results establish
ERNIE 2.0: Continual multi-task pre-training for language understanding cover

ERNIE 2.0 extends masked-language-model pre-training with seven lexical, structural, and semantic objectives learned continually through a shared Transformer. This guide explains the training schedule, task embeddings, 2019 English and Chinese evaluations, and the limits of the reported comparison with BERT and XLNet.

View comments.

more ...

Language models: From n-gram counts to neural next-token prediction

Probability, smoothing, cross-entropy, perplexity, and the assumptions behind the numbers
Language models: From n-gram counts to neural next-token prediction cover

A language model assigns probabilities to token sequences by predicting each token from its context. This guide derives the chain rule, explains n-gram estimation and smoothing, connects cross-entropy to perplexity, and shows what changes when a neural Transformer replaces the count table.

View comments.

more ...

The Transformer – Attention is all you need.

The Transformer – Attention is all you need. cover

Transformer - more than meets the eye! Are we there yet? Well... not really, but...
How about eliminating recurrence and convolution from transduction? Sequence modeling and transduction (e.g. language modeling, machine translation) problems solutions has been dominated by RNN (especially gated RNN) or LSTM, additionally employing the attention mechanism. Main sequence transduction models are based on RNN or CNN including encoder and decoder. The new transformer architecture is claimed however, to be more parallelizable and requiring significantly less time to train, solely focusing on attention mechanisms.

View comments.

more ...