Skip to content

Latest commit

 

History

History
110 lines (80 loc) · 11.6 KB

dialogue.md

File metadata and controls

110 lines (80 loc) · 11.6 KB

Dialogue

Dialogue is notoriously hard to evaluate. Past approaches have used human evaluation.

Dialogue act classification

Dialogue act classification is the task of classifying an utterance with respect to the function it serves in a dialogue, i.e. the act the speaker is performing. Dialogue acts are a type of speech acts (for Speech Act Theory, see Austin (1975) and Searle (1969)).

Switchboard corpus

The Switchboard-1 corpus is a telephone speech corpus, consisting of about 2,400 two-sided telephone conversation among 543 speakers with about 70 provided conversation topics. The dataset includes the audio files and the transcription files, as well as information about the speakers and the calls.

The Switchboard Dialogue Act Corpus (SwDA) [download] extends the Switchboard-1 corpus with tags from the SWBD-DAMSL tagset, which is an augmentation to the Discourse Annotation and Markup System of Labeling (DAMSL) tagset. The 220 tags were reduced to 42 tags by clustering in order to improve the language model on the Switchboard corpus. A subset of the Switchboard-1 corpus consisting of 1155 conversations was used. The resulting tags include dialogue acts like statement-non-opinion, acknowledge, statement-opinion, agree/accept, etc.
Annotated example:
Speaker: A, Dialogue Act: Yes-No-Question, Utterance: So do you go to college right now?

Model Accuracy Paper / Source Code
CRF-ASN (Chen et al., 2018) 81.3 Dialogue Act Recognition via CRF-Attentive Structured Network
Bi-LSTM-CRF (Kumar et al., 2017) 79.2 Dialogue Act Sequence Labeling using Hierarchical encoder with CRF Link
RNN with 3 utterances in context (Bothe et al., 2018) 77.34 A Context-based Approach for Dialogue Act Recognition using Simple Recurrent Neural Networks

ICSI Meeting Recorder Dialog Act (MRDA) corpus

The MRDA corpus [download] consists of about 75 hours of speech from 75 naturally-occurring meetings among 53 speakers. The tagset used for labeling is a modified version of the SWBD-DAMSL tagset. It is annotated with three types of information: marking of the dialogue act segment boundaries, marking of the dialogue acts and marking of correspondences between dialogue acts.
Annotated example:
Time: 2804-2810, Speaker: c6, Dialogue Act: s^bd, Transcript: i mean these are just discriminative.
Multiple dialogue acts are separated by "^".

Model Accuracy Paper / Source Code
CRF-ASN (Chen et al., 2018) 91.7 Dialogue Act Recognition via CRF-Attentive Structured Network
Bi-LSTM-CRF (Kumar et al., 2017) 90.9 Dialogue Act Sequence Labeling using Hierarchical encoder with CRF Link

Dialogue state tracking

Dialogue state tacking consists of determining at each turn of a dialogue the full representation of what the user wants at that point in the dialogue, which contains a goal constraint, a set of requested slots, and the user's dialogue act.

Second dialogue state tracking challenge

For goal-oriented dialogue, the dataset of the second Dialogue Systems Technology Challenges (DSTC2) is a common evaluation dataset. The DSTC2 focuses on the restaurant search domain. Models are evaluated based on accuracy on both individual and joint slot tracking.

Model Request Area Food Price Joint Paper / Source
Zhong et al. (2018) 97.5 - - - 74.5 Global-locally Self-attentive Dialogue State Tracker
Liu et al. (2018) - 90 84 92 72 Dialogue Learning with Human Teaching and Feedback in End-to-End Trainable Task-Oriented Dialogue Systems
Neural belief tracker (Mrkšić et al., 2017) 96.5 90 84 94 73.4 Neural Belief Tracker: Data-Driven Dialogue State Tracking
RNN (Henderson et al., 2014) 95.7 92 86 86 69 Robust dialog state tracking using delexicalised recurrent neural networks and unsupervised gate

Wizard-of-Oz

The WoZ 2.0 dataset is a newer dialogue state tracking dataset whose evaluation is detached from the noisy output of speech recognition systems. Similar to DSTC2, it covers the restaurant search domain and has identical evaluation.

