End-to-End Memory Networks with Knowledge Carryover for Multi-Turn Spoken Language Understanding

Size: px
Start display at page:

Download "End-to-End Memory Networks with Knowledge Carryover for Multi-Turn Spoken Language Understanding"

Transcription

1 End-to-End Memory Networks wit Knowledge Carryover for Multi-Turn Spoken Language Understanding Yun-Nung Cen, Dilek Hakkani-Tür, Gokan Tur, Jianfeng Gao, and Li Deng National Taiwan University, Taipei, Taiwan Microsoft Researc, Redmond, A, USA {y.v.cen, dilek, {jfgao, Abstract Spoken language understanding (SLU) is a core component of a spoken dialogue system. In te traditional arcitecture of dialogue systems, te SLU component treats eac utterance independent of eac oter, and ten te following components aggregate te multi-turn information in te separate pases. However, tere are two callenges: 1) errors from previous turns may be propagated and ten degrade te performance of te current turn; 2) knowledge mentioned in te long istory may not be carried into te current turn. Tis paper addresses te above issues by proposing an arcitecture using end-to-end memory networks to model knowledge carryover in multi-turn conversations, were utterances encoded wit intents and slots can be stored as embeddings in te memory and te decoding pase applies an attention model to leverage previously stored semantics for intent prediction and slot tagging simultaneously. Te experiments on Microsoft Cortana conversational data sow tat te proposed memory network arcitecture can effectively extract salient semantics for modeling knowledge carryover in te multi-turn conversations and outperform te results using te state-of-te-art recurrent neural network framework (RNN) designed for single-turn SLU. Index Terms: spoken language understanding, end-to-end, memory network, embedding 1. Introduction In te past decades, goal-oriented spoken dialogue systems (SDS) are being incorporated in various devices and allow users to speak to systems in order to finis tasks more efficiently, for example, te virtual personal assistants Microsoft s Cortana and Apple s Siri. A key component of te understanding system is an spoken language understanding (SLU) module-it parses user utterances into semantic frames tat capture te core meaning, were tree main tasks of SLU are domain classification, intent determination, and slot filling [1]. A typical pipeline of SLU is to first decide te domain given te input utterance, and based on te domain, to predict te intent and to fill associated slots corresponding to a domain-specific semantic template. Te upper block of Figure 1 sows a communication-related user utterance, just send to bob about fising tis weekend and its semantic frame, send (contact name= bob, subject= fising tis weekend ) [2]. Traditionally, domain detection and intent prediction are framed as classification problems, were several classifiers suc as support vector macines and maximum entropy are employed [3, 4, 5]. Ten slot filling is framed as a sequence tagging task, were te IOB (in-outbegin) format is applied for representing slot tags as illustrated in Figure 1, and idden Markov models (HMM) or conditional D I U S communication send_ just sent to bob about fising tis weekend O O O O O B-contact_name B-subject I-subject I-subject send_ (contact_name= bob, subject= fising tis weekend ) U 1 S 1 send to bob B-contact_name send_ (contact_name= bob ) are we going to fis tis weekend U 2 S B-message I-message I-message I-message 2 I-message I-message I-message send_ (message= are we going to fis tis weekend ) Figure 1: Example utterances (U) annotated wit its domain (D) and intent (I) and semantic slots in te IOB format (S). Te upper block sows an example for a single-turn utterance, and te lower block sows similar utterances in te multi-turn scenario. random fields (CRF) ave been employed for tagging [6, 7, 8]. it te advances on deep learning, deep belief networks (DBNs) wit deep neural networks (DNNs) ave been applied to for domain and intent classification [9, 10, 11]. Recently, Ravuri et al. proposed an RNN arcitecture for intent determination [12]. For slot filling, deep learning as been viewed as a feature generator and te neural arcitecture can be merged wit CRFs [13]. Yao et al. and Mesnil et al. later employed RNNs for sequence labeling in order to perform slot filling [14, 15]. Recently, Hakkani-Tür proposed RNN-based joint semantic parsing for predicting intents and filling slots in te mean time [16]. However, above work focuses on SLU for single-turn interactions, were eac utterance is treated independently. Te contextual information as been sown useful for SLU modeling [17, 18, 19, 20]. For example, te lower block of Figure 1 sows two utterances, were te latter containing te message content in te , so it is more likely to estimate te semantic slot message wit te same intent send if te contextual knowledge is kept. Bargava et al. incorporated te information from previous intra-session utterances into te SLU tasks on a given utterance by applying SVM-HMMs to sequence tagging and obtained te improvement [17]. Also, contextual information as been incorporated into te recurrent neural network (RNN) for improved domain classification, in-

2 Contextual Sentence Encoder istory utterances {x i } RNN mem x 1 x 2 x i p i m i Knowledge Attention Distribution Memory Representation Sentence Inner Encoder Product RNN in x 1 x 2 x i c current utterance u eigted Sum Knowledge Encoding Representation Figure 2: Te illustration of te proposed end-to-end memory network model for multi-turn SLU. kg slot tagging sequence o y RNN Tagger tent prediction, and slot filling [18, 21]. However, most prior work exploited information only from te previous turn, ignoring te long-term contexts. Anoter constraint is tat te models require supervision at eac layer of te network, and tere is also no unified arcitecture tat can perform multi-turn SLU in an end-to-end framework. Recently tere as been a resurgence in computational models using explicit storage and a notion of attention [22, 23, 24, 25]; manipulating suc a storage allows multiple computational steps and can model long-term dependencies in sequential utterances. Basically, te storage is endowed wit a continuous representation modeled by neural networks, were te stored representations can be read and written to encode knowledge. Motivated by te idea, tis paper presents a recurrent neural network (RNN) arcitecture were te recurrence reads from a possibly large external memory before tagging te current utterance. Te model training does not require paired data for eac layer of te network; tat is, te proposed model can be trained end-to-end directly from input-output pairs. To te best of our knowledge, tis is te first attempt of employing an end-to-end neural network model to model long-term knowledge carryover for multi-turn SLU. 2. End-to-End Memory Networks For te SLU task, our model takes a discrete set of istory utterances {x i} tat are stored in te memory, a current utterance c = w 1,..., w T, and outputs corresponding semantic tags y = y 1,..., y T, were a semantic tag consists intent and slot information. Te proposed model is illustrated in Figure 2 and detailed below Arcitecture Te model embeds all utterances into a continuous space and stores all x s embedding to te memory. Te representation of te current utterance is ten compared wit memory representations to encode carried knowledge via an attention mecanism. Ten te encoded knowledge is taken togeter wit te word sequence for estimating te semantic tags. Four main procedures are described below. Memory Representation: To store te knowledge in te previous turns, we convert eac utterance from previous turns, x i, into a memory vectors m i wit dimension d by embedding te utterances in a continuous space troug an RNN. Te current utterance c is also embedded to a vector u wit te same dimension. m i = RNN mem(x i), (1) u = RNN in(c), (2) were RNN mem and RNN in are tied togeter for encoding contexts and te current utterance consistently. Terefore, te sequential information can be kept for better representations [16]. Knowledge Attention Distribution: In te embedding space, we compute te matc between te current utterance u and eac memory vector m i by taking te inner product followed by a softmax. p i = softmax(u T m i), (3) were softmax(z i) = e z i / j ez j and p i can be viewed as attention distribution for modeling knowledge carryover in order to understand te current utterance. Knowledge Encoding Representation: In order to encode te knowledge from istory, a istory vector is a sum over te memory embeddings weigted by te attention distribution. = i p im i. (4) Because te function from input to output is smoot, we can easily compute gradients and back propagate troug it. Ten te sum of te memory vector and te current input embedding u are ten passed troug a weigt matrix kg to generate an output knowledge encoding vector o, o = kg( + u), (5) were kg is a fully-connected neural network for encoding carried knowledge. Sequence Tagging: Different from te classification task most of work focused on [25], our memory arcitecture is to provide additional knowledge for improving tagging performance. Terefore, to estimate te tag sequence y corresponding to an input word sequence c, we use an RNN module for training a slot tagger, were te encoded knowledge o is fed into te input of te model in order to model knowledge carryover: y = RNN(o, c). (6)

