SlideShare a Scribd company logo
xyang45@illinois.edu y.v.chen@ieee.org
End-to-End Joint Learning of
Natural Language Understanding
and Dialogue Manager
ICASSP 2017
March 9th
XUESONG YANG YUN-NUNG (VIVIAN) CHEN DILEK HAKKANI-TÜR
HLT-L2: Spoken Language Understanding I
PAUL CROOK
XIUJUN LI
JIANFENG GAO
LI DENG
What is a Dialogue System?
2
Apple Siri (2011)
Facebook M & Bot (2015) Google Home (2016)
Microsoft Cortana (2014) Amazon Alexa/Echo (2014)
Category:
• Chit Chat
• Task-Oriented
[1 ] Zue, Victor W., and James R. Glass. “Conversational interfaces: Advances and challenges.” Proceedings of the IEEE 88.8 (2000): 1166-1180.
A dialogue system is a computer agent that interacts with human via natural languages.
Pipelined Task-Oriented Dialogue System
Automatic Speech
Recognition
Natural Language Understanding (NLU)
• User Intent Detection
• Slot Filling
Dialogue Management (DM)
• Dialogue State Tracking (DST)
• Dialogue Policy Decision
Natural Language
Generation (NLG)
Hypothesis
Any action movies recommended
this weekend?
Semantic Frame
request_movie
(genre=action, date=this weekend)
System Action/Policy
request_location
Text response
Which theater do you prefer?
Text Input
Any action movies recommended this weekend?
Speech Signal
Motivation: The pipelined system (NLU  DM) results in error propagation issues.
3
Text-To-Speech
Proposed Approach
 End-to-end model
 Mitigate the effects of noisy output from NLU
 Refine NLU by supervised signals from DM
 Multi-task jointly learning
 NLU - User intent classification
 NLU - User slot tagging
 DM - System action prediction
 Contextual understanding
 Access to the user history
 Monitor user behavior states over turns
4
Human-Human Dialogue Interaction
Hi, how may I help you?
Do you want to have a backpack type of hotel?
So you don’t mind if it is not roomy, right?
Okay. These hotels are available for you: …
Thanks, goodbye.
Are there any cheap rate hotels to put my bags?
Yes. Just gonna leave our things there and stay out the
whole day.
Yes.
Ok, thank you, bye!
Idea: predicting the next system action given the current user
utterance together with the aggregated observations
Guide
Agent
Tourist
User
5
Natural Language Understanding (NLU)
6
Utterance: BOS % um how much is a taxi cab there ? EOS
Slot Tags: O O O B-det_PRICE I-det_PRICE O O B-trsp_TYPE I-trsp_TYPE B-area_CITY O O
User Intents: QST_HOW_MUCH; QST_INFO
System Actions: RES_EXPLAIN; RES_INFO; FOL_EXPLAIN; FOL_HOW_MUCH; FOL_INFO
Task 1: Slot Tagging Task 2: Multi-Label User Intent Prediction
Sharedweights
Task 1+2: Natural Language Understanding
NLU+DM 1: Pipelined BLSTMs
7
single user turn current user turn w/ contextual history
Utterance: BOS % um how much is a taxi cab there ? EOS
Slot Tags: O O O B-det_PRICE I-det_PRICE O O B-trsp_TYPE I-trsp_TYPE B-area_CITY O O
User Intents: QST_HOW_MUCH; QST_INFO
System Actions: RES_EXPLAIN; RES_INFO; FOL_EXPLAIN; FOL_HOW_MUCH; FOL_INFO
Task 3: Multi-Label System Action Prediction
NLU+DM 2: End-to-End Model (JointModel)
8
Utterance: BOS % um how much is a taxi cab there ? EOS
Slot Tags: O O O B-det_PRICE I-det_PRICE O O B-trsp_TYPE I-trsp_TYPE B-area_CITY O O
User Intents: QST_HOW_MUCH; QST_INFO
System Actions: RES_EXPLAIN; RES_INFO; FOL_EXPLAIN; FOL_HOW_MUCH; FOL_INFO
Task 1+2+3: End-to-End Joint NLU+DM
supervised learning with three tasks
DM output signal refines NLU
for better robustness
DM
Data
 Dialogue State Tracking Challenge 4
 Human-human dialogues: 21-hour dialogue sessions on touristic
