|
{ |
|
"paper_id": "2021", |
|
"header": { |
|
"generated_with": "S2ORC 1.0.0", |
|
"date_generated": "2023-01-19T14:15:31.230778Z" |
|
}, |
|
"title": "Optimizing NLU Reranking Using Entity Resolution Signals in Multi-domain Dialog Systems", |
|
"authors": [ |
|
{ |
|
"first": "Tong", |
|
"middle": [], |
|
"last": "Wang", |
|
"suffix": "", |
|
"affiliation": {}, |
|
"email": "" |
|
}, |
|
{ |
|
"first": "Jiangning", |
|
"middle": [], |
|
"last": "Chen", |
|
"suffix": "", |
|
"affiliation": {}, |
|
"email": "" |
|
}, |
|
{ |
|
"first": "Mohsen", |
|
"middle": [], |
|
"last": "Malmir", |
|
"suffix": "", |
|
"affiliation": {}, |
|
"email": "[email protected]" |
|
}, |
|
{ |
|
"first": "Shuyan", |
|
"middle": [], |
|
"last": "Dong", |
|
"suffix": "", |
|
"affiliation": {}, |
|
"email": "[email protected]" |
|
}, |
|
{ |
|
"first": "Xin", |
|
"middle": [], |
|
"last": "He", |
|
"suffix": "", |
|
"affiliation": {}, |
|
"email": "" |
|
}, |
|
{ |
|
"first": "Han", |
|
"middle": [], |
|
"last": "Wang", |
|
"suffix": "", |
|
"affiliation": {}, |
|
"email": "" |
|
}, |
|
{ |
|
"first": "Chengwei", |
|
"middle": [], |
|
"last": "Su", |
|
"suffix": "", |
|
"affiliation": {}, |
|
"email": "[email protected]" |
|
}, |
|
{ |
|
"first": "Yue", |
|
"middle": [], |
|
"last": "Liu", |
|
"suffix": "", |
|
"affiliation": {}, |
|
"email": "" |
|
}, |
|
{ |
|
"first": "Yang", |
|
"middle": [], |
|
"last": "Liu", |
|
"suffix": "", |
|
"affiliation": {}, |
|
"email": "[email protected]" |
|
} |
|
], |
|
"year": "", |
|
"venue": null, |
|
"identifiers": {}, |
|
"abstract": "In dialog systems, the Natural Language Understanding (NLU) component typically makes the interpretation decision (including domain, intent and slots) for an utterance before the mentioned entities are resolved. This may result in intent classification and slot tagging errors. In this work, we propose to leverage Entity Resolution (ER) features in NLU reranking and introduce a novel loss term based on ER signals to better learn model weights in the reranking framework. In addition, for a multi-domain dialog scenario, we propose a score distribution matching method to ensure scores generated by the NLU reranking models for different domains are properly calibrated. In offline experiments, we demonstrate our proposed approach significantly outperforms the baseline model on both singledomain and cross-domain evaluations.", |
|
"pdf_parse": { |
|
"paper_id": "2021", |
|
"_pdf_hash": "", |
|
"abstract": [ |
|
{ |
|
"text": "In dialog systems, the Natural Language Understanding (NLU) component typically makes the interpretation decision (including domain, intent and slots) for an utterance before the mentioned entities are resolved. This may result in intent classification and slot tagging errors. In this work, we propose to leverage Entity Resolution (ER) features in NLU reranking and introduce a novel loss term based on ER signals to better learn model weights in the reranking framework. In addition, for a multi-domain dialog scenario, we propose a score distribution matching method to ensure scores generated by the NLU reranking models for different domains are properly calibrated. In offline experiments, we demonstrate our proposed approach significantly outperforms the baseline model on both singledomain and cross-domain evaluations.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Abstract", |
|
"sec_num": null |
|
} |
|
], |
|
"body_text": [ |
|
{ |
|
"text": "In spoken dialog systems, natural language understanding (NLU) typically includes domain classification (DC), intent classification (IC), and named entity recognition (NER) models. After NER extracts entity mentions, an Entity Resolution (ER) component is used to resolve the ambiguous entities. For example, NLU interprets an utterance to Alexa (or Siri) \"play hello by adele\" as in the 'Music' domain, 'play music' intent, and labels \"hello\" as a song name, \"adele\" as an artist name. ER queries are then formulated based on such a hypothesis to retrieve entities in music catalogs. Often times NLU can generate a list of hypotheses for DC, IC, and NER, and then a reranking model uses various confidence scores to rerank these candidates (Su et al., 2018) .", |
|
"cite_spans": [ |
|
{ |
|
"start": 741, |
|
"end": 758, |
|
"text": "(Su et al., 2018)", |
|
"ref_id": "BIBREF8" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "Since ER is performed after NLU models, the current NLU interpretation of the utterance is limited to the raw text rather than its underlying entities. Even in NLU reranking (Su et al., 2018) , only * The first two authors have equal contribution DC, IC, and NER confidence scores were used, and as a result, the top hypothesis picked by NLU reranking might not be the best interpretation of the utterance. For example, in the absence of entity information, \"the beatles\" in the utterance \"play with the beatles\" is interpreted as an artist name. If the reranker could search the ER catalog, it would promote the hypothesis that has \"with the beatles\" as an album name. Such NLU errors may propagate to ER and downstream components and potentially lead to end-customer friction.", |
|
"cite_spans": [ |
|
{ |
|
"start": 174, |
|
"end": 191, |
|
"text": "(Su et al., 2018)", |
|
"ref_id": "BIBREF8" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "In this work, we thus propose to incorporate ER features in the NLU reranking model, called NLU-ER reranking. For a domain, we use its corresponding catalogs to extract entity related features for NLU reranking for this domain. To enhance ER feature learning, we add a novel loss term when an NER hypothesis cannot be found in the catalog. One additional challenge arises in the multi-domain systems. In large-scale NLU systems, one design approach is to modularize the system as per the concept of domains (such as Music, Video, Smart Home), and each domain has its own NLU (DC, IC, NER) and reranking models that are trained independently. Under this scheme, each domain's NLU reranking plays an important role in both indomain and cross-domain reranking, since it not only ranks hypotheses within a domain to promote the correct hypothesis, but also produces ranking scores that need to be comparable across all different domains. In (Su et al., 2018) , the scores for the hypotheses from different domains are calibrated through training on the same utterance data with similar models . However, we may only use NLU-ER reranking for some domains (due to reasons such as lack of entity catalog, different production launch schedule, etc.), and the scores from such rerankers may no longer be comparable with other domains using the original reranker model. To mitigate this issue, we introduce a score distribution matching method to adjust the score distributions.", |
|
"cite_spans": [ |
|
{ |
|
"start": 937, |
|
"end": 954, |
|
"text": "(Su et al., 2018)", |
|
"ref_id": "BIBREF8" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "We evaluate our NLU-ER reranking model on multiple data sets, including synthetic and real dialog data, and for both single domain and crossdomain setups. Our results show improved NLU performance compared to the baseline, and the improvement is contributed to our proposed ER features, loss term, and score matching method.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "Early reranking approaches in NLU systems use a single reranker for all the domains. Robichaud et al. (Robichaud et al., 2014) proposed a system for multi-domain hypothesis ranking (HR) that uses LambdaMART algorithm (Burges et al., 2007) to train a ranking system. The features in the ranking system include confidence scores for intents and slots, relevant database hits and contextual features that embed relationship to previous utterances. The authors showed improved accuracy in top domains using both non-contextual and contextual features. Crook et al. adapted a similar reranking scheme for multi-language hypothesis ranking (Crook et al., 2015) . The set of features in the reranker include binary presence variables, for example presence of an intent, coverage of tagged entities and contextual features. They adapted the LambdaMART algorithm to train a Gradient Boosted Decision Trees model (Friedman, 2001) for cross language hypothesis ranking, and demonstrated comparable performance of the cross language reranker to the language-specific reranker. These models did not explicitly use ER signals for reranking. In addition, reranking is done across domains. Such single reranker approach is not practical in NLU systems with a large set of independent domains. In contrast, our approach emphasizes domain independence, allowing reranking to be performed for each domain independently. Furthermore, we rely on ER signal as a means to improve reranking.", |
|
"cite_spans": [ |
|
{ |
|
"start": 85, |
|
"end": 126, |
|
"text": "Robichaud et al. (Robichaud et al., 2014)", |
|
"ref_id": "BIBREF7" |
|
}, |
|
{ |
|
"start": 217, |
|
"end": 238, |
|
"text": "(Burges et al., 2007)", |
|
"ref_id": "BIBREF1" |
|
}, |
|
{ |
|
"start": 634, |
|
"end": 654, |
|
"text": "(Crook et al., 2015)", |
|
"ref_id": "BIBREF2" |
|
}, |
|
{ |
|
"start": 903, |
|
"end": 919, |
|
"text": "(Friedman, 2001)", |
|
"ref_id": "BIBREF3" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Related Work", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "To the best of our knowledge, the most related work to ours is Su et al. (Su et al., 2018) , which proposed a re-ranking scheme to maximize the accuracy of the top hypothesis while maintaining the independence of different domains through implicit calibration. Each domain has its NLU reranker, and the scores for the hypotheses from reranking are compared across all the domains to pick the best hypothesis. The feature vector for each reranker is composed of intent, domain and slot tagging scores from the corresponding domain. Additionally, a cross entropy loss term is used to ensure calibra-tion across domains. In a series of experiments, they demonstrated improvement of semantic understanding. Our work is an extension of that work as we utilize ER signals, in addition to the DC, IC, and NER scores, and introduce a new loss term to improve the reranking accuracy.", |
|
"cite_spans": [ |
|
{ |
|
"start": 73, |
|
"end": 90, |
|
"text": "(Su et al., 2018)", |
|
"ref_id": "BIBREF8" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Related Work", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "To resolve the score non-comparable problem in a multi-domain system, traditional calibration methods utilize Platt Scaling or Isotonic Regression to calibrate the prediction distribution into a uniform distribution Elkan, 2001, 2002; Platt et al., 1999; Niculescu-Mizil and Caruana, 2005; Wilks, 1990 ). However, this does not work in our scenario since the data in different domains are imbalanced, which causes domains with big traffic to have lower confidence scores. Instead of using probability calibration methods, we propose a solution based on power transformation to match the prediction score distribution back to the original score distribution, thus making the scores comparable even after ER information is added to NLU reranking.", |
|
"cite_spans": [ |
|
{ |
|
"start": 216, |
|
"end": 234, |
|
"text": "Elkan, 2001, 2002;", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 235, |
|
"end": 254, |
|
"text": "Platt et al., 1999;", |
|
"ref_id": "BIBREF6" |
|
}, |
|
{ |
|
"start": 255, |
|
"end": 289, |
|
"text": "Niculescu-Mizil and Caruana, 2005;", |
|
"ref_id": "BIBREF5" |
|
}, |
|
{ |
|
"start": 290, |
|
"end": 301, |
|
"text": "Wilks, 1990", |
|
"ref_id": "BIBREF9" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Related Work", |
|
"sec_num": "2" |
|
}, |
|
{ |
|
"text": "The baseline NLU reranking model is implemented as a linear function that predicts the ranking score from DC, IC, and NER confidence scores. We augment its feature vector using ER signals and introduce a novel loss term that penalizes the hypotheses that do not have a matched entity in the catalog. Similar to (Su et al., 2018) , we tested using a neural network model for reranking, but observed no improvements, therefore we focus on the linear model.", |
|
"cite_spans": [ |
|
{ |
|
"start": 311, |
|
"end": 328, |
|
"text": "(Su et al., 2018)", |
|
"ref_id": "BIBREF8" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Reranking Model", |
|
"sec_num": "3" |
|
}, |
|
{ |
|
"text": "The features used in the baseline NLU reranker include scores for DC (d), IC (i), NER (n) hypotheses, and ASR scores that are obtained from upstream components and used for all the domains. The additional ER features used in NLU-ER reranker are extracted and computed from the ER system, and can be designed differently for individual domains. For example, in this work, for the Music domain, ER features we use are aggregated from NER slot types such as: SongName, ArtistName, and the ER features are defined as:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "ER Features in Reranking", |
|
"sec_num": "3.1" |
|
}, |
|
{ |
|
"text": "ER success e s i : if a hypothesis contains a slot s i that is successfully matched by any of the ER catalogs, this feature is set to 1, otherwise 0. ER success feature serves as a positive signal to pro-mote the corresponding hypothesis score. ER no match m s i : if a slot s i in a hypothesis does not have any matched entities in the ER catalogs, this feature value is 1, otherwise 0. ER no match feature serves as a negative signal to penalize the hypothesis score. We find 'ER no match' is a stronger signal than 'ER success' because over 90% of the time, ER no match implies the corresponding hypothesis does not agree with the ground truth.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "ER Features in Reranking", |
|
"sec_num": "3.1" |
|
}, |
|
{ |
|
"text": "Similarity feature l s i : this feature is nonzero only if the ER success feature e s i is 1. In each catalog, a lexical or semantic similarity score between the slot value and every resolved entity is computed, and the maximum score among them is selected as the feature value. This indicates the confidence of the ER success signal.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "ER Features in Reranking", |
|
"sec_num": "3.1" |
|
}, |
|
{ |
|
"text": "Not in Gazetteer: this feature is set to 1 when ER features are not in the gazetteer (neither ER success nor no match), otherwise 0. We will discuss the gazetteer in the next section.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "ER Features in Reranking", |
|
"sec_num": "3.1" |
|
}, |
|
{ |
|
"text": "Since NLU and reranking happen before ER, in runtime retrieving ER features from large catalogs for NLU reranking is not trivial. Therefore we propose to cache the ER signals offline and make it accessible in NLU reranking in the form of a gazetteer. To make the best use of the allocated amount of runtime memory, we design a gazetteer selection algorithm to include the most relevant and effective ER features in the gazetteer.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "ER Gazetteer Selection", |
|
"sec_num": "3.2" |
|
}, |
|
{ |
|
"text": "We define Frequent Utterance Database (FUD) as the live traffic data where the same utterance has been spoken by more than 10 unique customers. To formalize the selection procedure, we define outperforming and underperforming utterances by friction (e.g., request cannot be handled) rate f r and 30s playback queue (playback \u2265 30s) rate qr. For all FUD utterances in a given period, an utterance u is defined as outperforming if f r(u) \u2264 \u00b5 f r \u2212\u03bb 1 * \u03c3 f r and qr(u) \u2265 \u00b5 qr + \u03bb 2 * \u03c3 qr , where \u00b5 and \u03c3 are the mean and standard deviation, \u03bb 1 and \u03bb 2 are hyperparameters. Underperforming utterances are defined likewise.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "ER Gazetteer Selection", |
|
"sec_num": "3.2" |
|
}, |
|
{ |
|
"text": "The detailed gazetteer selection algorithm is described in Algorithm 1. u h 1 , ..., u hn denote n-best NLU hypotheses of the utterance u. The idea is to encourage the successful hypotheses and avoid the friction hypotheses based on the historical data. For instance, if u is an underperforming utterance and u h 1 is ER_NO_MATCH, we want to penalize u h 1 to down-rank it, and promote other hypotheses u h i (i = 1) that receive the ER_SUCCESS signal. For the utterance hypotheses that are not selected in the gazetteer, we will use the Not_in_gazetteer (NG) feature.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "ER Gazetteer Selection", |
|
"sec_num": "3.2" |
|
}, |
|
{ |
|
"text": "For an utterance, the hypothesis score y is defined as the following:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "NLU-ER Reranker", |
|
"sec_num": "3.3" |
|
}, |
|
{ |
|
"text": "y = W G G + s i \u2208S 1 slot=s i (W s i ER s i ) + 1 N G w d (1)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "NLU-ER Reranker", |
|
"sec_num": "3.3" |
|
}, |
|
{ |
|
"text": "The first part in (1) is the baseline NLU reranker model:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "NLU-ER Reranker", |
|
"sec_num": "3.3" |
|
}, |
|
{ |
|
"text": "( ", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "NLU-ER Reranker", |
|
"sec_num": "3.3" |
|
}, |
|
{ |
|
"text": "2) y = W G G where G = [g 1 , g 2 , . . . , g p ] T is the NLU general feature vector, W G = [w 1 , w 2 , . . . , w p ]", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "NLU-ER Reranker", |
|
"sec_num": "3.3" |
|
}, |
|
{ |
|
"text": "i = [w s i 1 , w s i 2 , . . . , w s i p ]", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "NLU-ER Reranker", |
|
"sec_num": "3.3" |
|
}, |
|
{ |
|
"text": "is the corresponding weight vector. If an utterance in Music only contains SongName slot s 1 , then y = W G G + W s 1 ER s 1 , the rest of the terms are all 0s. If an utterance does not have any ER features from all the defined slot types, y = W G G + w d . w d serves as the default ER feature value to the reranker when no corresponding ER features are found in the gazetteer described above. Its value is also learned during the model training.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "NLU-ER Reranker", |
|
"sec_num": "3.3" |
|
}, |
|
{ |
|
"text": "We use SemER (Semantic Error Rate) (Su et al., 2018) to evaluate NLU performance. For a hypothesis, SemER is defined as E/T , where E is the total number of substitution, insertion, deletion errors of the slots, T is the total number of slots.", |
|
"cite_spans": [ |
|
{ |
|
"start": 35, |
|
"end": 52, |
|
"text": "(Su et al., 2018)", |
|
"ref_id": "BIBREF8" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "One choice of the loss function is the combination of expected SemER loss and expected cross entropy loss (Su et al., 2018) . The loss function L u of an utterance is defined as:", |
|
"cite_spans": [ |
|
{ |
|
"start": 106, |
|
"end": 123, |
|
"text": "(Su et al., 2018)", |
|
"ref_id": "BIBREF8" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "L u = k 1 S u + k 2 C u (3)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "where S u is the expected SemER loss:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "S u = N i p i \u00d7 SemER i ,", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "and C u is the expected cross entropy loss:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "C u = N i p i \u00d7 [\u2212t i log r i \u2212 (1 \u2212 t i ) log(1 \u2212 r i )], where r i = 1 1+e \u2212y i , p i = e y i 5 j e y j , t i = (SemER i == 0)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": ", N is the number of hypotheses in utterance u.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "Since our analysis showed that ER_NO_MATCH is a stronger signal and we expect the top hypothesis to get ER hits, we add a penalty term N u to the loss function to penalize the loss when the 1-best hypothesis gets ER_NO_MATCH.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "Let r j = max i (r i ) be the best score in the current training step, and j the index for the current best hypothesis. Then no match loss term is defined as:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "N u = \u2212e j \u00d7 log(1 \u2212 r j )", |
|
"eq_num": "(4)" |
|
} |
|
], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "where", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "e i = #(slot er_no_match ) #(slot)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": ". It is the ratio of the slots with ER_NO_MATCH to all the slots in the i th hypothesis, and if no slot gets ER_NO_MATCH, the loss term is zero. Then the overall loss function is updated as:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "L u = k 1 S u + k 2 C u + k 3 N u", |
|
"eq_num": "(5)" |
|
} |
|
], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "N u will penalize more the hypothesis that has a high score but gets no ER hits. k 1,2,3 are the hyperparameters, L u is the final loss term for NLU-ER Reranker.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "In our experiments, we observed that the weights are higher for the ER no match feature, and the model with the new loss term had a better performance under in-domain setup, which is as expected. Also, giving higher weight to 'ER no match' decreases the confidence scores generated by a domain NLU-ER reranker, which can help with the cross domain calibration problem. We will discuss how to ensure comparable scores in the next section.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Loss Function", |
|
"sec_num": "3.4" |
|
}, |
|
{ |
|
"text": "Before adding the ER features, the reranking scores are calibrated through training on the same utterance data with similar models. However, adding the ER features in NLU reranking for a single domain may lead to incomparable scores with other domains. Using the loss function in Eq (3), we have the following theorem:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Theorem 4.1. Under the loss function in Eq (3), assuming hypothesis 1 is the ground truth, and 0 = SemER 1 < SemER 2 < SemER 3 < SemER 4 < SemER 5 , with a uniform score assumption 5 j e y j = c; Eq (1) will obtain a higher positive label hypothesis score and a lower negative label score than Eq (2).", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "Proof. For the expected SemER loss S u , since it is the linear combination of SemER i , the solution of the minimization problem will be: p 1 \u2192 1, p 2 = p 3 = p 4 = p 5 \u2192 0. This leads to:y 1 \u2192 \u221e, y 2 = y 3 = y 4 = y 5 \u2192 \u2212\u221e. Then for the expected cross entropy loss C u , let x i = e y i , the minimization of C u becomes:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "min \u2212x 1 log x 1 1 + x 1 \u2212 j =1 x j log 1 1 + x j = min \u2212I 1 \u2212I 2 .", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "The first part (I 1 ) is monotonically increasing, while the second part (I 2 ) is monotonically decreasing when x j > 0. This also leads to: y 1 \u2192 \u221e, y 2 = y 3 = y 4 = y 5 \u2192 \u2212\u221e. Thus, solving the minimization problem minL u is equivalent to solving the linear system:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "F + w = y1 + F \u2212 w = \u2212y1 \u2212", |
|
"eq_num": "(6)" |
|
} |
|
], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "when y \u2192 \u221e associated with the given loss in Eq (3), where F + is the feature matrix for the positive labels, F \u2212 is the feature vector for the negative labels, w is the weight vector we need to solve, and 1 + , 1 \u2212 are the unit vectors with the same dimension as the number of positive samples and negative samples respectively. We can rewrite Eq (6) into: F w = y, and its solution will be the projection associated with the loss in Eq (3) of y onto the solution space spanned by the column vectors of matrix F . Now define this projection as P F ( y). For the feature matrix of the NLU model in Eq (2), we have F N = G, and for the feature matrix of NLU-ER model in Eq (1) we have", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "F ER = [G, ER s 1 , ER s 2 , . . . , ER sq , 1 def ault ]. Since F N", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "is the submatrix of F ER , we have spanF N \u2282 spanF ER , thus:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "P F N ( y) \u2264 P F ER ( y)", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "In Theorem 4.1, we show that the candidate hypothesis from a more complicated model will be more likely to have a higher score than the domains using the original reranker model. Thus the domains using the NLU-ER reranker are no longer comparable to the domains using the original model. We observed this scenario in our experiments empirically. When we only experiment with Music domain, it will generate higher confidence scores and have more false positives.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "To solve this problem, since we would like the confidence scores for each domain to have stabilized variance and minimized skewness, we propose to use power transformation, which is able to map data from any distribution to an approximately standard Gaussian distribution. In our case, the confidence scores from Eq (1) might be zero or negative, thus we consider the Yeo-Johnson transformation with \u03bb = 0 and \u03bb = 2:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "x (\u03bb) i = [(x i + 1) \u03bb \u2212 1]/\u03bb if x i \u2265 0, \u2212[(\u2212x i +1) 2\u2212\u03bb \u22121] 2\u2212\u03bb if x i < 0,", |
|
"eq_num": "(7)" |
|
} |
|
], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "We have the inverse function:", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "x (\u03bb) i = (\u03bbx i + 1) 1 \u03bb \u2212 1 if x i \u2265 0, 1 \u2212 [1 \u2212 (2 \u2212 \u03bb)x i ] 1 2\u2212\u03bb if x i < 0,", |
|
"eq_num": "(8)" |
|
} |
|
], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "where parameter \u03bb is determined through maximum likelihood estimation. The idea is to first map both the NLU reranker model scores and the NLU-ER reranker scores to a standard Gaussian distribution and obtain \u03bb N LU and \u03bb N LU \u2212ER . Then to calculate a new score from the NLU-ER reranker, we first use Eq (7) to transform the score into a standard Gaussian score with \u03bb = \u03bb N LU \u2212ER , followed by Eq (8) to transform the standard Gaussian score back into the original NLU reranker scores with \u03bb = \u03bb N LU . Notice that when \u03bb > 0, both Eq (7) and (8) are monotonic functions, thus the mapping method can only change the score distribution while maintaining the in-domain ranking order.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Score Distribution Matching", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "We use the following data sets for training and evaluation: Annotation Data (AD): It contains around 1 million annotated utterances from internal traffic. Training and testing split is 50:50. For testing, we further evaluate two different conditions: (i) 'AD All' using utterances from all domains for crossdomain evaluation. (ii) 'AD Music', 'AD Video', 'AD LS' using utterances from the Music domain, Video Domain and Local Search domain, respectively, for in-domain evaluation.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Experimental Setup", |
|
"sec_num": "5.1" |
|
}, |
|
{ |
|
"text": "Synthetic Data (SD): These are synthetically generated ambiguous utterances used for in-domain evaluation. For Music and Video domains, utterances are in the form of \"play X\". Slot type of X could be ArtistName, SongName, AlbumName, VideoName, etc. X is an actual entity sampled from the corresponding ER song, video, artist, or album catalogs, and it is not in the training data, such that the model cannot infer the slot by simply \"memorizing\" it from the training data. We only report SongName (10K data) results in Music domain, and VideoName results in Video domain, due to the space limitation. For Local Search domain, utterances are in the form of \"give me the direction to X\", slot type of X could be PlaceName, DestinationName, etc. Note this data set is more ambiguous than the above one from real traffic in that \"X\" has multiple interpretations, whereas in real traffic users often add other words to help disambiguate, for example 'play music ...'.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Experimental Setup", |
|
"sec_num": "5.1" |
|
}, |
|
{ |
|
"text": "We initialize the general feature weights to the same weights used in the baseline model. ER feature weights are set to smaller values (3 times less than the general feature weights). We find the expected SemER loss is less effective, so we set k 1 = 0.01, k 2 = 0.9, k 3 = 0.1. Besides, we use Adam optimizer (Kingma and Ba, 2014) with a learning rate of 0.0001 and train the model for 10 epochs. Table 1 presents the NLU-ER reranker results for cross-domain (AD All) and in-domain (AD Music, SD) settings. All the results are the SemER metric relative improvements compared to the baseline reranker. We have DC, IC, NER scores as the general NLU features. NLU-ER reranker uses additional ER features: ER success, no match, and lexical similarity of different slot types, and the gazetteer selection algorithm is applied to retrieve the ER features. For the in-domain results, NLU-ER reranker has statistically significant improvement on both AD and SD. The improvement is more substantial on SD data, over 20%, which indicates ER features are more helpful when the utterances have ambiguity. Note there is some degradation in cross domain results on AD All when NLU-ER is used, due to the non-comparable score issue. After adding the loss term for ER no match feature, we observed additional improvements on both the in-domain and cross-domain settings.", |
|
"cite_spans": [], |
|
"ref_spans": [ |
|
{ |
|
"start": 398, |
|
"end": 405, |
|
"text": "Table 1", |
|
"ref_id": "TABREF0" |
|
} |
|
], |
|
"eq_spans": [], |
|
"section": "Experimental Setup", |
|
"sec_num": "5.1" |
|
}, |
|
{ |
|
"text": "As discussed earlier, because the scores from the baseline model are already well calibrated across domains, we use Yeo-Johnson transformation to match the domain score distribution back into the baseline score distribution. For Music domain, we use maximum likelihood estimation to get \u03bb N LU = 1.088 and \u03bb N LU ER = 1.104. With these two estimations, we map NLU-ER reranker scores back to obtain a score in the baseline reranker score distribution. Using this updated score, we can see the cross-domain SemER score is improved by 0.32% relatively. Among the improved cases, we found that the number of False Positive utterances is decreased by 7.37% relatively. For comparison, we also trained a univariate neural network regression model to predict the original reranker score given the NLU-ER reranker score. Although this method also yields improvements, we can see that power transformation has a better performance and is also easy to implement. Note again that the in-domain performance remains the same since these score mapping approaches do not affect the in-domain ranking order. We perform the same experiments for Video domain and Local Search domain as well, and have the similar observations.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Results", |
|
"sec_num": "5.2" |
|
}, |
|
{ |
|
"text": "To illustrate the effectiveness of our proposed NLU-ER reranker and analyze the reasons for performance improvement, we compare the generated 1-best hypothesis from the baseline model with our new reranker. For utterance \"play hot chocolate by polar express\", the correct type for \"polar express\" is album. The baseline model predicts \"polar express\" as an artist because it is not in the training set, and \"Song by Artist\" appears more frequently than \"Song by Album\". However, our model successfully selected this hypothesis (\"polar express\" is an album), since ER_SUCCESS signal is found from the ER album catalog but ER_NO_MATCH is found from ER artist catalog. Similarly, in another example \"play a sixteen z\" where \"a sixteen z\" is ambiguous and not in the training set, the baseline model predicts it as a song since utterances with SongName slot have higher frequency in the training data, whereas our model can correctly select ProgramName as the 1-best hypothesis using ER signals.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Results", |
|
"sec_num": "5.2" |
|
}, |
|
{ |
|
"text": "In this work, we proposed a framework to incorporate ER information in NLU reranking. We developed a new feature vector for the domain reranker by utilizing entity resolution features such as hits or no hits. To provide the ER features to the NLU reranker, we proposed an offline solution that distills the ER signals into a gazetteer. We also introduced a novel loss term based on ER signals to discourage the domain reranker from promoting hypotheses with ER no match and showed that it leads to better model performance. Finally, since domain rerankers predict the ranking scores independently, we introduced a score matching method to transform the NLU-ER model score distribution to make the final scores comparable across domains. Our experiments demonstrated that the Music domain reranker performance is significantly improved when ER information is incorporated in the feature vector. Also with score calibration, we achieve moderate gain for the cross-domain scenario.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Conclusion", |
|
"sec_num": "6" |
|
}, |
|
{ |
|
"text": "We acknowledge Kyle Saggar, Grace Deng, Ian Gardiner, Mark Cusick, Justin Flammia, Apoorva", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Acknowledgement", |
|
"sec_num": "7" |
|
} |
|
], |
|
"back_matter": [], |
|
"bib_entries": { |
|
"BIBREF0": { |
|
"ref_id": "b0", |
|
"title": "Adi Gollapudi", |
|
"authors": [ |
|
{ |
|
"first": "Huitian", |
|
"middle": [], |
|
"last": "Balevalachilu", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Tan", |
|
"middle": [], |
|
"last": "Lei", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Tian", |
|
"middle": [], |
|
"last": "Xiao", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Prajit", |
|
"middle": [], |
|
"last": "Zhu", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Priya", |
|
"middle": [], |
|
"last": "Reddy Muppidi", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Khokher", |
|
"suffix": "" |
|
} |
|
], |
|
"year": null, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Balevalachilu, Huitian Lei, Tan Xiao, Tian Zhu, Prajit Reddy Muppidi, Priya Khokher, Adi Golla- pudi, Bo Xiao for their contributions to this effort.", |
|
"links": null |
|
}, |
|
"BIBREF1": { |
|
"ref_id": "b1", |
|
"title": "Learning to rank with nonsmooth cost functions", |
|
"authors": [ |
|
{ |
|
"first": "Christopher", |
|
"middle": [ |
|
"J" |
|
], |
|
"last": "Burges", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Robert", |
|
"middle": [], |
|
"last": "Ragno", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "V", |
|
"middle": [], |
|
"last": "Quoc", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Le", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2007, |
|
"venue": "Advances in Neural Information Processing Systems 19", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "193--200", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Christopher J. Burges, Robert Ragno, and Quoc V. Le. 2007. Learning to rank with nonsmooth cost func- tions. In B. Sch\u00f6lkopf, J. C. Platt, and T. Hoffman, editors, Advances in Neural Information Processing Systems 19, pages 193-200. MIT Press.", |
|
"links": null |
|
}, |
|
"BIBREF2": { |
|
"ref_id": "b2", |
|
"title": "Multi-language hypotheses ranking and domain tracking for open domain dialogue systems", |
|
"authors": [ |
|
{ |
|
"first": "A", |
|
"middle": [], |
|
"last": "Paul", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Jean-Philippe", |
|
"middle": [], |
|
"last": "Crook", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Ruhi", |
|
"middle": [], |
|
"last": "Robichaud", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Sarikaya", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2015, |
|
"venue": "Sixteenth Annual Conference of the International Speech Communication Association", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Paul A Crook, Jean-Philippe Robichaud, and Ruhi Sarikaya. 2015. Multi-language hypotheses ranking and domain tracking for open domain dialogue sys- tems. In Sixteenth Annual Conference of the Inter- national Speech Communication Association.", |
|
"links": null |
|
}, |
|
"BIBREF3": { |
|
"ref_id": "b3", |
|
"title": "Greedy function approximation: a gradient boosting machine", |
|
"authors": [ |
|
{ |
|
"first": "H", |
|
"middle": [], |
|
"last": "Jerome", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Friedman", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2001, |
|
"venue": "Annals of statistics", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "1189--1232", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Jerome H Friedman. 2001. Greedy function approx- imation: a gradient boosting machine. Annals of statistics, pages 1189-1232.", |
|
"links": null |
|
}, |
|
"BIBREF4": { |
|
"ref_id": "b4", |
|
"title": "Adam: A method for stochastic optimization", |
|
"authors": [ |
|
{ |
|
"first": "P", |
|
"middle": [], |
|
"last": "Diederik", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Jimmy", |
|
"middle": [], |
|
"last": "Kingma", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Ba", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2014, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": { |
|
"arXiv": [ |
|
"arXiv:1412.6980" |
|
] |
|
}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Diederik P Kingma and Jimmy Ba. 2014. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980.", |
|
"links": null |
|
}, |
|
"BIBREF5": { |
|
"ref_id": "b5", |
|
"title": "Predicting good probabilities with supervised learning", |
|
"authors": [ |
|
{ |
|
"first": "Alexandru", |
|
"middle": [], |
|
"last": "Niculescu", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "-", |
|
"middle": [], |
|
"last": "Mizil", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Rich", |
|
"middle": [], |
|
"last": "Caruana", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2005, |
|
"venue": "Proceedings of the 22nd international conference on Machine learning", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "625--632", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Alexandru Niculescu-Mizil and Rich Caruana. 2005. Predicting good probabilities with supervised learn- ing. In Proceedings of the 22nd international con- ference on Machine learning, pages 625-632.", |
|
"links": null |
|
}, |
|
"BIBREF6": { |
|
"ref_id": "b6", |
|
"title": "Probabilistic outputs for support vector machines and comparisons to regularized likelihood methods", |
|
"authors": [ |
|
{ |
|
"first": "John", |
|
"middle": [], |
|
"last": "Platt", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1999, |
|
"venue": "Advances in large margin classifiers", |
|
"volume": "10", |
|
"issue": "", |
|
"pages": "61--74", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "John Platt et al. 1999. Probabilistic outputs for sup- port vector machines and comparisons to regularized likelihood methods. Advances in large margin clas- sifiers, 10(3):61-74.", |
|
"links": null |
|
}, |
|
"BIBREF7": { |
|
"ref_id": "b7", |
|
"title": "Hypotheses ranking for robust domain classification and tracking in dialogue systems", |
|
"authors": [ |
|
{ |
|
"first": "Jean-Philippe", |
|
"middle": [], |
|
"last": "Robichaud", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "A", |
|
"middle": [], |
|
"last": "Paul", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Puyang", |
|
"middle": [], |
|
"last": "Crook", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Omar", |
|
"middle": [ |
|
"Zia" |
|
], |
|
"last": "Xu", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Ruhi", |
|
"middle": [], |
|
"last": "Khan", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Sarikaya", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2014, |
|
"venue": "Fifteenth Annual Conference of the International Speech Communication Association", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Jean-Philippe Robichaud, Paul A Crook, Puyang Xu, Omar Zia Khan, and Ruhi Sarikaya. 2014. Hy- potheses ranking for robust domain classification and tracking in dialogue systems. In Fifteenth An- nual Conference of the International Speech Com- munication Association.", |
|
"links": null |
|
}, |
|
"BIBREF8": { |
|
"ref_id": "b8", |
|
"title": "A re-ranker scheme for integrating large scale nlu models", |
|
"authors": [ |
|
{ |
|
"first": "Chengwei", |
|
"middle": [], |
|
"last": "Su", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Rahul", |
|
"middle": [], |
|
"last": "Gupta", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2018, |
|
"venue": "2018 IEEE Spoken Language Technology Workshop (SLT)", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "670--676", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Chengwei Su, Rahul Gupta, Shankar Ananthakrish- nan, and Spyros Matsoukas. 2018. A re-ranker scheme for integrating large scale nlu models. In 2018 IEEE Spoken Language Technology Workshop (SLT), pages 670-676. IEEE.", |
|
"links": null |
|
}, |
|
"BIBREF9": { |
|
"ref_id": "b9", |
|
"title": "On the combination of forecast probabilities for consecutive precipitation periods", |
|
"authors": [ |
|
{ |
|
"first": "S", |
|
"middle": [], |
|
"last": "Daniel", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Wilks", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 1990, |
|
"venue": "Weather and forecasting", |
|
"volume": "5", |
|
"issue": "4", |
|
"pages": "640--650", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Daniel S Wilks. 1990. On the combination of fore- cast probabilities for consecutive precipitation peri- ods. Weather and forecasting, 5(4):640-650.", |
|
"links": null |
|
}, |
|
"BIBREF10": { |
|
"ref_id": "b10", |
|
"title": "Obtaining calibrated probability estimates from decision trees and naive bayesian classifiers", |
|
"authors": [ |
|
{ |
|
"first": "Bianca", |
|
"middle": [], |
|
"last": "Zadrozny", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Charles", |
|
"middle": [], |
|
"last": "Elkan", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2001, |
|
"venue": "Icml", |
|
"volume": "1", |
|
"issue": "", |
|
"pages": "609--616", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Bianca Zadrozny and Charles Elkan. 2001. Obtaining calibrated probability estimates from decision trees and naive bayesian classifiers. In Icml, volume 1, pages 609-616. Citeseer.", |
|
"links": null |
|
}, |
|
"BIBREF11": { |
|
"ref_id": "b11", |
|
"title": "Transforming classifier scores into accurate multiclass probability estimates", |
|
"authors": [ |
|
{ |
|
"first": "Bianca", |
|
"middle": [], |
|
"last": "Zadrozny", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Charles", |
|
"middle": [], |
|
"last": "Elkan", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2002, |
|
"venue": "Proceedings of the eighth ACM SIGKDD international conference on Knowledge discovery and data mining", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "694--699", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Bianca Zadrozny and Charles Elkan. 2002. Transform- ing classifier scores into accurate multiclass proba- bility estimates. In Proceedings of the eighth ACM SIGKDD international conference on Knowledge discovery and data mining, pages 694-699.", |
|
"links": null |
|
} |
|
}, |
|
"ref_entries": { |
|
"TABREF0": { |
|
"type_str": "table", |
|
"text": "Gazetteer Data Selection Obtain outperforming and underperforming utterances from FUD; for u \u2208 outperforming utterances do if u h 1 is ER_SUCCESS then select ER features in u h 1 to the gazetteer; end end for u \u2208 underperforming utterances do if u h 1 is ER_NO_MATCH then select ER features in u h 1 to the gazetteer; end if u h i is ER_SUCCESS, and h i = h", |
|
"num": null, |
|
"html": null, |
|
"content": "<table/>" |
|
}, |
|
"TABREF1": { |
|
"type_str": "table", |
|
"text": "is the corresponding weight vector. The rest of the features are ER related. 1 is the indicator function. S is the set of all slot types, ER s i = [er 1 , er 2 , . . . , er q ] T is the ER feature vector and W s", |
|
"num": null, |
|
"html": null, |
|
"content": "<table/>" |
|
}, |
|
"TABREF2": { |
|
"type_str": "table", |
|
"text": "NLU-ER reranking results on different data sets. The reported numbers show relative improvements compared with the baseline model using SemER evaluation metric. Baseline: NLU reranker with general features; ER: NLU-ER reranker with gazetteer selection; +N: with loss term for No Match feature; +R: with regression score matching; +P: with power transformation score matching. All the results in the table are statistically significant with p-value < 0.01.", |
|
"num": null, |
|
"html": null, |
|
"content": "<table><tr><td/><td>ER</td><td>ER+N</td><td colspan=\"2\">ER+N+R ER+N+P</td></tr><tr><td>AD All</td><td>-0.22%</td><td>+0.19%</td><td>+0.26%</td><td>+0.32%</td></tr><tr><td colspan=\"2\">AD Music +0.87%</td><td>+0.99%</td><td>+0.99%</td><td>+0.99%</td></tr><tr><td colspan=\"2\">AD Video +0.95%</td><td>+1.01%</td><td>+1.01%</td><td>+1.01%</td></tr><tr><td>AD LS</td><td>+0.08%</td><td>+0.09%</td><td>+0.09%</td><td>+0.09%</td></tr><tr><td colspan=\"5\">SD Music +20.74% +28.58% +28.58% +28.58%</td></tr><tr><td>SD Video</td><td colspan=\"4\">+14.21% +18.69% +18.69% +18.69%</td></tr><tr><td>SD LS</td><td colspan=\"4\">+12.53% +17.37% +17.37% +17.37%</td></tr></table>" |
|
} |
|
} |
|
} |
|
} |