
Trace sentence embeddings methods from recursive and CNN-based supervised models to unsupervised approaches like skip-thoughts, and explore multitask transformer-based and universal sentence embeddings.
Explore bag of words sentence representations and backoff methods, comparing word embeddings like glove and fastText, WMD, SRF, and power means for sentence embeddings and similarity.
Explore unsupervised Doc2Vec methods for paragraph embeddings, including pv-dm and dbow, learning paragraph vectors with word vectors to predict next words within a paragraph.
Explore unsupervised sentence embedding with skip-thought and quick-thought models, using encoder-decoder and discriminative approaches to predict surrounding sentences and evaluate semantic relatedness tasks.
Explore recursive neural networks for tree-structured sentence embeddings and deep averaging networks for simple averaged word vectors, both trained with supervision for sentiment analysis, using dropout and softmax outputs.
InferSent trains sentence embeddings via supervised natural language inference to produce transferable representations across SentEval benchmarks and tasks.
Explore the deep semantic similarity model using cnn-based sentence embeddings and cosine similarity, with character 3-gram representations and convolutional layers for web search, translation, and qa.
Explore multitask learning with Google's USC (universal sentence embedding), combining a transformer-based encoder and a deep averaging network to produce transferable sentence representations for classification, similarity, and conversational tasks.
MTDNN applies multitask learning through a shared deep neural network that processes sentence pairs, builds token embeddings, and trains task-specific heads across nine GLUE tasks, achieving strong fine-tuned results.
Explore multi-task learning for MILA/MSR sentence embeddings with a recurrent encoder–decoder model. See competitive results using limited training data and semantically meaningful embeddings that separate subjective and objective classes.
Sentence-BERT develops semantically meaningful sentence representations for fast large-scale semantic similarity, clustering, and semantic search, outperforming simple mean or max pooling of word embeddings.
Provide an overview of sentence embedding methods, from distance based and word embeddings to unsupervised and supervised models, including recursive neural networks, deep average networks, and encoders.
Explore natural language generation with generative transformer models, moving from template-based rules to outputs based on structured data for translation, question answering, and summarization.
Explore UniLM, a unified UCLA model that blends bidirectional, left-to-right, and sequence-to-sequence language tasks via encoder-decoder style masking and transformer architectures for versatile NLP applications.
Explore Transformer-XL and XLNet architectures that extend context with segment-level recurrence and relative position encoding, and learn how XLNet uses permutation language modeling with content and query streams.
Explore the MASS model, an encoder-decoder framework for natural language generation that reconstructs masked sentence spans to train unsupervised machine translation.
Explore BART, a text model trained to reconstruct text from noise like span masking, token deletion, and sentence permutation, using a decoder for classification, translation, and summarization tasks.
Explore conditional natural language generation with control codes that steer style, domain, and content, including headlines, translations, and source attribution tasks.
T5 treats every NLP task as a sequence learning problem, using a unified encoder-decoder with simple position embeddings and span masking across GLUE and SuperGLUE.
Explore ProphetNet, a transformer-based natural language generation model that predicts multiple future engrams using end-stream self-contained mechanisms, shared parameters, span masking pretraining, and dual losses.
Trace the evolution from simple models to transformers that handle segment recurrence and relative position, compare two-stream models with shared weights, and discuss language modeling and in-context learning.
This course is a part of "Deep Learning for NLP" Series. In this course, I will introduce concepts like Sentence embeddings and Generative Transformer Models. These concepts form the base for good understanding of advanced deep learning models for modern Natural Language Generation.
The course consists of two main sections as follows.
In the first section, I will talk about sentence embeddings. We will start with basic bag of words methods where sentence embedddings are obtained using an aggregation over word embeddings of constituent words. We will talk about averaged bag of words, word mover's distance, SIF and Power means method. Then we will discuss two unsupervised methods: Doc2Vec and SkipThought. Further, we will discuss about supervised sentence embedding methods like recursive neural networks, deep averaging networks and InferSent. CNNs can also be used for computing semantic similarity between two text strings; we will talk about DSSMs for the same. We will also discuss 3 multi-task learning methods including Universal Sentence Encodings and MT-DNN. Lastly, I will talk about SentenceBERT.
In the second section, I will talk about multiple Generative Transformer Models. We will start with UniLM. Then we will talk about segment recurrence and relative position embeddings in Transformer-XL. Then get to XLNets which use Transformer-XL along with permutation language modeling. Next we will understand span masking in MASS and also discuss various noising methods on BART. We will then discuss about controlled natural language generation using CTRL. We will discuss how T5 models every learning task as a text-to-text task. Finally, we will discuss how ProphetNet extends 2-stream attention modeling from XLNet to n-stream attention modeling, thereby enabling n-gram predictions.