information collected via Skype between tour guides and tourists
User Intent = Speech Act + Attributes
System Action = Speech Act + Attributes
Domains
Accommodation
Attraction
Food
Shopping
Transportation
Speech Act
QST (QUESTION)
RES (RESPONSE)
INI (INITIATIVE)
FOL (FOLLOW)
Speech Act Attributes
ACK CLOSING COMMIT THANK
CANCEL CONFIRM ENOUGH WHAT
EXPLAIN HOW_MUCH HOW_TO WHEN
INFO NEGATIVE OPENING WHERE
POSITIVE PERFERENCE RECOMMEND WHO
Train Dev Test
#utter 5,648 1,939 3,178
#intent 68 54 58
9
DM Result – System Action Prediction (SAP)
10
 Metric: frame-level accuracy (FrmAcc)
Model FrmAcc
Baseline (CRF+SVMs) 7.7
Pipeline-BLSTM 12.0
JointModel 22.8
Pipeline-BLSTM and JointModel outperform the baseline
JointModel improves Pipeline-BLSTM about 10% accuracy, indicating the importance of
mitigating downside of pipeline
Human-human conversations are complicated, so predicting system actions for DM is difficult
DM Result – System Action Prediction (SAP)
11
 Metric: frame-level accuracy (FrmAcc)
Model FrmAcc
Baseline (CRF+SVMs) 7.7
Pipeline-BLSTM 12.0
JointModel 22.8
Oracle-SAP (SVM) 7.7
Oracel-SAP (BLSTM) 19.7
Oracle models show the upper-bound of the SAP performance,
since it transfers the errors from NLU to SAP
Contextual user turns make significant contribution to DM performance
JointModel achieves the best DM performance (FrmAcc) with richer latent representations
Fully correct
NLU output
NLU Result – Slot Filling & Intent Prediction
12
 Metrics: frame-level accuracy (FrmAcc)
Models Slot Intent NLU
NLU-Baseline (CRF+SVM) 77.3 37.2 33.1
NLU-Pipeline-BLSTM 76.8 40.0 36.4
NLU-JointModel 76.5 42.2 37.4
CRF+SVMs baseline maintains strong NLU performance with 33.1%
Pipeline-BLSTM and JointModel outperformed the baseline
DM signal (system action prediction) helps more on user intent prediction
than slot filling, and NLU is significantly improved
Extra supervised DM signal helps refine the NLU by back-propagating the associated errors
Conclusion
13
 First propose an end-to-end deep hierarchical model for joint
NLU and DM with limited contextual dialogue memory
 Leverage multi-task learning using three supervised signals
 NLU: User intent classification
 NLU: Slot tagging
 DM: System action prediction
 Outperform the state-of-the-art pipelined NLU and DM models
 Better DM due to the contextual dialogue memory
 Robust NLU fine-tuned by supervised signal from DM
Code Available at
https://github.com/XuesongYang/end2end_dialog
Thanks for Your Attention! 14
Appendix - Baseline Model
NLU: CRF for slot tagging, and
One-Vs-All SVMs for intent classification
SAP: One-Vs-All SVMs
[1] Raymond, Christian, and Giuseppe Riccardi. “Generative and discriminative algorithms for spoken language
understanding." In INTERSPEECH, pp. 1605-1608. 2007.
Predicting system actions at the next
turn as responses to the current user
behaviors by pipelining NLU and SAP
together
15
Appendix: Configuration
 Optimizer: a mini-batch stochastic gradient descent method
Adam
 Contextual history: five user turns
 Dimension of word embedding: 512
 Dropout ratio: 0.5
 No early stopping, but use 300 training epochs
 Best models for three tasks are selected individually under
different metrics
 Token-level micro-average F1 score is used for slot filling
 frame-level accuracy (it counts only when the whole frame parse is
correct) is used for both user intent prediction and system action
prediction
 the decision thresholds are tuned on dev set
