This invention relates generally to user-agent interaction systems and, more specifically, to a system and method for extracting utterances corresponding to a user problem statement in a conversation between a human agent and a user, where the user problem statement is extracted for purposes of downstream processing in a user-agent interaction system.
The majority of organizations, such as government, business, medical, and educational entities, etc., use some form of user-agent interaction systems to increase efficiency, reduce overhead costs, and minimize the human resources required to run the organization. In setting up a user-agent interaction system, many organizations use data collected by an interactive voice recognition (IVR) system to determine the range of user problems, compile reports and analysis for such problems, and use the reports and analysis in various downstream processes. Some users, however, are quite savvy and know that they can bypass the IVR system and speak to a human agent by speaking a key word such as “agent” or “representative,” in which case, the user is directly connected to a human agent, but the IVR system obtains erroneous or irrelevant data related to the user problem statement. The users who bypass the IVR system, however, still need to provide a user problem statement to the human agent upon connection so that the human agent can provide the necessary assistance. Therefore, there is a need for a system and method that can extract utterances corresponding to a user problem statement in the conversation between the human agent and the user, where the user problem statement is extracted for purposes of downstream processing in the user-agent interaction system.
The present disclosure describes a system, method, and computer program for extracting utterances corresponding to a user problem statement in a conversation between a human agent and a user, where the user problem statement is extracted for purposes of downstream processing in a user-agent interaction system. The method is performed by a computer system that includes servers, storage systems, networks, operating systems, and databases.
Unlike the typical interactive voice recognition (IVR) systems that collects user problem statements during the interaction between the user and the IVR system, the present invention extracts utterances corresponding to a user problem statement in a conversation between a human agent and a user. This is more challenging from a technical perspective. An IVR system typically prompts the user to provide his or her problem statement, so the system knows that whatever the user responds after the prompt would be considered the user problem statement. In the present invention, however, the conversation between the human agent and the user may not be standardized, so it may not be as readily apparent which utterance(s) is(are) the user problem statement. Instead, audio or text utterances (or a text transcription) are obtained from a natural language conversation between a human agent and a user, and a problem statement classifier is used to obtain machine-generated predictions as to whether each natural language utterance relates to a problem statement. In certain embodiments, the problem statement classifier includes an encoder that creates an utterance embedding for each utterance and a prediction module that uses the utterance embeddings to predict whether each utterance corresponds to a user problem statement.
In one embodiment, a method for extracting utterances corresponding to a user problem statement in a conversation between a human agent and a user, where the user problem statement is extracted for purposes of downstream processing in a user-agent interaction system, comprises the following steps:
The present disclosure describes a system, method, and computer program for extracting utterances corresponding to a user problem statement in a conversation between a human agent and a user, where the user problem statement is extracted for purposes of downstream processing in a user-agent interaction system. The method is performed by a computer system that includes servers, storage systems, networks, operating systems, and databases (“the system”).
The present invention relates to a system, method, and computer program for extracting utterances corresponding to a user problem statement in a conversation between a human agent and a user. The system obtains a set of utterances from a natural language conversation between a human agent and a user. The system uses a problem-statement classifier to obtain machine-generated predictions as to whether each natural language utterance in the set relates to a problem statement. The classifier is trained using a training data set that has utterances that are annotated as being part of a problem statement or not part of a problem statement. The system selects one or more utterances from the set as corresponding to a problem statement based on the predictions. The system provides the selected utterances to a downstream system for further processing.
Example implementations of the method are described in more detail with respect to
The system obtains a set of utterances from a natural language conversation between the human agent and the user (step 110). The utterances may contain a few words (e.g., one to three words) or they may contain many words (e.g., 20 words or more). In certain embodiments, the set of utterances are audio utterances. In certain embodiments, the set of utterances are text utterances. In certain embodiments, the set of utterances are audio utterances that are converted to text transcriptions by means of an audio speech recognition system. In certain embodiments, the set of utterances are from the first n seconds of the conversation between the human agent and the user (where n is a positive integer). In one example, n is 60 seconds. In certain embodiments, the set of text utterances are from the first n user turns in the conversation between the human agent and the user (where n is a positive integer). In one example, n is 5 user turns.
The system uses a problem statement classifier to obtain machine-generated predications as to whether each natural language utterance (i.e., audio utterance, text utterance, or text transcription) in the set relates to a problem statement (step 120). In certain embodiments, the problem statement classifier includes an encoder that creates an utterance embedding for each utterance and a prediction module that uses the utterance embeddings to predict whether each utterance corresponds to a user problem statement. An utterance embedding is a vector representation of the utterance (i.e., representing the utterance as a set of coordinates, or numerical values, in space). When the utterance embeddings for each utterance are plotted in space, the utterance embeddings of similar utterances appear close to one another and the utterance embeddings from dissimilar utterances appear further apart. This results in clusters of utterances that are similar to one another. The clusters may be further refined based on an analysis of the context. The clusters are used by the prediction module to make predictions on whether an utterance corresponds to a user problem statement.
In certain embodiments, the encoder is a neural network encoder. In one example, the neural network encoder is a pretrained Simple Recurrent Unit (SRU), which is described in U.S. Patent Publication No. 2019/0122101 A1 and in Perkins, Hugh, et al. “Dialog Intent Induction with Deep Multi-View Clustering.” Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing, 3-7 Nov. 2019, pp. 4016-4025, which are incorporated by reference as if fully disclosed herein. In certain embodiments, the encoder creates an utterance embedding by creating a Term Frequency-Inverse Document Frequency (TF-IDF) vector for each utterance, such that the collection of utterances forms a matrix. TF-IDF is a measure of originality of a word by comparing the number of times a word appears in a document with the number of documents (in a set of documents) the word appears in. In certain embodiments, the TF-IDF vector is created by applying a TF-IDF vectorizer algorithm to one or more n-grams of the utterance (where n is a positive integer). An n-gram is a contiguous sequence of n items from a given sample of text or speech. In one example, n has a range from one to three. A person skilled in the art would understand that other encoders may be used within the scope of the present invention. In certain embodiments, the prediction module uses logistic regression to make the predictions. In certain embodiments, the prediction module is a feed-forward neural network. A person skilled in the art would understand that other prediction modules may be used within the scope of the present invention.
In certain embodiments, the utterance embedding is based on the utterance and one or more context features. In other words, if the encoder is a neural network encoder, then the neural network encoder may create an utterance embedding based on the utterance and one or more context features. Similarly, if the encoder creates an utterance embedding as a TF-IDF vector, then the TF-IDF embedding may be based on the utterance and one or more context features. Examples of context features for an utterance embedding include: an utterance index value, all of the user words up to the time of the utterance, all of the agent words up to the time of the utterance, and a value indicative of whether the utterance is an agent prompt. In certain embodiments, these context features are additional input to the encoder (in addition to the utterance). In certain embodiments, the context features are concatenated to the utterance embedding. For example, an orthogonal polynomial with these feature values may be concatenated to the TF-IDF vector for the utterance. An agent-prompt classifier (i.e., a classifier trained to predict whether an utterance is an agent prompt) may be applied to the TF-IDF vector in order to identify which of the utterances in the set are agent prompts.
The system selects one or more utterances from the set as corresponding to a problem statement based on the predictions (step 130). In certain embodiments, selecting one or more utterances from the set as corresponding to a problem statement based on the predictions includes filtering out utterances corresponding to the human agent and identifying one or more user utterances having a greater-than-a threshold probability of corresponding to a problem statement. In one example, the threshold probability is 50%. A person skilled in the art would understand that the threshold can be higher or lower based on what would be optimal for the system. In certain embodiments, in response to the identified user utterances exceeding k number of utterances, the system selects the k utterances with the greatest probability of corresponding to a problem statement (where k is an integer greater than one). In one example, the value of k is two.
The system provides the selected utterance(s) to a downstream system for further processing (step 140). Examples of downstream systems include: an intent classifier, a sentiment classifier, a novelty detection system that detects novel user issues, a user intent discovery system that identifies new user intents, a handle time prediction system that predicts a handle time for each user call, etc. For example, if the handle time is longer (in the case of more complex or time-intensive issues), a supervisor or administrator of the user-agent interaction system is notified and encouraged to provide assistance to the human agents handling such issues. In certain embodiments, the downstream system is a user interface, and the selected utterance(s) are displayed in the user interface for an administrator to review and take action as needed. The downstream system may also be a user interface that displays proposed agent responses or other options based on the selected utterance(s) to a human agent. In certain embodiments, the downstream system uses the selected utterance(s) for conversation summaries, topic modeling, as a pass through, etc. In certain embodiments, the downstream system is used for flex concurrency. For example, in a system where agents handle more than one conversation at a time, the problem statements may be used to determine how many more conversations an agent would be able to handle.
The methods described with respect to
As will be understood by those familiar with the art, the invention may be embodied in other specific forms without departing from the spirit or essential characteristics thereof. Accordingly, the above disclosure is intended to be illustrative, but not limiting, of the scope of the invention, which is set forth in the following claims.
Number | Name | Date | Kind |
---|---|---|---|
5649060 | Ellozy et al. | Jul 1997 | A |
7003462 | Shambaugh | Feb 2006 | B2 |
7502741 | Finke et al. | Mar 2009 | B2 |
7633551 | Sullivan | Dec 2009 | B2 |
8068588 | Ramanathan | Nov 2011 | B2 |
8086458 | Finke et al. | Dec 2011 | B2 |
8131545 | Moreno et al. | Mar 2012 | B1 |
8230343 | Logan et al. | Jul 2012 | B2 |
8289366 | Greenwood et al. | Oct 2012 | B2 |
8620663 | Kondo | Dec 2013 | B2 |
8665863 | Silverman | Mar 2014 | B2 |
9313332 | Kumar | Apr 2016 | B1 |
10375237 | Williams | Aug 2019 | B1 |
10528866 | Dai et al. | Jan 2020 | B1 |
10554817 | Sullivan et al. | Feb 2020 | B1 |
10572534 | Readler | Feb 2020 | B2 |
11055055 | Fieldman | Jul 2021 | B1 |
11106442 | Hsiao et al. | Aug 2021 | B1 |
11138970 | Han et al. | Oct 2021 | B1 |
11238278 | Swanson et al. | Feb 2022 | B1 |
11487944 | Yang et al. | Nov 2022 | B1 |
11521639 | Shon | Dec 2022 | B1 |
20020116361 | Sullivan | Aug 2002 | A1 |
20030084300 | Koike | May 2003 | A1 |
20030154072 | Young | Aug 2003 | A1 |
20040002970 | Hur | Jan 2004 | A1 |
20050117879 | Sullivan | Jun 2005 | A1 |
20050151880 | Sullivan | Jul 2005 | A1 |
20050222036 | During et al. | Oct 2005 | A1 |
20070011012 | Yurick et al. | Jan 2007 | A1 |
20070206881 | Ashikaga | Sep 2007 | A1 |
20080092168 | Logan et al. | Apr 2008 | A1 |
20080107255 | Geva | May 2008 | A1 |
20100280828 | Fein | Nov 2010 | A1 |
20110238408 | Larcheveque | Sep 2011 | A1 |
20120140918 | Sherry | Jun 2012 | A1 |
20120278071 | Garland et al. | Nov 2012 | A1 |
20130039483 | Wolfeld | Feb 2013 | A1 |
20130071837 | Winters-Hilt et al. | Mar 2013 | A1 |
20130124984 | Kuspa | May 2013 | A1 |
20130129071 | Teitelman | May 2013 | A1 |
20130144674 | Kim | Jun 2013 | A1 |
20130191185 | Galvin | Jul 2013 | A1 |
20140136443 | Kinsey, II | May 2014 | A1 |
20140140497 | Ripa | May 2014 | A1 |
20140168354 | Clavel | Jun 2014 | A1 |
20140229866 | Gottlieb | Aug 2014 | A1 |
20140241519 | Watson | Aug 2014 | A1 |
20140258872 | Spracklen | Sep 2014 | A1 |
20150106091 | Wetjen et al. | Apr 2015 | A1 |
20150195220 | Hawker | Jul 2015 | A1 |
20150235655 | Dimitriadis | Aug 2015 | A1 |
20150278225 | Weiss | Oct 2015 | A1 |
20150281436 | Kumar | Oct 2015 | A1 |
20150281445 | Kumar | Oct 2015 | A1 |
20150286627 | Chang | Oct 2015 | A1 |
20150341322 | Levi | Nov 2015 | A1 |
20160078339 | Li et al. | Mar 2016 | A1 |
20160088153 | Wicaksono et al. | Mar 2016 | A1 |
20160117339 | Raskin et al. | Apr 2016 | A1 |
20160173693 | Spievak | Jun 2016 | A1 |
20160352907 | Raanani | Dec 2016 | A1 |
20160358321 | Xu et al. | Dec 2016 | A1 |
20170062010 | Pappu et al. | Mar 2017 | A1 |
20170187880 | Raanani | Jun 2017 | A1 |
20170300990 | Tanaka | Oct 2017 | A1 |
20180007204 | Klein | Jan 2018 | A1 |
20180007205 | Klein | Jan 2018 | A1 |
20180013699 | Sapoznik et al. | Jan 2018 | A1 |
20180096271 | Raanani | Apr 2018 | A1 |
20180124243 | Zimmerman | May 2018 | A1 |
20180130484 | Dimino, Jr. et al. | May 2018 | A1 |
20180165554 | Zhang et al. | Jun 2018 | A1 |
20180165723 | Wright | Jun 2018 | A1 |
20180204111 | Zadeh et al. | Jul 2018 | A1 |
20180301143 | Shastry et al. | Oct 2018 | A1 |
20190065515 | Raskin et al. | Feb 2019 | A1 |
20190103095 | Singaraju et al. | Apr 2019 | A1 |
20190188590 | Wu et al. | Jun 2019 | A1 |
20190189117 | Kumar | Jun 2019 | A1 |
20190190890 | Druker | Jun 2019 | A1 |
20190205748 | Fukuda et al. | Jul 2019 | A1 |
20190236204 | Canim | Aug 2019 | A1 |
20190251165 | Bachrach et al. | Aug 2019 | A1 |
20190278942 | Baudart | Sep 2019 | A1 |
20190287114 | Li | Sep 2019 | A1 |
20200097820 | Song et al. | Mar 2020 | A1 |
20200098370 | Arar | Mar 2020 | A1 |
20200099790 | Ma | Mar 2020 | A1 |
20200153969 | Dougherty | May 2020 | A1 |
20200184207 | Breslav | Jun 2020 | A1 |
20200184278 | Zadeh et al. | Jun 2020 | A1 |
20200218780 | Mei et al. | Jul 2020 | A1 |
20200227026 | Rajagopal | Jul 2020 | A1 |
20200242444 | Zhang | Jul 2020 | A1 |
20200265273 | Wei et al. | Aug 2020 | A1 |
20200279567 | Adlersberg | Sep 2020 | A1 |
20200344194 | Hosseinisianaki et al. | Oct 2020 | A1 |
20210074260 | Gopala et al. | Mar 2021 | A1 |
20210081613 | Begun et al. | Mar 2021 | A1 |
20210081615 | McRitchie | Mar 2021 | A1 |
20210089624 | Bealby-Wright | Mar 2021 | A1 |
20210103720 | Kim | Apr 2021 | A1 |
20210157834 | Sivasubramanian | May 2021 | A1 |
20210233520 | Sar Shalom | Jul 2021 | A1 |
20210233535 | Shir | Jul 2021 | A1 |
20210256417 | Kneller et al. | Aug 2021 | A1 |
20210295822 | Tomkins et al. | Sep 2021 | A1 |
20210304019 | Anderson | Sep 2021 | A1 |
20210304075 | Duong | Sep 2021 | A1 |
20210304747 | Haas | Sep 2021 | A1 |
20210304769 | Ye et al. | Sep 2021 | A1 |
20210319481 | Maheswaran | Oct 2021 | A1 |
20220093101 | Krishnan | Mar 2022 | A1 |
20220094789 | Lau | Mar 2022 | A1 |
20220197306 | Celia | Jun 2022 | A1 |
20220198229 | Onate et al. | Jun 2022 | A1 |
20220300885 | Yannam | Sep 2022 | A1 |
20220319514 | Hosomi | Oct 2022 | A1 |
20220383867 | Faulkner | Dec 2022 | A1 |
20220391233 | Decrop | Dec 2022 | A1 |
20220394348 | Hatambeiki | Dec 2022 | A1 |
20220398598 | Das | Dec 2022 | A1 |
Number | Date | Country |
---|---|---|
106569998 | Apr 2017 | CN |
2019076866 | Apr 2019 | WO |
Entry |
---|
Lample et al., “Neural Architectures for Named Entity Recognition”, In Proceedings of the North American Chapter of the Association for Computational Linguistics (NAACL), 2016. |
Lei, Tao et al., “Rationalizing Neural Predictions”, Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing, pp. 107-117, Nov. 2016. |
Lei, Tao et al., “Simple Recurrent Units for Highly Parallelizable Recurrence”, Proceedings of the Conference on Empirical Methods in Natural Language Processing, 2018. |
Li, P., et al. “An Attention Pooling based Representation Learning Method for Speech Emotion Recognition,” Proc. Interspeech 2018, pp. 3087-3091. |
Li, R., et al. “Dilated Residual Network with Multi-Head Self-Attention for Speech Emotion Recognition,” In ICASSP 2019-2019 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), IEEE, 2019, pp. 6675-6679. |
Li et al., “Efficient Hyperparameter Optimization and Infinitely Many Armed Bandits”, CoRR, 2016. |
Li, Jiwei et al., “Understanding Neural Networks through Representation Erasure”, 2016. |
Lin, Bingqian et al., “Jointly Deep Multi-View Learning for Clustering Analysis”, arXiv preprint arXiv:1808.06220, 2018. |
Lin, Junyang et al., “Learning When to Concentrate or Divert Attention: Self-Adaptive Attention Temperature for Neural Machine Translation”, Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pp. 2985-2990, Nov. 2018. |
Linton, Ian “How to Make a Customer Service Process Flowchart”, Sep. 26, 2017, pp. 1-8. |
Liu, Y., et al. “RoBERTa: A Robustly Optimized BERT Pretraining Approach,” 2019. |
Logeswaran, Lajanugen et al., “An Efficient Framework for Learning Sentence Representations”, In Proceedings of the International Conference on Learning Representations (ICLR) 2018. |
Lu, Z., et al. “Speech Sentiment Analysis via Pre-trained Features from End-to-End ASR Models,” In ICASSP 2020-2020 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), IEEE, 2020, pp. 7149-7153. |
Lugosch, L., et al. “Speech Model Pre-training for End-to-End Spoken Language Understanding,” 2019, pp. 814-818. |
Martins, Andre F.T., et al., “From Softmax to Sparsemax: A Sparse Model of Attention and Multi-Label Classification”, 2016. |
Mintz et al., “Distant Supervision for Relation Extraction Without Labeled Data”, In Proceedings of the Association for Computational Linguistics (ACL), 2009. |
Mirsamadi, S., et al. “Automatic Speech Emotion Recognition Using Recurrent Neural Networks with Local Attention,” In 2017 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pp. 2227-2231. |
Mohammad, S. “A Practical Guide to Sentiment Annotation: Challenges and Solutions,” In Proceedings of the 7th Workshop on Computational Approaches to Subjectivity, Sentiment and Social Media Analysis, 2016, pp. 174-179. |
Mrk{hacek over (s)}ić, Nikola et al., “Multi-Domain Dialog State Tracking Using Recurrent Neural Networks”, In Proceedings of the Association for Computational Linguistics (ACL) 2015. |
Parikh, Ankur P., et al., “A Decomposable Attention Model for Natural Language Inference”, 2016. |
Pennington et al., “GloVe: Global Vectors for Word Representation”, In Proceedings of Empirical Methods for Natural Language Processing (EMNLP), 2014. |
Peyré, Gabriel et al., “Computational Optimal Transport”, Foundations and Trends in Machine Learning, vol. 11, No. 5-6, pp. 355-607, 2019. |
Quattoni et al., “Conditional Random Fields for Object Recognition”, In Advances in Neural Information Processing Systems, 2005. |
Rabiner, Lawrence R., “A Tutorial on Hidden Markov Models and Selected Applications in Speech Recognition”, Proceedings of the IEEE, 1989. |
Sadikov, Eldar et al., “Clustering Query Refinements by User Intent”, In Proceedings of the International Conference on World Wide Web, 2010. |
Sanh, V., et al. “DistilBERT, a Distilled Version of BERT: Smaller, Faster, Cheaper and Lighter,” 2019. |
Shah, Darsh et al., “Adversarial Domain Adaptation for Duplicate Question Detection”, In Proceedings of Empirical Methods for Natural Language Processing (EMNLP) 2018. |
Sinkhorn, Richard et al., “Concerning Nonnegative Matrices and Doubly Stochastic Matrices”, Pacific Journal of Mathematics, vol. 21, No. 2, pp. 343-348, 1967. |
Siriwardhana, S., et al. “Jointly Fine-Tuning ”BERT-like“ Self Supervised Models to Improve Multimodal Speech Emotion Recognition,” Proc. Interspeech 2020, pp. 3755-3759. |
Snell, Jake et al., “Prototypical Networks for Few-Shot Learning”, In Neural Information Processing Systems (NIPS) 2017. |
Stubbs et al., “Annotating Longitudinal Clinical Narratives for De-identification: The 2014 i2b2/UTHealth Corpus”, Journal of Biomedical Informatics, 2015. |
Tian et al., “Contrastive Representation Distillation”, In Proceedings of the International Conference on Learning Representations (ICLR), 2020. |
Tzeng et al., “Adversarial Discriminative Domain Adaptation”, In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2017. |
Venkatesan et al., “A Novel Progressive Learning Technique for Multi-class Classification”, Neurocomputing, 2016. |
Wiegreffe, Sarah et al., “Attention is not not Explanation”, 2019. |
Williams, Jason, “A Belief Tracking Challenge Task for Spoken Dialog Systems”, In Proceedings of the NAACL-HLT Workshop on Future Directions and Needs in the Spoken Dialog Community, 2012. |
Williams, Jason et al., The Dialog State Tracking Challenge, In Proceedings of the SIGDIAL Conference, 2013. |
Wolf, T., et al. “Transformers: State-of-the-Art Natural Language Processing,” 2019. |
Wu, X., et al. “Speech Emotion Recognition Using Capsule Networks,” In ICASSP, IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE, 2019, pp. 6695-6699. |
Xie, Qizhe et al., “An Interpretable Knowledge Transfer Model for Knowledge Base Completion”, 2017. |
Xie, Y., et al. “Speech Emotion Classification Using Attention-Based LSTM,” IEEE/ACM Transactions on Audio, Speech, and Language Processing, vol. 27, No. 11, pp. 1675-1685, 2019. |
Xie, Junyuan et al., “Unsupervised Deep Embedding for Clustering Analysis”, In Proceedings of the International Conference on Machine Learning (ICML) 2016. |
Xu, Hongteng et al., “Gromov-Wasserstein Learning for Graph Matching and Node Embedding”, Proceedings of the 36th International Conference on Machine Learning, 2019. |
Yang, Bo et al., “Towards k-means-friendly Spaces: Simultaneous Deep Learning and Clustering”, In Proceedings of the International Conference on Machine Learning (ICML) 2016. |
Yang, Z., et al. “XLNET: Generalized Autoregressive Pretraining for Language Understanding,” 33rd Conference on Neural Information Processing Systems, 2019. |
Yang et al., “Design Challenges and Misconceptions in Neural Sequence Labeling”, In Proceedings of the 27th International Conference on Computational Linguistics (COLING), 2018. |
Yih et al., “Semantic Parsing via Staged Query Graph Generation: Question Answering with Knowledge Base”, In Proceedings of the Association for Computational Linguistics (ACL), 2015. |
Yu, Mo et al., “Rethinking Cooperative Rationalization: Introspective Extraction and Complement Control”, Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing, 2019. |
Zadeh, A., et al. “Multimodal Language Analysis in the Wild: CMU-MOSEI Dataset and Interpretable Dynamic Fusion Graph,” In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (vol. 1: Long Papers), 2018, pp. 2236-2246. |
Alvarez-Melis, David et al., “Towards Robust Interpretability with Self-Explaining Neural Networks”, 32nd Conference on Neural Information Processing Systems, 2018. |
Alvarez-Melis, David et al., “Gromov-Wasserstein Alignment of Word Embedding Spaces”, Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pp. 1881-1890, Nov. 2018. |
Bahdanau, Dzmitry et al., “Neural Machine Translation by Jointly Learning to Align and Translate”, International Conference on Learning Representations, 2015. |
Bastings, Jasmijn et al., “Interpretable Neural Predictions with Differentiable Binary Variables”, Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pp. 2963-2977, Aug. 2019. |
Bellare et al., “Learning Extractors from Unlabeled Text using Relevant Databases”, In Sixth International Workshop on Information Integration on the Web, 2007. |
Beryozkin et al., “A Joint Named-Entity Recognizer for Heterogeneous Tag sets Using a Tag Hierarchy”, In Proceedings of the Association for Computational Linguistics (ACL), 2019. |
Bickel, Steffen et al., “Multi-View Clustering”, In Proceedings of the IEEE International Conference on Data Mining (ICDM) 2004. |
Blitzer et al., “Domain Adaptation with Structural Correspondence Learning”, In Proceedings of Empirical Methods for Natural Language Processing (EMNLP), 2006. |
Bojanowski, Piotr, et al., “Enriching Word Vectors with Subword Information”, Transactions of the Association for Computational Linguistics, vol. 5, pp. 135-146, 2017. |
Bucilua et al., “Model Compression”, In Proceedings of Knowledge Discovery and Data Mining (KDD), 2006. |
Budzianowski, Pawel, et al., “MultiWOZ—A Large-Scale Multi-Domain Wizard-of-Oz Dataset for Task-Oriented Dialogue Modelling”, In Proceedings of Empirical Methods for Natural Language Processing (EMNLP) 2018. |
Chang, Shiyu et al., “A Game Theoretic Approach to Class-wise Selective Rationalization”, In Advances in Neural Information Processing Systems, 2019. |
Chaudhuri, Kamalika et al., “Multi-View Clustering via Canonical Correlation Analysis”, In Proceedings of the International Conference on Machine Learning (ICML) 2009. |
Chen et al., “Transfer Learning for Sequence Labeling Using Source Model and Target Data”, In Proceedings of the National Conference on Artificial Intelligence (AAAI), 2019. |
Chen, Jianbo et al., “Learning to Explain: An Information-Theoretic Perspective on Model Interpretation”, Proceedings of the 35th International Conference on Machine Learning, 2018. |
Chen, Liqun et al., “Adversarial Text Generation via Feature-Mover's Distance”, 32nd Conference on Neural Information Processing Systems, 2018. |
Cheung, Jackie Chi Kit et al., “Sequence Clustering and Labeling for Unsupervised Query Intent Discovery”, In Proceedings of the ACM International Conference on Web Search and Data Mining (WSDM) 2012. |
Cho, J., et al. “Deep Neural Networks for Emotion Recognition Combining Audio and Transcripts,” Proc. Interspeech 2018, pp. 247-251. |
Cieri, C., et al. “The Fisher Corpus: a Resource for the Next Generations of Speech-to-Text” In LREC, vol. 4, 2004, pp. 69-71. |
Ciresan, Dan et al., “Multi-col. Deep Neural Networks for Image Classification”, In IEEE Conference on Computer Vision and Pattern Recognition, 2012. |
Cuturi, Marco “Sinkhorn Distances: Lightspeed Computation of Optimal Transportation Distances”, In Advances in Neural Information Processing Systems, pp. 2292-2300, 2013. |
David et al., “Analysis of Representations for Domain Adaptation”, In Neural Information Processing Systems (NIPS), 2007. |
Deepak, Padmanabhan “Mixkmeans: Clustering Question-Answer Archives”, In Proceedings of Empirical Methods for Natural Language Processing (EMNLP) 2016. |
Devlin, J., et al. “BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding,” 2018. |
Ganin et al., “Unsupervised Domain Adaptation by Backpropagation”, In Proceedings of the International Conference on Machine Learning (ICML), 2015. |
Glorot et al., “Domain Adaptation for Large-Scale Sentiment Classification: A Deep Learning Approach”, In Proceedings of the International Conference on Machine Learning (ICML), 2011. |
Greenberg et al., “Marginal Likelihood Training of BiLSTM-CRF for Biomedical Named Entity Recognition from Disjoint Label Sets”, In Proceedings of Empirical Methods for Natural Language Processing (EMNLP), 2018. |
Haghani, P., et al. “From Audio to Semantics: Approaches to End-to-End Spoken Language Understanding,” In 2018 IEEE Spoken Language Technology Workshop (SLT), IEEE, 2018, pp. 720-726. |
Han, K. J., et al. “Multistream CNN for Robust Acoustic Modeling,” 2020. |
Haponchyk, Iryna et al., “Supervised Clustering of Questions into Intents for Dialog System Applications”, In Proceedings of Empirical Methods for Natural Language Processing (EMNLP) 2018. |
Harvard Business Review Analytic Services, “Real Time Analytics”, Harvard Business Review, Jun. 4, 2018. |
Hemphill, Charles T., et al., “The Atis Spoken Language Systems Pilot Corpus”, In Proceedings of the Workshop on Speech and Natural Language, 1990. |
Henderson, Matthew et al., “The Second Dialog State Tracking Challenge”, In Proceedings of the Annual Meeting of the Special Interest Group on Discourse and Dialogue (SIGDIAL) 2014. |
Henderson, Matthew et al., “Word-Based Dialog State Tracking with Recurrent Neural Networks”, In Proceedings of the 15th Annual Meeting of the Special Interest Group on Discourse and Dialogue (SIGDIAL) 2014. |
Hinton et al., “Distilling the Knowledge in a Neural Network”, 2015. |
Hooker, Andrew “Improving the State Machine of Your Business”, Nov. 15, 2018, pp. 1-11. |
Huang et al., “Learning a Unified Named Entity Tagger From Multiple Partially Annotated Corpora For Efficient Adaptation”, In Proceedings of the Conference on Natural Language Learning (CoNLL), 2019. |
Jain, Sarthak et al., “Attention is not Explanation”, 2019. |
Jansen, Bernard et al., “Classifying the User Intent of Web Queries Using k-means Clustering”, Internet Research, vol. 20, No. 5, 2010. |
Jeon, Jiwoon, “Finding Similar Questions in Large Question and Answer Archives”, In Proceedings of the ACM International Conference on Information and Knowledge Management (CIKM) 2005. |
Jie et al., “Better Modeling of Incomplete Annotations for Named Entity Recognition”, In Proceedings of the North American Chapter of the Association for Computational Linguistics (NAACL), 2019. |
Kanaan-Izquierdo, Samir et al., “Multiview and Multifeature Spectral Clustering Using Common Eigenvectors”, Pattern Recognition Letters, 102, 2018. |
Kim, E., et al. “DNN-Based Emotion Recognition Based on Bottleneck Acoustic Features and Lexical Features,” In ICASSP 2019-2019 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), IEEE, 2019, pp. 6720-6724. |
Kim, Seokhwan et al., “The Fifth Dialog State Tracking Challenge”, In Proceedings of the IEEE Spoken Language Technology Workshop (SLT) 2016. |
Kim et al., “Sequence-Level Knowledge Distillation”, In Proceedings of Empirical Methods for Natural Language Processing (EMNLP), 2016. |
Kim, S., et al. “Joint CTC-Attention Based End-to-End Speech Recognition Using Multi-Task Learning,” In 2017 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), IEEE, 2017, pp. 4835-4839. |
Kumar, Abhishek et al., “Co-regularized Multi-View Spectral Clustering”, In Neural Information Processing Systems (NIPS) 2011. |
Kuo, et al. “End-to-End Spoken Language Understanding Without Full Transcripts,” 2020. |
Kusner, Matt J., et al., “From Word Embeddings To Document Distances”, Proceedings of the 32nd International Conference on Machine Learning, vol. 37, ICML'15, pp. 957-966, JMLR.org, 2015. |
Lafferty et al., “Conditional Random Fields: Probabilistic Models for Segmenting and Labeling Sequence Data”, In Proceedings of the International Conference on Machine Learning (ICML), 2001. |