3 y t-1 y t y t+1 V V V t-1 t t+1 M U M U M U o w t-1 w t w t+1 Figure 3: Te RNN model arcitecture for tagging. Te dotted red lines sow te encoded knowledge from istory in te multiturn interactions Recurrent Neural Network (RNN) Tagger Te goal of te SLU model is to assign a semantic tag for eac word in te current utterance. Tat is, given c = w 1,..., w n, te model is to predict y = y 1,..., y n were eac tag y i is aligned wit te word w i. e use te Elman RNN arcitecture, consisting of an input layer, a idden layer, and an output layer [26]. Te input, idden and output layers consist of a set of neurons representing te input, idden and output at eac time step t (w t, t, and y t) respectively. Te solid black part in te Figure 3 illustrates te arcitecture of te vanilla RNN model. t = φ( w t + U t 1), (7) ŷ t = softmax(v t), (8) were φ is a smoot bounded function suc as tan, and ŷ t is te probability distribution over of semantic tags given te current idden state t. Te sequence probability can be formulated as p(y c) = p(y w 1,..., w T ) = i p(y i w 1,..., w i). (9) Te model can be trained using backpropagation to maximize te conditional likeliood of te training set labels. To overcome te frequent gradient vanising issue wen modeling long-term dependencies, gated RNN was designed to use a more sopisticated activation function tan a usual activation function, consisting of affine transformation followed by a simple element-wise nonlinearity by using gating units [27], suc as long sort-term memory (LSTM) and gated recurrent unit (GRU) [28, 29]. RNNs employing eiter of tese recurrent units ave been sown to perform well in tasks tat require capturing long-term dependencies [15, 30, 31, 32]. In tis paper, we use RNN wit GRUs to allow eac recurrent unit to adaptively capture dependencies of different time scales Gated Recurrent Units (GRU) A GRU as two gates, a reset gate r, and an update gate z [29, 27]. Te reset gate determines te combination between te new input and te previous memory, and te update gate decides ow muc te unit updates its activation, or content. r = σ( r w t + U r t 1), (10) z = σ( z w t + U z t 1), (11) were σ is a logistic sigmoid function. Ten te final activation of te GRU at time t, t, is a linear interpolation between te previous activation t 1 and te candidate activation t: t = (1 z) t + z t 1, (12) t = φ( w t + U ( t 1 r))), (13) z r IN OUT Figure 4: Te illustration of a GRU cell as depicted in [27]. were is an element-wise multiplication. en te reset gate off, it effectively makes te unit act as if it is reading te first symbol of an input sequence, allowing it to forget te previously computed state. Figure 4 sows te gating mecanism of a GRU cell. RNN-GRU can yield comparable performance as RNN-LSTM wit need of fewer parameters and less data for generalization [27, 33]. Terefore, tis paper employs GRUs for all RNN models in te experiments Knowledge Carryover In order to model te encoded knowledge from previous turns, for eac time step t, te knowledge encoding vector o in (5) is fed into te RNN model togeter wit te word w t. Terefore, te idden layer in te RNN model can be formulated as t = φ(mo + w t + U t 1) (14) to replace (7) as illustrated in Figure 3, were te dotted red lines indicate te carried knowledge. RNN-GRU can incorporate te encoded knowledge in te similar way, were Mo can be added into (10), (11) and (12) for modeling contextual knowledge similarly Model Training To train te RNN-GRU wit knowledge carryover, te weigts of M,, and U for bot gates and te weigts of RNN mem, RNN in, and kg can be jointly updated via backpropagation from te RNN tagger Dataset 3. Experiments Te data is collected from Microsoft Cortana, were we extract multi-turn interactions (#turn 5) in te communication domain for experiments. Tere are 32 semantic tags (te concatenation of intents and slots). Te number of multi-turn utterances for training is 1,005, one for testing is 1,001, and one for development is 207. Tere are 13,779 single-turn utterances, wic are used to train te baseline SLU model for comparison Implementation Setting For training models, we use mini-batc stocastic gradient descent wit batc size 50 and te adam optimizer wit default parameters (a fixed learning rate 0.001, β 1 = 0.9, β 2 = 0.999, ɛ = 1e 08 ) [34]. Te number of iterations per batc is set to be 50 in te experiments. Te dimension of word and memory embeddings is set as 150 and te size of te idden layer in te RNN is set as 100. Te memory size is 20 to store carried knowledge from previous 20 turns. Te dropout rate is set to be 0.5 to avoid overfitting.

4 Table 1: Te performance of multi-turn SLU in terms of first turn only, oter turns, and overall results (%). First Turn Oter Turns Overall Model Training Knowledge Encoding P R F1 P R F1 P R F1 (a) single-turn RNN Tagger (b) multi-turn (c) multi-turn current utterance (c) Encoder-Tagger (d) multi-turn istory + current (x, c) (e) Memory Network multi-turn istory + current (x, c) Table 2: Te performance of multi-turn SLU in terms of intent and slot results (%). Model Intent Slot P R F1 P R F1 (a) (b) (c) (d) (e) Results In order to evaluate te proposed model for multi-turn SLU, we compare te performance of following model arcitectures in Table 1 and Table 2. RNN Tagger treats eac test utterance independently and performs sequence tagging via RNN-GRUs, were te training set comes from single-turn interactions (row (a)) or multi-turn interactions (row (b)). Encoder-Tagger encodes te knowledge before prediction using RNN-GRUs, and ten estimates eac tag by considering not only te current input word but also te encoded information via anoter RNN-GRUs, were we encode knowledge using te current utterance only (row (c)) or entire istory togeter wit te current utterance (row (d)). Note tat tere is no attention and memory mecanisms in tis model. Te entire istory is concatenated togeter for modeling te knowledge. Memory Network takes istory and current utterances into account for encoding knowledge wit attention and memory mecanisms in an end-to-end fasion, and ten performs sequence tagging using RNN-GRUs as described in Section 2 (row (e)). Te evaluation metrics are precision (P), recall (R) and F- measure (F1) for semantic tags, were eac tagging result is considered correct if te word-beginning and te word-inside and te word-outside predictions are all correct (including bot intents and slots). For te evaluation results, we sow te performance of te testing set in terms of (1) first turn only, (2) oter turns, and (3) all turns from a full dialogue in Table 1. Furtermore, we sow te performance of evaluating intents and slots separately in Table Comparing between Single-Turn and Multi-Turn Data For te rows (a) and (b) in Table 1, training on single-turn data may work well wen testing te first-turn utterances, acieving 60.6% on F1. However, for oter turns, its performance is muc worse due to lack of modeling contextual knowledge in te multi-turn interactions and mismatc between training and testing data. Treating eac utterance from multi-turn interactions independently performs 55.8% on F1 for te first-turn utterances, even toug te size of training data is smaller. Te reason is probably tat tere is no mismatc between training and testing Comparing between Encoded Knowledge For employing encoder-tagger models (rows (c) and (d)), additionally encoding te istory utterances improves te tagging results for bot first-turn and following turns. Also, te encoder-tagger significantly outperform te RNN tagger (47.4% to 62.5%), sowing tat encoder-tagger is able to capture clues from long-term dependencies Effectiveness of te Proposed Model From Table 1, we find tat te best overall performance comes from te proposed memory networks (row (e)), wic acieves 67.1% on te overall F1 score and sows te effectiveness of modeling long-term knowledge for SLU. Te proposed model works well wen tagging te turns wit previous contexts, were te F1 score of SLU is about 65.7%. Interestingly, te performance of first-turn utterances is also better tan all baselines, probably because te capability of modeling following turns can benefit te performance of first-turn utterances. Comparing wit te row (d), memory network is able to effectively capture salient knowledge for better tagging. Also, in terms of efficiency, te proposed model is more tan 10x faster tan te encoder-tagger model, because eac utterance is modeled separately and stored in te memory for later reuse Analysis of Intent and Slot Performance Table 2 presents intent-only and slot-only performance of te same set of models. For bot intent and slot performance, te model trained on single-turn utterances performs worst. For intent performance, encoder-tagger wit istory (row (d)) and memory network (row (e)) significantly outperform oters. Te difference between te rows (d) and (e) may not be significant. On te oter and, in terms of slot performance, te best result is from te memory network, demonstrating tat knowledge carryover modeled by te proposed model can benefit inference of semantic intents and slots in te multi-turn scenario. 4. Conclusions Tis paper proposes end-to-end memory networks to store contextual knowledge, wic can be exploited dynamically during testing for manipulating knowledge carryover in order to model long-term knowledge for multi-turn understanding. Te model embeds istory utterances into a continuous space and store tem in te memory. Te decoding pase applies an attention model to encode te carried knowledge and ten perform multiturn SLU. Te experiments sow te feasibility and robustness of modeling knowledge carryover troug memory networks.

5 5. References [1] G. Tur and R. De Mori, Spoken language understanding: Systems for extracting semantic information from speec. Jon iley & Sons, [2] Y.-N. Cen,. Y. ang, A. Gersman, and A. I. Rudnicky, Matrix factorization wit knowledge grap propagation for unsupervised spoken language understanding, Proceedings of ACL- IJCNLP, [3] P. Haffner, G. Tur, and J. H. rigt, Optimizing svms for complex call classification, in 2003 IEEE International Conference on Acoustics, Speec, and Signal Processing, Proceedings.(ICASSP), vol. 1. IEEE, 2003, pp. I 632. [4] C. Celba, M. Maajan, and A. Acero, Speec utterance classification, in 2003 IEEE International Conference on Acoustics, Speec, and Signal Processing, Proceedings.(ICASSP), vol. 1. IEEE, 2003, pp. I 280. [5] Y.-N. Cen, D. Hakkani-Tur, and G. Tur, Deriving local relational surface forms from dependency-based entity embeddings for unsupervised spoken language understanding, in 2014 IEEE Spoken Language Tecnology orksop (SLT). IEEE, 2014, pp [6] R. Pieraccini, E. Tzoukermann, Z. Gorelov, J.-L. Gauvain, E. Levin, C.-H. Lee, and J. G. ilpon, A speec understanding system based on statistical representation of semantics, in 1992 IEEE International Conference on Acoustics, Speec, and Signal Processing (ICASSP), vol. 1. IEEE, 1992, pp [7] Y.-Y. ang, L. Deng, and A. Acero, Spoken language understanding, IEEE Signal Processing Magazine, vol. 22, no. 5, pp , [8] C. Raymond and G. Riccardi, Generative and discriminative algoritms for spoken language understanding. in INTERSPEECH, 2007, pp [9] R. Sarikaya, G. E. Hinton, and B. Ramabadran, Deep belief nets for natural language call-routing, in 2011 IEEE International Conference on Acoustics, Speec and Signal Processing (ICASSP). IEEE, 2011, pp [10] G. Tur, L. Deng, D. Hakkani-Tür, and X. He, Towards deeper understanding: Deep convex networks for semantic utterance classification, in 2012 IEEE International Conference on Acoustics, Speec and Signal Processing (ICASSP). IEEE, 2012, pp [11] R. Sarikaya, G. E. Hinton, and A. Deoras, Application of deep belief networks for natural language understanding, IEEE/ACM Transactions on Audio, Speec, and Language Processing, vol. 22, no. 4, pp , [12] S. Ravuri and A. Stolcke, Recurrent neural network and lstm models for lexical utterance classification, in Sixteent Annual Conference of te International Speec Communication Association, [13] P. Xu and R. Sarikaya, Convolutional neural network based triangular CRF for joint intent detection and slot filling, in 2013 IEEE orksop on Automatic Speec Recognition and Understanding (ASRU). IEEE, 2013, pp [14] K. Yao, G. Zweig, M.-Y. Hwang, Y. Si, and D. Yu, Recurrent neural networks for language understanding. in INTERSPEECH, 2013, pp [15] G. Mesnil, Y. Daupin, K. Yao, Y. Bengio, L. Deng, D. Hakkani- Tur, X. He, L. Heck, G. Tur, D. Yu et al., Using recurrent neural networks for slot filling in spoken language understanding, IEEE/ACM Transactions on Audio, Speec, and Language Processing, vol. 23, no. 3, pp , [16] D. Hakkani-Tür, G. Tur, A. Celikyilmaz, Y.-N. Cen, J. Gao, D. Li, and Y.-Y. ang, Multi-domain joint semantic frame parsing using bi-directional RNN-LSTM, in INTERSPEECH, [17] A. Bargava, A. Celikyilmaz, D. Hakkani-Tur, and R. Sarikaya, Easy contextual intent prediction and slot detection, in 2013 IEEE International Conference on Acoustics, Speec and Signal Processing (ICASSP). IEEE, 2013, pp [18] P. Xu and R. Sarikaya, Contextual domain classification in spoken language understanding systems using recurrent neural network, in 2014 IEEE International Conference on Acoustics, Speec and Signal Processing (ICASSP). IEEE, 2014, pp [19] Y.-N. Cen, M. Sun, A. I. Rudnicky, and A. Gersman, Leveraging beavioral patterns of mobile applications for personalized spoken language understanding, in Proceedings of 17t ACM International Conference on Multimodel Interaction (ICMI). ACM, 2015, pp [20] M. Sun, Y.-N. Cen, and A. I. Rudnicky, An intelligent assistant for ig-level task understanding, in Proceedings of Te 21st Annual Meeting of te Intelligent Interfaces Community (IUI), 2016, pp [21] Y. Si, K. Yao, H. Cen, Y.-C. Pan, M.-Y. Hwang, and B. Peng, Contextual spoken language understanding using recurrent neural networks, in 2015 IEEE International Conference on Acoustics, Speec and Signal Processing (ICASSP). IEEE, 2015, pp [22] D. Badanau, K. Co, and Y. Bengio, Neural macine translation by jointly learning to align and translate, in International Conference on Learning Representations (ICLR), [23] A. Graves, G. ayne, and I. Danielka, Neural turing macines, arxiv preprint arxiv: , [24] J. eston, S. Copra, and A. Bordesa, Memory networks, in International Conference on Learning Representations (ICLR), [25] S. Sukbaatar, J. eston, R. Fergus et al., End-to-end memory networks, in Advances in Neural Information Processing Systems, 2015, pp [26] J. L. Elman, Finding structure in time, Cognitive science, vol. 14, no. 2, pp , [27] J. Cung, C. Gulcere, K. Co, and Y. Bengio, Empirical evaluation of gated recurrent neural networks on sequence modeling, arxiv preprint arxiv: , [28] S. Hocreiter and J. Scmiduber, Long sort-term memory, Neural computation, vol. 9, no. 8, pp , [29] K. Co, B. van Merriënboer, D. Badanau, and Y. Bengio, On te properties of neural macine translation: Encoder-decoder approaces, arxiv preprint arxiv: , [30] K. Yao, B. Peng, Y. Zang, D. Yu, G. Zweig, and Y. Si, Spoken language understanding using long sort-term memory neural networks, in 2014 IEEE Spoken Language Tecnology orksop (SLT). IEEE, 2014, pp [31] A. Graves, A.-r. Moamed, and G. Hinton, Speec recognition wit deep recurrent neural networks, in 2013 IEEE International Conference on Acoustics, Speec and Signal Processing (ICASSP). IEEE, 2013, pp [32] I. Sutskever, O. Vinyals, and Q. V. Le, Sequence to sequence learning wit neural networks, in Advances in neural information processing systems, 2014, pp [33] R. Jozefowicz,. Zaremba, and I. Sutskever, An empirical exploration of recurrent network arcitectures, in Proceedings of te 32nd International Conference on Macine Learning (ICML- 15), 2015, pp [34] D. Kingma and J. Ba, Adam: A metod for stocastic optimization, arxiv preprint arxiv: , 2014.

System Implementation for SemEval-2017 Task 4 Subtask A Based on Interpolated Deep Neural Networks

System Implementation for SemEval-2017 Task 4 Subtask A Based on Interpolated Deep Neural Networks System Implementation for SemEval-2017 Task 4 Subtask A Based on Interpolated Deep Neural Networks 1 Tzu-Hsuan Yang, 2 Tzu-Hsuan Tseng, and 3 Chia-Ping Chen Department of Computer Science and Engineering

More information

Semi-Supervised GMM and DNN Acoustic Model Training with Multi-system Combination and Confidence Re-calibration

Semi-Supervised GMM and DNN Acoustic Model Training with Multi-system Combination and Confidence Re-calibration INTERSPEECH 2013 Semi-Supervised GMM and DNN Acoustic Model Training with Multi-system Combination and Confidence Re-calibration Yan Huang, Dong Yu, Yifan Gong, and Chaojun Liu Microsoft Corporation, One

More information

Autoregressive product of multi-frame predictions can improve the accuracy of hybrid models

Autoregressive product of multi-frame predictions can improve the accuracy of hybrid models Autoregressive product of multi-frame predictions can improve the accuracy of hybrid models Navdeep Jaitly 1, Vincent Vanhoucke 2, Geoffrey Hinton 1,2 1 University of Toronto 2 Google Inc. ndjaitly@cs.toronto.edu,

More information

PREDICTING SPEECH RECOGNITION CONFIDENCE USING DEEP LEARNING WITH WORD IDENTITY AND SCORE FEATURES

PREDICTING SPEECH RECOGNITION CONFIDENCE USING DEEP LEARNING WITH WORD IDENTITY AND SCORE FEATURES PREDICTING SPEECH RECOGNITION CONFIDENCE USING DEEP LEARNING WITH WORD IDENTITY AND SCORE FEATURES Po-Sen Huang, Kshitiz Kumar, Chaojun Liu, Yifan Gong, Li Deng Department of Electrical and Computer Engineering,

More information

Python Machine Learning

Python Machine Learning Python Machine Learning Unlock deeper insights into machine learning with this vital guide to cuttingedge predictive analytics Sebastian Raschka [ PUBLISHING 1 open source I community experience distilled

More information

arxiv: v1 [cs.lg] 7 Apr 2015

arxiv: v1 [cs.lg] 7 Apr 2015 Transferring Knowledge from a RNN to a DNN William Chan 1, Nan Rosemary Ke 1, Ian Lane 1,2 Carnegie Mellon University 1 Electrical and Computer Engineering, 2 Language Technologies Institute Equal contribution

More information

Unsupervised Learning of Word Semantic Embedding using the Deep Structured Semantic Model

Unsupervised Learning of Word Semantic Embedding using the Deep Structured Semantic Model Unsupervised Learning of Word Semantic Embedding using the Deep Structured Semantic Model Xinying Song, Xiaodong He, Jianfeng Gao, Li Deng Microsoft Research, One Microsoft Way, Redmond, WA 98052, U.S.A.

More information

A study of speaker adaptation for DNN-based speech synthesis

A study of speaker adaptation for DNN-based speech synthesis A study of speaker adaptation for DNN-based speech synthesis Zhizheng Wu, Pawel Swietojanski, Christophe Veaux, Steve Renals, Simon King The Centre for Speech Technology Research (CSTR) University of Edinburgh,

More information

Calibration of Confidence Measures in Speech Recognition

Calibration of Confidence Measures in Speech Recognition Submitted to IEEE Trans on Audio, Speech, and Language, July 2010 1 Calibration of Confidence Measures in Speech Recognition Dong Yu, Senior Member, IEEE, Jinyu Li, Member, IEEE, Li Deng, Fellow, IEEE

More information

A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation

A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation SLSP-2016 October 11-12 Natalia Tomashenko 1,2,3 natalia.tomashenko@univ-lemans.fr Yuri Khokhlov 3 khokhlov@speechpro.com Yannick

More information

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System QuickStroke: An Incremental On-line Chinese Handwriting Recognition System Nada P. Matić John C. Platt Λ Tony Wang y Synaptics, Inc. 2381 Bering Drive San Jose, CA 95131, USA Abstract This paper presents

More information

Learning Methods in Multilingual Speech Recognition

Learning Methods in Multilingual Speech Recognition Learning Methods in Multilingual Speech Recognition Hui Lin Department of Electrical Engineering University of Washington Seattle, WA 98125 linhui@u.washington.edu Li Deng, Jasha Droppo, Dong Yu, and Alex

More information

Глубокие рекуррентные нейронные сети для аспектно-ориентированного анализа тональности отзывов пользователей на различных языках

Глубокие рекуррентные нейронные сети для аспектно-ориентированного анализа тональности отзывов пользователей на различных языках Глубокие рекуррентные нейронные сети для аспектно-ориентированного анализа тональности отзывов пользователей на различных языках Тарасов Д. С. (dtarasov3@gmail.com) Интернет-портал reviewdot.ru, Казань,

More information

Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models

Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models Stephan Gouws and GJ van Rooyen MIH Medialab, Stellenbosch University SOUTH AFRICA {stephan,gvrooyen}@ml.sun.ac.za

More information

Robust Speech Recognition using DNN-HMM Acoustic Model Combining Noise-aware training with Spectral Subtraction

Robust Speech Recognition using DNN-HMM Acoustic Model Combining Noise-aware training with Spectral Subtraction INTERSPEECH 2015 Robust Speech Recognition using DNN-HMM Acoustic Model Combining Noise-aware training with Spectral Subtraction Akihiro Abe, Kazumasa Yamamoto, Seiichi Nakagawa Department of Computer

More information

A Simple VQA Model with a Few Tricks and Image Features from Bottom-up Attention

A Simple VQA Model with a Few Tricks and Image Features from Bottom-up Attention A Simple VQA Model with a Few Tricks and Image Features from Bottom-up Attention Damien Teney 1, Peter Anderson 2*, David Golub 4*, Po-Sen Huang 3, Lei Zhang 3, Xiaodong He 3, Anton van den Hengel 1 1

More information

IEEE/ACM TRANSACTIONS ON AUDIO, SPEECH AND LANGUAGE PROCESSING, VOL XXX, NO. XXX,

IEEE/ACM TRANSACTIONS ON AUDIO, SPEECH AND LANGUAGE PROCESSING, VOL XXX, NO. XXX, IEEE/ACM TRANSACTIONS ON AUDIO, SPEECH AND LANGUAGE PROCESSING, VOL XXX, NO. XXX, 2017 1 Small-footprint Highway Deep Neural Networks for Speech Recognition Liang Lu Member, IEEE, Steve Renals Fellow,

More information

Segmental Conditional Random Fields with Deep Neural Networks as Acoustic Models for First-Pass Word Recognition

Segmental Conditional Random Fields with Deep Neural Networks as Acoustic Models for First-Pass Word Recognition Segmental Conditional Random Fields with Deep Neural Networks as Acoustic Models for First-Pass Word Recognition Yanzhang He, Eric Fosler-Lussier Department of Computer Science and Engineering The hio

More information

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur Module 12 Machine Learning 12.1 Instructional Objective The students should understand the concept of learning systems Students should learn about different aspects of a learning system Students should

More information

Improvements to the Pruning Behavior of DNN Acoustic Models

Improvements to the Pruning Behavior of DNN Acoustic Models Improvements to the Pruning Behavior of DNN Acoustic Models Matthias Paulik Apple Inc., Infinite Loop, Cupertino, CA 954 mpaulik@apple.com Abstract This paper examines two strategies that positively influence

More information

POS tagging of Chinese Buddhist texts using Recurrent Neural Networks

POS tagging of Chinese Buddhist texts using Recurrent Neural Networks POS tagging of Chinese Buddhist texts using Recurrent Neural Networks Longlu Qin Department of East Asian Languages and Cultures longlu@stanford.edu Abstract Chinese POS tagging, as one of the most important

More information

Deep Neural Network Language Models

Deep Neural Network Language Models Deep Neural Network Language Models Ebru Arısoy, Tara N. Sainath, Brian Kingsbury, Bhuvana Ramabhadran IBM T.J. Watson Research Center Yorktown Heights, NY, 10598, USA {earisoy, tsainath, bedk, bhuvana}@us.ibm.com

More information

BUILDING CONTEXT-DEPENDENT DNN ACOUSTIC MODELS USING KULLBACK-LEIBLER DIVERGENCE-BASED STATE TYING

BUILDING CONTEXT-DEPENDENT DNN ACOUSTIC MODELS USING KULLBACK-LEIBLER DIVERGENCE-BASED STATE TYING BUILDING CONTEXT-DEPENDENT DNN ACOUSTIC MODELS USING KULLBACK-LEIBLER DIVERGENCE-BASED STATE TYING Gábor Gosztolya 1, Tamás Grósz 1, László Tóth 1, David Imseng 2 1 MTA-SZTE Research Group on Artificial

More information

A Neural Network GUI Tested on Text-To-Phoneme Mapping

A Neural Network GUI Tested on Text-To-Phoneme Mapping A Neural Network GUI Tested on Text-To-Phoneme Mapping MAARTEN TROMPPER Universiteit Utrecht m.f.a.trompper@students.uu.nl Abstract Text-to-phoneme (T2P) mapping is a necessary step in any speech synthesis

More information

The building blocks of HPSG grammars. Head-Driven Phrase Structure Grammar (HPSG) HPSG grammars from a linguistic perspective

The building blocks of HPSG grammars. Head-Driven Phrase Structure Grammar (HPSG) HPSG grammars from a linguistic perspective Te building blocks of HPSG grammars Head-Driven Prase Structure Grammar (HPSG) In HPSG, sentences, s, prases, and multisentence discourses are all represented as signs = complexes of ponological, syntactic/semantic,

More information

SEMI-SUPERVISED ENSEMBLE DNN ACOUSTIC MODEL TRAINING

SEMI-SUPERVISED ENSEMBLE DNN ACOUSTIC MODEL TRAINING SEMI-SUPERVISED ENSEMBLE DNN ACOUSTIC MODEL TRAINING Sheng Li 1, Xugang Lu 2, Shinsuke Sakai 1, Masato Mimura 1 and Tatsuya Kawahara 1 1 School of Informatics, Kyoto University, Sakyo-ku, Kyoto 606-8501,

More information

arxiv: v1 [cs.cl] 27 Apr 2016

arxiv: v1 [cs.cl] 27 Apr 2016 The IBM 2016 English Conversational Telephone Speech Recognition System George Saon, Tom Sercu, Steven Rennie and Hong-Kwang J. Kuo IBM T. J. Watson Research Center, Yorktown Heights, NY, 10598 gsaon@us.ibm.com

More information

Semi-supervised methods of text processing, and an application to medical concept extraction. Yacine Jernite Text-as-Data series September 17.

Semi-supervised methods of text processing, and an application to medical concept extraction. Yacine Jernite Text-as-Data series September 17. Semi-supervised methods of text processing, and an application to medical concept extraction Yacine Jernite Text-as-Data series September 17. 2015 What do we want from text? 1. Extract information 2. Link

More information

Lecture 1: Machine Learning Basics

Lecture 1: Machine Learning Basics 1/69 Lecture 1: Machine Learning Basics Ali Harakeh University of Waterloo WAVE Lab ali.harakeh@uwaterloo.ca May 1, 2017 2/69 Overview 1 Learning Algorithms 2 Capacity, Overfitting, and Underfitting 3

More information

Modeling function word errors in DNN-HMM based LVCSR systems

Modeling function word errors in DNN-HMM based LVCSR systems Modeling function word errors in DNN-HMM based LVCSR systems Melvin Jose Johnson Premkumar, Ankur Bapna and Sree Avinash Parchuri Department of Computer Science Department of Electrical Engineering Stanford

More information

TRANSFER LEARNING OF WEAKLY LABELLED AUDIO. Aleksandr Diment, Tuomas Virtanen

TRANSFER LEARNING OF WEAKLY LABELLED AUDIO. Aleksandr Diment, Tuomas Virtanen TRANSFER LEARNING OF WEAKLY LABELLED AUDIO Aleksandr Diment, Tuomas Virtanen Tampere University of Technology Laboratory of Signal Processing Korkeakoulunkatu 1, 33720, Tampere, Finland firstname.lastname@tut.fi

More information

Second Exam: Natural Language Parsing with Neural Networks

Second Exam: Natural Language Parsing with Neural Networks Second Exam: Natural Language Parsing with Neural Networks James Cross May 21, 2015 Abstract With the advent of deep learning, there has been a recent resurgence of interest in the use of artificial neural

More information

Probabilistic Latent Semantic Analysis

Probabilistic Latent Semantic Analysis Probabilistic Latent Semantic Analysis Thomas Hofmann Presentation by Ioannis Pavlopoulos & Andreas Damianou for the course of Data Mining & Exploration 1 Outline Latent Semantic Analysis o Need o Overview

More information

arxiv: v2 [cs.ir] 22 Aug 2016

arxiv: v2 [cs.ir] 22 Aug 2016 Exploring Deep Space: Learning Personalized Ranking in a Semantic Space arxiv:1608.00276v2 [cs.ir] 22 Aug 2016 ABSTRACT Jeroen B. P. Vuurens The Hague University of Applied Science Delft University of

More information

UNIDIRECTIONAL LONG SHORT-TERM MEMORY RECURRENT NEURAL NETWORK WITH RECURRENT OUTPUT LAYER FOR LOW-LATENCY SPEECH SYNTHESIS. Heiga Zen, Haşim Sak

UNIDIRECTIONAL LONG SHORT-TERM MEMORY RECURRENT NEURAL NETWORK WITH RECURRENT OUTPUT LAYER FOR LOW-LATENCY SPEECH SYNTHESIS. Heiga Zen, Haşim Sak UNIDIRECTIONAL LONG SHORT-TERM MEMORY RECURRENT NEURAL NETWORK WITH RECURRENT OUTPUT LAYER FOR LOW-LATENCY SPEECH SYNTHESIS Heiga Zen, Haşim Sak Google fheigazen,hasimg@google.com ABSTRACT Long short-term

More information

Modeling function word errors in DNN-HMM based LVCSR systems

Modeling function word errors in DNN-HMM based LVCSR systems Modeling function word errors in DNN-HMM based LVCSR systems Melvin Jose Johnson Premkumar, Ankur Bapna and Sree Avinash Parchuri Department of Computer Science Department of Electrical Engineering Stanford

More information

Training a Neural Network to Answer 8th Grade Science Questions Steven Hewitt, An Ju, Katherine Stasaski

Training a Neural Network to Answer 8th Grade Science Questions Steven Hewitt, An Ju, Katherine Stasaski Training a Neural Network to Answer 8th Grade Science Questions Steven Hewitt, An Ju, Katherine Stasaski Problem Statement and Background Given a collection of 8th grade science questions, possible answer

More information

A NOVEL SCHEME FOR SPEAKER RECOGNITION USING A PHONETICALLY-AWARE DEEP NEURAL NETWORK. Yun Lei Nicolas Scheffer Luciana Ferrer Mitchell McLaren

A NOVEL SCHEME FOR SPEAKER RECOGNITION USING A PHONETICALLY-AWARE DEEP NEURAL NETWORK. Yun Lei Nicolas Scheffer Luciana Ferrer Mitchell McLaren A NOVEL SCHEME FOR SPEAKER RECOGNITION USING A PHONETICALLY-AWARE DEEP NEURAL NETWORK Yun Lei Nicolas Scheffer Luciana Ferrer Mitchell McLaren Speech Technology and Research Laboratory, SRI International,

More information

arxiv: v4 [cs.cl] 28 Mar 2016

arxiv: v4 [cs.cl] 28 Mar 2016 LSTM-BASED DEEP LEARNING MODELS FOR NON- FACTOID ANSWER SELECTION Ming Tan, Cicero dos Santos, Bing Xiang & Bowen Zhou IBM Watson Core Technologies Yorktown Heights, NY, USA {mingtan,cicerons,bingxia,zhou}@us.ibm.com

More information

Framewise Phoneme Classification with Bidirectional LSTM and Other Neural Network Architectures

Framewise Phoneme Classification with Bidirectional LSTM and Other Neural Network Architectures Framewise Phoneme Classification with Bidirectional LSTM and Other Neural Network Architectures Alex Graves and Jürgen Schmidhuber IDSIA, Galleria 2, 6928 Manno-Lugano, Switzerland TU Munich, Boltzmannstr.

More information

Dropout improves Recurrent Neural Networks for Handwriting Recognition

Dropout improves Recurrent Neural Networks for Handwriting Recognition 2014 14th International Conference on Frontiers in Handwriting Recognition Dropout improves Recurrent Neural Networks for Handwriting Recognition Vu Pham,Théodore Bluche, Christopher Kermorvant, and Jérôme

More information

Human Emotion Recognition From Speech

Human Emotion Recognition From Speech RESEARCH ARTICLE OPEN ACCESS Human Emotion Recognition From Speech Miss. Aparna P. Wanare*, Prof. Shankar N. Dandare *(Department of Electronics & Telecommunication Engineering, Sant Gadge Baba Amravati

More information

THE world surrounding us involves multiple modalities

THE world surrounding us involves multiple modalities 1 Multimodal Machine Learning: A Survey and Taxonomy Tadas Baltrušaitis, Chaitanya Ahuja, and Louis-Philippe Morency arxiv:1705.09406v2 [cs.lg] 1 Aug 2017 Abstract Our experience of the world is multimodal

More information

Ask Me Anything: Dynamic Memory Networks for Natural Language Processing

Ask Me Anything: Dynamic Memory Networks for Natural Language Processing Ask Me Anything: Dynamic Memory Networks for Natural Language Processing Ankit Kumar*, Ozan Irsoy*, Peter Ondruska*, Mohit Iyyer*, James Bradbury, Ishaan Gulrajani*, Victor Zhong*, Romain Paulus, Richard

More information

Distributed Learning of Multilingual DNN Feature Extractors using GPUs

Distributed Learning of Multilingual DNN Feature Extractors using GPUs Distributed Learning of Multilingual DNN Feature Extractors using GPUs Yajie Miao, Hao Zhang, Florian Metze Language Technologies Institute, School of Computer Science, Carnegie Mellon University Pittsburgh,

More information

ADVANCES IN DEEP NEURAL NETWORK APPROACHES TO SPEAKER RECOGNITION

ADVANCES IN DEEP NEURAL NETWORK APPROACHES TO SPEAKER RECOGNITION ADVANCES IN DEEP NEURAL NETWORK APPROACHES TO SPEAKER RECOGNITION Mitchell McLaren 1, Yun Lei 1, Luciana Ferrer 2 1 Speech Technology and Research Laboratory, SRI International, California, USA 2 Departamento

More information

arxiv: v1 [cs.cv] 10 May 2017

arxiv: v1 [cs.cv] 10 May 2017 Inferring and Executing Programs for Visual Reasoning Justin Johnson 1 Bharath Hariharan 2 Laurens van der Maaten 2 Judy Hoffman 1 Li Fei-Fei 1 C. Lawrence Zitnick 2 Ross Girshick 2 1 Stanford University

More information

INVESTIGATION OF UNSUPERVISED ADAPTATION OF DNN ACOUSTIC MODELS WITH FILTER BANK INPUT

INVESTIGATION OF UNSUPERVISED ADAPTATION OF DNN ACOUSTIC MODELS WITH FILTER BANK INPUT INVESTIGATION OF UNSUPERVISED ADAPTATION OF DNN ACOUSTIC MODELS WITH FILTER BANK INPUT Takuya Yoshioka,, Anton Ragni, Mark J. F. Gales Cambridge University Engineering Department, Cambridge, UK NTT Communication

More information

A Review: Speech Recognition with Deep Learning Methods

A Review: Speech Recognition with Deep Learning Methods Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 5, May 2015, pg.1017

More information

AUTOMATIC DETECTION OF PROLONGED FRICATIVE PHONEMES WITH THE HIDDEN MARKOV MODELS APPROACH 1. INTRODUCTION

AUTOMATIC DETECTION OF PROLONGED FRICATIVE PHONEMES WITH THE HIDDEN MARKOV MODELS APPROACH 1. INTRODUCTION JOURNAL OF MEDICAL INFORMATICS & TECHNOLOGIES Vol. 11/2007, ISSN 1642-6037 Marek WIŚNIEWSKI *, Wiesława KUNISZYK-JÓŹKOWIAK *, Elżbieta SMOŁKA *, Waldemar SUSZYŃSKI * HMM, recognition, speech, disorders

More information

DNN ACOUSTIC MODELING WITH MODULAR MULTI-LINGUAL FEATURE EXTRACTION NETWORKS

DNN ACOUSTIC MODELING WITH MODULAR MULTI-LINGUAL FEATURE EXTRACTION NETWORKS DNN ACOUSTIC MODELING WITH MODULAR MULTI-LINGUAL FEATURE EXTRACTION NETWORKS Jonas Gehring 1 Quoc Bao Nguyen 1 Florian Metze 2 Alex Waibel 1,2 1 Interactive Systems Lab, Karlsruhe Institute of Technology;

More information

Dialog-based Language Learning

Dialog-based Language Learning Dialog-based Language Learning Jason Weston Facebook AI Research, New York. jase@fb.com arxiv:1604.06045v4 [cs.cl] 20 May 2016 Abstract A long-term goal of machine learning research is to build an intelligent

More information

ReinForest: Multi-Domain Dialogue Management Using Hierarchical Policies and Knowledge Ontology

ReinForest: Multi-Domain Dialogue Management Using Hierarchical Policies and Knowledge Ontology ReinForest: Multi-Domain Dialogue Management Using Hierarchical Policies and Knowledge Ontology Tiancheng Zhao CMU-LTI-16-006 Language Technologies Institute School of Computer Science Carnegie Mellon

More information

Attributed Social Network Embedding

Attributed Social Network Embedding JOURNAL OF LATEX CLASS FILES, VOL. 14, NO. 8, MAY 2017 1 Attributed Social Network Embedding arxiv:1705.04969v1 [cs.si] 14 May 2017 Lizi Liao, Xiangnan He, Hanwang Zhang, and Tat-Seng Chua Abstract Embedding

More information

Georgetown University at TREC 2017 Dynamic Domain Track

Georgetown University at TREC 2017 Dynamic Domain Track Georgetown University at TREC 2017 Dynamic Domain Track Zhiwen Tang Georgetown University zt79@georgetown.edu Grace Hui Yang Georgetown University huiyang@cs.georgetown.edu Abstract TREC Dynamic Domain

More information

Linking Task: Identifying authors and book titles in verbose queries

Linking Task: Identifying authors and book titles in verbose queries Linking Task: Identifying authors and book titles in verbose queries Anaïs Ollagnier, Sébastien Fournier, and Patrice Bellot Aix-Marseille University, CNRS, ENSAM, University of Toulon, LSIS UMR 7296,

More information

Generative models and adversarial training

Generative models and adversarial training Day 4 Lecture 1 Generative models and adversarial training Kevin McGuinness kevin.mcguinness@dcu.ie Research Fellow Insight Centre for Data Analytics Dublin City University What is a generative model?

More information

Role of Pausing in Text-to-Speech Synthesis for Simultaneous Interpretation

Role of Pausing in Text-to-Speech Synthesis for Simultaneous Interpretation Role of Pausing in Text-to-Speech Synthesis for Simultaneous Interpretation Vivek Kumar Rangarajan Sridhar, John Chen, Srinivas Bangalore, Alistair Conkie AT&T abs - Research 180 Park Avenue, Florham Park,

More information

Experiments with SMS Translation and Stochastic Gradient Descent in Spanish Text Author Profiling

Experiments with SMS Translation and Stochastic Gradient Descent in Spanish Text Author Profiling Experiments with SMS Translation and Stochastic Gradient Descent in Spanish Text Author Profiling Notebook for PAN at CLEF 2013 Andrés Alfonso Caurcel Díaz 1 and José María Gómez Hidalgo 2 1 Universidad

More information

International Journal of Computational Intelligence and Informatics, Vol. 1 : No. 4, January - March 2012

International Journal of Computational Intelligence and Informatics, Vol. 1 : No. 4, January - March 2012 Text-independent Mono and Cross-lingual Speaker Identification with the Constraint of Limited Data Nagaraja B G and H S Jayanna Department of Information Science and Engineering Siddaganga Institute of

More information

On the Formation of Phoneme Categories in DNN Acoustic Models

On the Formation of Phoneme Categories in DNN Acoustic Models On the Formation of Phoneme Categories in DNN Acoustic Models Tasha Nagamine Department of Electrical Engineering, Columbia University T. Nagamine Motivation Large performance gap between humans and state-

More information

MULTILINGUAL INFORMATION ACCESS IN DIGITAL LIBRARY

MULTILINGUAL INFORMATION ACCESS IN DIGITAL LIBRARY MULTILINGUAL INFORMATION ACCESS IN DIGITAL LIBRARY Chen, Hsin-Hsi Department of Computer Science and Information Engineering National Taiwan University Taipei, Taiwan E-mail: hh_chen@csie.ntu.edu.tw Abstract

More information

Learning From the Past with Experiment Databases

Learning From the Past with Experiment Databases Learning From the Past with Experiment Databases Joaquin Vanschoren 1, Bernhard Pfahringer 2, and Geoff Holmes 2 1 Computer Science Dept., K.U.Leuven, Leuven, Belgium 2 Computer Science Dept., University

More information

Using dialogue context to improve parsing performance in dialogue systems

Using dialogue context to improve parsing performance in dialogue systems Using dialogue context to improve parsing performance in dialogue systems Ivan Meza-Ruiz and Oliver Lemon School of Informatics, Edinburgh University 2 Buccleuch Place, Edinburgh I.V.Meza-Ruiz@sms.ed.ac.uk,

More information

arxiv: v1 [cs.lg] 15 Jun 2015

arxiv: v1 [cs.lg] 15 Jun 2015 Dual Memory Architectures for Fast Deep Learning of Stream Data via an Online-Incremental-Transfer Strategy arxiv:1506.04477v1 [cs.lg] 15 Jun 2015 Sang-Woo Lee Min-Oh Heo School of Computer Science and

More information

WHEN THERE IS A mismatch between the acoustic

WHEN THERE IS A mismatch between the acoustic 808 IEEE TRANSACTIONS ON AUDIO, SPEECH, AND LANGUAGE PROCESSING, VOL. 14, NO. 3, MAY 2006 Optimization of Temporal Filters for Constructing Robust Features in Speech Recognition Jeih-Weih Hung, Member,

More information

Product Feature-based Ratings foropinionsummarization of E-Commerce Feedback Comments

Product Feature-based Ratings foropinionsummarization of E-Commerce Feedback Comments Product Feature-based Ratings foropinionsummarization of E-Commerce Feedback Comments Vijayshri Ramkrishna Ingale PG Student, Department of Computer Engineering JSPM s Imperial College of Engineering &

More information

OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS

OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS Václav Kocian, Eva Volná, Michal Janošek, Martin Kotyrba University of Ostrava Department of Informatics and Computers Dvořákova 7,

More information

A Latent Semantic Model with Convolutional-Pooling Structure for Information Retrieval

A Latent Semantic Model with Convolutional-Pooling Structure for Information Retrieval A Latent Semantic Model with Convolutional-Pooling Structure for Information Retrieval Yelong Shen Microsoft Research Redmond, WA, USA yeshen@microsoft.com Xiaodong He Jianfeng Gao Li Deng Microsoft Research

More information

Assignment 1: Predicting Amazon Review Ratings

Assignment 1: Predicting Amazon Review Ratings Assignment 1: Predicting Amazon Review Ratings 1 Dataset Analysis Richard Park r2park@acsmail.ucsd.edu February 23, 2015 The dataset selected for this assignment comes from the set of Amazon reviews for

More information

Semantic Segmentation with Histological Image Data: Cancer Cell vs. Stroma

Semantic Segmentation with Histological Image Data: Cancer Cell vs. Stroma Semantic Segmentation with Histological Image Data: Cancer Cell vs. Stroma Adam Abdulhamid Stanford University 450 Serra Mall, Stanford, CA 94305 adama94@cs.stanford.edu Abstract With the introduction

More information

Parsing of part-of-speech tagged Assamese Texts

Parsing of part-of-speech tagged Assamese Texts IJCSI International Journal of Computer Science Issues, Vol. 6, No. 1, 2009 ISSN (Online): 1694-0784 ISSN (Print): 1694-0814 28 Parsing of part-of-speech tagged Assamese Texts Mirzanur Rahman 1, Sufal

More information

Speech Recognition at ICSI: Broadcast News and beyond

Speech Recognition at ICSI: Broadcast News and beyond Speech Recognition at ICSI: Broadcast News and beyond Dan Ellis International Computer Science Institute, Berkeley CA Outline 1 2 3 The DARPA Broadcast News task Aspects of ICSI

More information

Residual Stacking of RNNs for Neural Machine Translation

Residual Stacking of RNNs for Neural Machine Translation Residual Stacking of RNNs for Neural Machine Translation Raphael Shu The University of Tokyo shu@nlab.ci.i.u-tokyo.ac.jp Akiva Miura Nara Institute of Science and Technology miura.akiba.lr9@is.naist.jp

More information

Knowledge Transfer in Deep Convolutional Neural Nets

Knowledge Transfer in Deep Convolutional Neural Nets Knowledge Transfer in Deep Convolutional Neural Nets Steven Gutstein, Olac Fuentes and Eric Freudenthal Computer Science Department University of Texas at El Paso El Paso, Texas, 79968, U.S.A. Abstract

More information

HIERARCHICAL DEEP LEARNING ARCHITECTURE FOR 10K OBJECTS CLASSIFICATION

HIERARCHICAL DEEP LEARNING ARCHITECTURE FOR 10K OBJECTS CLASSIFICATION HIERARCHICAL DEEP LEARNING ARCHITECTURE FOR 10K OBJECTS CLASSIFICATION Atul Laxman Katole 1, Krishna Prasad Yellapragada 1, Amish Kumar Bedi 1, Sehaj Singh Kalra 1 and Mynepalli Siva Chaitanya 1 1 Samsung

More information

Indian Institute of Technology, Kanpur

Indian Institute of Technology, Kanpur Indian Institute of Technology, Kanpur Course Project - CS671A POS Tagging of Code Mixed Text Ayushman Sisodiya (12188) {ayushmn@iitk.ac.in} Donthu Vamsi Krishna (15111016) {vamsi@iitk.ac.in} Sandeep Kumar

More information

TRANSFER LEARNING IN MIR: SHARING LEARNED LATENT REPRESENTATIONS FOR MUSIC AUDIO CLASSIFICATION AND SIMILARITY

TRANSFER LEARNING IN MIR: SHARING LEARNED LATENT REPRESENTATIONS FOR MUSIC AUDIO CLASSIFICATION AND SIMILARITY TRANSFER LEARNING IN MIR: SHARING LEARNED LATENT REPRESENTATIONS FOR MUSIC AUDIO CLASSIFICATION AND SIMILARITY Philippe Hamel, Matthew E. P. Davies, Kazuyoshi Yoshii and Masataka Goto National Institute

More information

Word Segmentation of Off-line Handwritten Documents

Word Segmentation of Off-line Handwritten Documents Word Segmentation of Off-line Handwritten Documents Chen Huang and Sargur N. Srihari {chuang5, srihari}@cedar.buffalo.edu Center of Excellence for Document Analysis and Recognition (CEDAR), Department

More information

Predicting Student Attrition in MOOCs using Sentiment Analysis and Neural Networks

Predicting Student Attrition in MOOCs using Sentiment Analysis and Neural Networks Predicting Student Attrition in MOOCs using Sentiment Analysis and Neural Networks Devendra Singh Chaplot, Eunhee Rhim, and Jihie Kim Samsung Electronics Co., Ltd. Seoul, South Korea {dev.chaplot,eunhee.rhim,jihie.kim}@samsung.com

More information

THE enormous growth of unstructured data, including

THE enormous growth of unstructured data, including INTL JOURNAL OF ELECTRONICS AND TELECOMMUNICATIONS, 2014, VOL. 60, NO. 4, PP. 321 326 Manuscript received September 1, 2014; revised December 2014. DOI: 10.2478/eletel-2014-0042 Deep Image Features in

More information

DIRECT ADAPTATION OF HYBRID DNN/HMM MODEL FOR FAST SPEAKER ADAPTATION IN LVCSR BASED ON SPEAKER CODE

DIRECT ADAPTATION OF HYBRID DNN/HMM MODEL FOR FAST SPEAKER ADAPTATION IN LVCSR BASED ON SPEAKER CODE 2014 IEEE International Conference on Acoustic, Speech and Signal Processing (ICASSP) DIRECT ADAPTATION OF HYBRID DNN/HMM MODEL FOR FAST SPEAKER ADAPTATION IN LVCSR BASED ON SPEAKER CODE Shaofei Xue 1

More information

(Sub)Gradient Descent

(Sub)Gradient Descent (Sub)Gradient Descent CMSC 422 MARINE CARPUAT marine@cs.umd.edu Figures credit: Piyush Rai Logistics Midterm is on Thursday 3/24 during class time closed book/internet/etc, one page of notes. will include

More information

OCR for Arabic using SIFT Descriptors With Online Failure Prediction

OCR for Arabic using SIFT Descriptors With Online Failure Prediction OCR for Arabic using SIFT Descriptors With Online Failure Prediction Andrey Stolyarenko, Nachum Dershowitz The Blavatnik School of Computer Science Tel Aviv University Tel Aviv, Israel Email: stloyare@tau.ac.il,

More information

Summarizing Answers in Non-Factoid Community Question-Answering

Summarizing Answers in Non-Factoid Community Question-Answering Summarizing Answers in Non-Factoid Community Question-Answering Hongya Song Zhaochun Ren Shangsong Liang hongya.song.sdu@gmail.com zhaochun.ren@ucl.ac.uk shangsong.liang@ucl.ac.uk Piji Li Jun Ma Maarten

More information

Course Outline. Course Grading. Where to go for help. Academic Integrity. EE-589 Introduction to Neural Networks NN 1 EE

Course Outline. Course Grading. Where to go for help. Academic Integrity. EE-589 Introduction to Neural Networks NN 1 EE EE-589 Introduction to Neural Assistant Prof. Dr. Turgay IBRIKCI Room # 305 (322) 338 6868 / 139 Wensdays 9:00-12:00 Course Outline The course is divided in two parts: theory and practice. 1. Theory covers

More information

Evolutive Neural Net Fuzzy Filtering: Basic Description

Evolutive Neural Net Fuzzy Filtering: Basic Description Journal of Intelligent Learning Systems and Applications, 2010, 2: 12-18 doi:10.4236/jilsa.2010.21002 Published Online February 2010 (http://www.scirp.org/journal/jilsa) Evolutive Neural Net Fuzzy Filtering:

More information

Model Ensemble for Click Prediction in Bing Search Ads

Model Ensemble for Click Prediction in Bing Search Ads Model Ensemble for Click Prediction in Bing Search Ads Xiaoliang Ling Microsoft Bing xiaoling@microsoft.com Hucheng Zhou Microsoft Research huzho@microsoft.com Weiwei Deng Microsoft Bing dedeng@microsoft.com

More information

Deep search. Enhancing a search bar using machine learning. Ilgün Ilgün & Cedric Reichenbach

Deep search. Enhancing a search bar using machine learning. Ilgün Ilgün & Cedric Reichenbach #BaselOne7 Deep search Enhancing a search bar using machine learning Ilgün Ilgün & Cedric Reichenbach We are not researchers Outline I. Periscope: A search tool II. Goals III. Deep learning IV. Applying

More information

Extracting Opinion Expressions and Their Polarities Exploration of Pipelines and Joint Models

Extracting Opinion Expressions and Their Polarities Exploration of Pipelines and Joint Models Extracting Opinion Expressions and Their Polarities Exploration of Pipelines and Joint Models Richard Johansson and Alessandro Moschitti DISI, University of Trento Via Sommarive 14, 38123 Trento (TN),

More information

Speech Translation for Triage of Emergency Phonecalls in Minority Languages

Speech Translation for Triage of Emergency Phonecalls in Minority Languages Speech Translation for Triage of Emergency Phonecalls in Minority Languages Udhyakumar Nallasamy, Alan W Black, Tanja Schultz, Robert Frederking Language Technologies Institute Carnegie Mellon University

More information

Comment-based Multi-View Clustering of Web 2.0 Items

Comment-based Multi-View Clustering of Web 2.0 Items Comment-based Multi-View Clustering of Web 2.0 Items Xiangnan He 1 Min-Yen Kan 1 Peichu Xie 2 Xiao Chen 3 1 School of Computing, National University of Singapore 2 Department of Mathematics, National University

More information

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler Machine Learning and Data Mining Ensembles of Learners Prof. Alexander Ihler Ensemble methods Why learn one classifier when you can learn many? Ensemble: combine many predictors (Weighted) combina

More information

Speech Emotion Recognition Using Support Vector Machine

Speech Emotion Recognition Using Support Vector Machine Speech Emotion Recognition Using Support Vector Machine Yixiong Pan, Peipei Shen and Liping Shen Department of Computer Technology Shanghai JiaoTong University, Shanghai, China panyixiong@sjtu.edu.cn,

More information

Radius STEM Readiness TM

Radius STEM Readiness TM Curriculum Guide Radius STEM Readiness TM While today s teens are surrounded by technology, we face a stark and imminent shortage of graduates pursuing careers in Science, Technology, Engineering, and

More information

LOW-RANK AND SPARSE SOFT TARGETS TO LEARN BETTER DNN ACOUSTIC MODELS

LOW-RANK AND SPARSE SOFT TARGETS TO LEARN BETTER DNN ACOUSTIC MODELS LOW-RANK AND SPARSE SOFT TARGETS TO LEARN BETTER DNN ACOUSTIC MODELS Pranay Dighe Afsaneh Asaei Hervé Bourlard Idiap Research Institute, Martigny, Switzerland École Polytechnique Fédérale de Lausanne (EPFL),

More information

Learning Methods for Fuzzy Systems

Learning Methods for Fuzzy Systems Learning Methods for Fuzzy Systems Rudolf Kruse and Andreas Nürnberger Department of Computer Science, University of Magdeburg Universitätsplatz, D-396 Magdeburg, Germany Phone : +49.39.67.876, Fax : +49.39.67.8

More information

Beyond the Pipeline: Discrete Optimization in NLP

Beyond the Pipeline: Discrete Optimization in NLP Beyond the Pipeline: Discrete Optimization in NLP Tomasz Marciniak and Michael Strube EML Research ggmbh Schloss-Wolfsbrunnenweg 33 69118 Heidelberg, Germany http://www.eml-research.de/nlp Abstract We

More information

Chinese Language Parsing with Maximum-Entropy-Inspired Parser

Chinese Language Parsing with Maximum-Entropy-Inspired Parser Chinese Language Parsing with Maximum-Entropy-Inspired Parser Heng Lian Brown University Abstract The Chinese language has many special characteristics that make parsing difficult. The performance of state-of-the-art

More information

Vowel mispronunciation detection using DNN acoustic models with cross-lingual training

Vowel mispronunciation detection using DNN acoustic models with cross-lingual training INTERSPEECH 2015 Vowel mispronunciation detection using DNN acoustic models with cross-lingual training Shrikant Joshi, Nachiket Deo, Preeti Rao Department of Electrical Engineering, Indian Institute of

More information