16

More Related Content

PPTX
Matrix Factorization with Knowledge Graph Propagation for Unsupervised Spoken...
PDF
Deep Learning for Dialogue Systems
PPTX
Language Empowering Intelligent Assistants (CHT)
PPTX
End-to-End Memory Networks with Knowledge Carryover for Multi-Turn Spoken Lan...
PDF
Chatbot的智慧與靈魂
PPTX
Towards End-to-End Reinforcement Learning of Dialogue Agents for Information ...
PPTX
End-to-End Task-Completion Neural Dialogue Systems
PPTX
Deep Learning for Dialogue Modeling - NTHU
Matrix Factorization with Knowledge Graph Propagation for Unsupervised Spoken...
Deep Learning for Dialogue Systems
Language Empowering Intelligent Assistants (CHT)
End-to-End Memory Networks with Knowledge Carryover for Multi-Turn Spoken Lan...
Chatbot的智慧與靈魂
Towards End-to-End Reinforcement Learning of Dialogue Agents for Information ...
End-to-End Task-Completion Neural Dialogue Systems
Deep Learning for Dialogue Modeling - NTHU

What's hot (17)

PPTX
Unsupervised Learning and Modeling of Knowledge and Intent for Spoken Dialogu...
PPTX
Leveraging Behavioral Patterns of Mobile Applications for Personalized Spoken...
PPTX
"Sorry, I didn't get that!" - Statistical Learning from Dialogues for Intelli...
PPTX
Detecting Actionable Items in Meetings by Convolutional Deep Structured Seman...
PPTX
Statistical Learning from Dialogues for Intelligent Assistants
PPTX
An Intelligent Assistant for High-Level Task Understanding
PPTX
How the Context Matters Language and Interaction in Dialogues
PDF
One Day for Bot 一天搞懂聊天機器人
PPTX
Unsupervised Learning and Modeling of Knowledge and Intent for Spoken Dialogu...
PDF
2017 Tutorial - Deep Learning for Dialogue Systems
PPTX
Deep Dialog System Review
PDF
Multiskill Conversational AI
PPT
Dialogue systems and personal assistants
PDF
God Mode for designing scenario-driven skills for DeepPavlov Dream
PDF
Managing Dialog Strategy in Multiskill AI Assistant with Discourse Management
PDF
Managing Dialog Strategy In Multiskill AI Assistant.pdf
PDF
Blenderbot
Unsupervised Learning and Modeling of Knowledge and Intent for Spoken Dialogu...
Leveraging Behavioral Patterns of Mobile Applications for Personalized Spoken...
"Sorry, I didn't get that!" - Statistical Learning from Dialogues for Intelli...
Detecting Actionable Items in Meetings by Convolutional Deep Structured Seman...
Statistical Learning from Dialogues for Intelligent Assistants
An Intelligent Assistant for High-Level Task Understanding
How the Context Matters Language and Interaction in Dialogues
One Day for Bot 一天搞懂聊天機器人
Unsupervised Learning and Modeling of Knowledge and Intent for Spoken Dialogu...
2017 Tutorial - Deep Learning for Dialogue Systems
Deep Dialog System Review
Multiskill Conversational AI
Dialogue systems and personal assistants
God Mode for designing scenario-driven skills for DeepPavlov Dream
Managing Dialog Strategy in Multiskill AI Assistant with Discourse Management
Managing Dialog Strategy In Multiskill AI Assistant.pdf
Blenderbot
Ad

Viewers also liked (16)