Model Request Joint Paper / Source
Zhong et al. (2018) 97.1 88.1 Global-locally Self-attentive Dialogue State Tracker
Neural belief tracker (Mrkšić et al., 2017) 96.5 84.4 Neural Belief Tracker: Data-Driven Dialogue State Tracking
RNN (Henderson et al., 2014) 87.1 70.8 Robust dialog state tracking using delexicalised recurrent neural networks and unsupervised gate

MultiWOZ

The MultiWOZ dataset is a fully-labeled collection of human-human written conversations spanning over multiple domains and topics. At a size of 10k dialogues, it is at least one order of magnitude larger than all previous annotated task-oriented corpora. The dialogue are set between a tourist and a clerk in the information. It spans over 7 domains.

Model Joint Slot Paper / Source
Ramadan et al. (2018) 15.57 89.53 Large-Scale Multi-Domain Belief Tracking with Knowledge Sharing
Zhong et al. (2018) 35.57 95.44 Global-locally Self-attentive Dialogue State Tracker
Nouri and Hosseini-Asl (2019) 36.27 98.42 Toward Scalable Neural Dialogue State Tracking Model
Wu et al. (2019) 48.62 96.92 Transferable Multi-Domain State Generator for Task-OrientedDialogue System

Retrieval-based Chatbot

The main task retrieval-based chatbot is response selection, that aims to find correct responses from a pre-defined index.

Ubuntu Corpus

The Ubuntu Corpus contains almost 1 million multi-turn dialogues from the Ubuntu Chat Logs. The task of Ubuntu Corpus is to select the correct response from 10 candidates (others are negatively sampled) by considering previous conversation history. You can find more details at here. The Evaluation metric is recall at position K in N candidates (Recall_N@K).

Model R_2@1 R_10@1 Paper / Source
DAM (Zhou et al. 2018) 93.8 76.7 Multi-Turn Response Selection for Chatbots with Deep Attention Matching Network
SMN (Wu et al. 2017) 92.3 72.3 Sequential Matching Network: A New Architecture for Multi-turn Response Selection in Retrieval-Based Chatbots
Multi-View (Zhou et al. 2017) 90.8 66.2 Multi-view Response Selection for Human-Computer Conversation
Bi-LSTM (Kadlec et al. 2015) 89.5 63.0 Improved Deep Learning Baselines for Ubuntu Corpus Dialogs

Reddit Corpus

The Reddit Corpus contains 726 million multi-turn dialogues from the Reddit board. Reddit is an American social news aggregation website, where users can post links, and take partin discussions on these post. The task of Reddit Corpus is to select the correct response from 100 candidates (others are negatively sampled) by considering previous conversation history. Models are evaluated with the Recall 1 at 100 metric (the 1-of-100 ranking accuracy). You can find more details at here.

Model R_1@100 Paper / Source
PolyAI Encoder (Henderson et al. 2019) 61.3 A Repository of Conversational Dataset
USE (Cer et al. 2018) 47.7 Universal Sentence Encoder
BERT (Devlin et al. 2017) 24.0 BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
ELMO (Peters et al. 2018) 19.3 Deep contextualized word representations

Generative-based Chatbot

The main task of generative-based chatbot is to generate consistent and engaging response given the context.

Personalized Chit-chat

The task of persinalized chit-chat dialogue generation is first proposed by PersonaChat. The motivation is to enhance the engagingness and consistency of chit-chat bots via endowing explicit personas to agents. Here the persona is defined as several profile natural language sentences like "I weight 300 pounds.". NIPS 2018 has hold a competition The Conversational Intelligence Challenge 2 (ConvAI2) based on the dataset. The Evaluation metric is F1, Hits@1 and ppl. F1 evaluates on the word-level, and Hits@1 represents the probability of the real next utterance ranking the highest according to the model, while ppl is perplexity for language modeling. The following results are reported on dev set (test set is still hidden), almost of them are borrowed from ConvAI2 Leaderboard.

Model F1 Hits@1 ppl Paper / Source Code
TransferTransfo (Thomas et al. 2019) 19.09 82.1 17.51 TransferTransfo: A Transfer Learning Approach for Neural Network Based Conversational Agents Code
Lost In Conversation 17.79 - 17.3 NIPS 2018 Workshop Presentation Code
Seq2Seq + Attention (Dzmitry et al. 2014) 16.18 12.6 29.8 Neural Machine Translation by Jointly Learning to Align and Translate Code
KV Profile Memory (Zhang et al. 2018) 11.9 55.2 - Personalizing Dialogue Agents: I have a dog, do you have pets too? Code