PDF
Colonial economy (2)
PDF
WIP Egyptica
DOCX
Ganglios basales
DOCX
Acoplamiento magnético
PDF
Presentación
PDF
Encontro: Práticas no Ensino Profissional na área das TI,
PPTX
2 nd export & import
PPTX
Biology of nerve injury and repair
PPTX
Automatic Key Term Extraction and Summarization from Spoken Course Lectures
PPTX
Automatic Key Term Extraction from Spoken Course Lectures
DOCX
Circuitos trifasicos
PDF
Project solar
PPTX
VIPRE Operations Brief - 2017
PPTX
3Com 3C9I-PCI-25
PPT
Practica innovatic
DOCX
strategic and change management organization
Colonial economy (2)
WIP Egyptica
Ganglios basales
Acoplamiento magnético
Presentación
Encontro: Práticas no Ensino Profissional na área das TI,
2 nd export & import
Biology of nerve injury and repair
Automatic Key Term Extraction and Summarization from Spoken Course Lectures
Automatic Key Term Extraction from Spoken Course Lectures
Circuitos trifasicos
Project solar
VIPRE Operations Brief - 2017
3Com 3C9I-PCI-25
Practica innovatic
strategic and change management organization
Ad

Similar to End-to-End Joint Learning of Natural Language Understanding and Dialogue Manager (20)

PPTX
Feature Extraction and Analysis of Natural Language Processing for Deep Learn...
PDF
Deep convolutional neural networks-based features for Indonesian large vocabu...
PDF
End-to-end Speech Recognition with Recurrent Neural Networks (D3L6 Deep Learn...
PDF
Li Deng at AI Frontiers: Three Generations of Spoken Dialogue Systems (Bots)
PPTX
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
PDF
Sign Language Recognition System ppt2.pdf
PPTX
Natural Language Processing - Research and Application Trends
PDF
Priyank cv
PDF
Priyank cv
PDF
HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014
PDF
BIDIRECTIONAL LONG SHORT-TERM MEMORY (BILSTM)WITH CONDITIONAL RANDOM FIELDS (...
PDF
BIDIRECTIONAL LONG SHORT-TERM MEMORY (BILSTM)WITH CONDITIONAL RANDOM FIELDS (...
PPTX
[SDP-2024] Group-H18 End-Term Evaluation PPT.pptx
PPTX
A technical paper presentation on Evaluation of Deep Learning techniques in S...
PDF
E0502 01 2327
DOCX
70 C o m m u n i C at i o n s o f t h E a C m j u.docx
PDF
A survey on Enhancements in Speech Recognition
PPTX
Speech enhanced gesture based navigation for Google Maps
PPTX
Long Short Term Memory (Neural Networks)
PPT
90seconds Presentation
Feature Extraction and Analysis of Natural Language Processing for Deep Learn...
Deep convolutional neural networks-based features for Indonesian large vocabu...
End-to-end Speech Recognition with Recurrent Neural Networks (D3L6 Deep Learn...
Li Deng at AI Frontiers: Three Generations of Spoken Dialogue Systems (Bots)
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
Sign Language Recognition System ppt2.pdf
Natural Language Processing - Research and Application Trends
Priyank cv
Priyank cv
HCI BASED APPLICATION FOR PLAYING COMPUTER GAMES | J4RV4I1014
BIDIRECTIONAL LONG SHORT-TERM MEMORY (BILSTM)WITH CONDITIONAL RANDOM FIELDS (...
BIDIRECTIONAL LONG SHORT-TERM MEMORY (BILSTM)WITH CONDITIONAL RANDOM FIELDS (...
[SDP-2024] Group-H18 End-Term Evaluation PPT.pptx
A technical paper presentation on Evaluation of Deep Learning techniques in S...
E0502 01 2327
70 C o m m u n i C at i o n s o f t h E a C m j u.docx
A survey on Enhancements in Speech Recognition
Speech enhanced gesture based navigation for Google Maps
Long Short Term Memory (Neural Networks)
90seconds Presentation

Recently uploaded (20)

PDF
Electronic commerce courselecture one. Pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
KodekX | Application Modernization Development
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Cloud computing and distributed systems.
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
Electronic commerce courselecture one. Pdf
Per capita expenditure prediction using model stacking based on satellite ima...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
KodekX | Application Modernization Development
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Cloud computing and distributed systems.
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Encapsulation_ Review paper, used for researhc scholars
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Empathic Computing: Creating Shared Understanding
Understanding_Digital_Forensics_Presentation.pptx
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Dropbox Q2 2025 Financial Results & Investor Presentation
Programs and apps: productivity, graphics, security and other tools
Agricultural_Statistics_at_a_Glance_2022_0.pdf
MIND Revenue Release Quarter 2 2025 Press Release
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
Spectral efficient network and resource selection model in 5G networks

End-to-End Joint Learning of Natural Language Understanding and Dialogue Manager

  • 1. xyang45@illinois.edu y.v.chen@ieee.org End-to-End Joint Learning of Natural Language Understanding and Dialogue Manager ICASSP 2017 March 9th XUESONG YANG YUN-NUNG (VIVIAN) CHEN DILEK HAKKANI-TÜR HLT-L2: Spoken Language Understanding I PAUL CROOK XIUJUN LI JIANFENG GAO LI DENG
  • 2. What is a Dialogue System? 2 Apple Siri (2011) Facebook M & Bot (2015) Google Home (2016) Microsoft Cortana (2014) Amazon Alexa/Echo (2014) Category: • Chit Chat • Task-Oriented [1 ] Zue, Victor W., and James R. Glass. “Conversational interfaces: Advances and challenges.” Proceedings of the IEEE 88.8 (2000): 1166-1180. A dialogue system is a computer agent that interacts with human via natural languages.
  • 3. Pipelined Task-Oriented Dialogue System Automatic Speech Recognition Natural Language Understanding (NLU) • User Intent Detection • Slot Filling Dialogue Management (DM) • Dialogue State Tracking (DST) • Dialogue Policy Decision Natural Language Generation (NLG) Hypothesis Any action movies recommended this weekend? Semantic Frame request_movie (genre=action, date=this weekend) System Action/Policy request_location Text response Which theater do you prefer? Text Input Any action movies recommended this weekend? Speech Signal Motivation: The pipelined system (NLU  DM) results in error propagation issues. 3 Text-To-Speech
  • 4. Proposed Approach  End-to-end model  Mitigate the effects of noisy output from NLU  Refine NLU by supervised signals from DM  Multi-task jointly learning  NLU - User intent classification  NLU - User slot tagging  DM - System action prediction  Contextual understanding  Access to the user history  Monitor user behavior states over turns 4
  • 5. Human-Human Dialogue Interaction Hi, how may I help you? Do you want to have a backpack type of hotel? So you don’t mind if it is not roomy, right? Okay. These hotels are available for you: … Thanks, goodbye. Are there any cheap rate hotels to put my bags? Yes. Just gonna leave our things there and stay out the whole day. Yes. Ok, thank you, bye! Idea: predicting the next system action given the current user utterance together with the aggregated observations Guide Agent Tourist User 5
  • 6. Natural Language Understanding (NLU) 6 Utterance: BOS % um how much is a taxi cab there ? EOS Slot Tags: O O O B-det_PRICE I-det_PRICE O O B-trsp_TYPE I-trsp_TYPE B-area_CITY O O User Intents: QST_HOW_MUCH; QST_INFO System Actions: RES_EXPLAIN; RES_INFO; FOL_EXPLAIN; FOL_HOW_MUCH; FOL_INFO Task 1: Slot Tagging Task 2: Multi-Label User Intent Prediction Sharedweights
  • 7. Task 1+2: Natural Language Understanding NLU+DM 1: Pipelined BLSTMs 7 single user turn current user turn w/ contextual history Utterance: BOS % um how much is a taxi cab there ? EOS Slot Tags: O O O B-det_PRICE I-det_PRICE O O B-trsp_TYPE I-trsp_TYPE B-area_CITY O O User Intents: QST_HOW_MUCH; QST_INFO System Actions: RES_EXPLAIN; RES_INFO; FOL_EXPLAIN; FOL_HOW_MUCH; FOL_INFO Task 3: Multi-Label System Action Prediction
  • 8. NLU+DM 2: End-to-End Model (JointModel) 8 Utterance: BOS % um how much is a taxi cab there ? EOS Slot Tags: O O O B-det_PRICE I-det_PRICE O O B-trsp_TYPE I-trsp_TYPE B-area_CITY O O User Intents: QST_HOW_MUCH; QST_INFO System Actions: RES_EXPLAIN; RES_INFO; FOL_EXPLAIN; FOL_HOW_MUCH; FOL_INFO Task 1+2+3: End-to-End Joint NLU+DM supervised learning with three tasks DM output signal refines NLU for better robustness DM
  • 9. Data  Dialogue State Tracking Challenge 4  Human-human dialogues: 21-hour dialogue sessions on touristic information collected via Skype between tour guides and tourists User Intent = Speech Act + Attributes System Action = Speech Act + Attributes Domains Accommodation Attraction Food Shopping Transportation Speech Act QST (QUESTION) RES (RESPONSE) INI (INITIATIVE) FOL (FOLLOW) Speech Act Attributes ACK CLOSING COMMIT THANK CANCEL CONFIRM ENOUGH WHAT EXPLAIN HOW_MUCH HOW_TO WHEN INFO NEGATIVE OPENING WHERE POSITIVE PERFERENCE RECOMMEND WHO Train Dev Test #utter 5,648 1,939 3,178 #intent 68 54 58 9
  • 10. DM Result – System Action Prediction (SAP) 10  Metric: frame-level accuracy (FrmAcc) Model FrmAcc Baseline (CRF+SVMs) 7.7 Pipeline-BLSTM 12.0 JointModel 22.8 Pipeline-BLSTM and JointModel outperform the baseline JointModel improves Pipeline-BLSTM about 10% accuracy, indicating the importance of mitigating downside of pipeline Human-human conversations are complicated, so predicting system actions for DM is difficult
  • 11. DM Result – System Action Prediction (SAP) 11  Metric: frame-level accuracy (FrmAcc) Model FrmAcc Baseline (CRF+SVMs) 7.7 Pipeline-BLSTM 12.0 JointModel 22.8 Oracle-SAP (SVM) 7.7 Oracel-SAP (BLSTM) 19.7 Oracle models show the upper-bound of the SAP performance, since it transfers the errors from NLU to SAP Contextual user turns make significant contribution to DM performance JointModel achieves the best DM performance (FrmAcc) with richer latent representations Fully correct NLU output
  • 12. NLU Result – Slot Filling & Intent Prediction 12  Metrics: frame-level accuracy (FrmAcc) Models Slot Intent NLU NLU-Baseline (CRF+SVM) 77.3 37.2 33.1 NLU-Pipeline-BLSTM 76.8 40.0 36.4 NLU-JointModel 76.5 42.2 37.4 CRF+SVMs baseline maintains strong NLU performance with 33.1% Pipeline-BLSTM and JointModel outperformed the baseline DM signal (system action prediction) helps more on user intent prediction than slot filling, and NLU is significantly improved Extra supervised DM signal helps refine the NLU by back-propagating the associated errors
  • 13. Conclusion 13  First propose an end-to-end deep hierarchical model for joint NLU and DM with limited contextual dialogue memory  Leverage multi-task learning using three supervised signals  NLU: User intent classification  NLU: Slot tagging  DM: System action prediction  Outperform the state-of-the-art pipelined NLU and DM models  Better DM due to the contextual dialogue memory  Robust NLU fine-tuned by supervised signal from DM
  • 15. Appendix - Baseline Model NLU: CRF for slot tagging, and One-Vs-All SVMs for intent classification SAP: One-Vs-All SVMs [1] Raymond, Christian, and Giuseppe Riccardi. “Generative and discriminative algorithms for spoken language understanding." In INTERSPEECH, pp. 1605-1608. 2007. Predicting system actions at the next turn as responses to the current user behaviors by pipelining NLU and SAP together 15
  • 16. Appendix: Configuration  Optimizer: a mini-batch stochastic gradient descent method Adam  Contextual history: five user turns  Dimension of word embedding: 512  Dropout ratio: 0.5  No early stopping, but use 300 training epochs  Best models for three tasks are selected individually under different metrics  Token-level micro-average F1 score is used for slot filling  frame-level accuracy (it counts only when the whole frame parse is correct) is used for both user intent prediction and system action prediction  the decision thresholds are tuned on dev set 16