Applying PECOS to product retrieval and text autocompletion

海外精选
海外精选的内容汇集了全球优质的亚马逊云科技相关技术内容。同时,内容中提到的“AWS” 是 “Amazon Web Services” 的缩写,在此网站不作为商标展示。
0
0
{"value":"In April, our research team at Amazon ++[open-sourced our PECOS framework](https://www.amazon.science/blog/amazon-open-sources-library-for-prediction-over-large-output-spaces)++ for extreme multilabel ranking (XMR), which is the general problem of classifying an input when you have an enormous space of candidate classes. PECOS presents a way to solve XMR problems that is both accurate and efficient enough for real-time use.\n\nAt this year’s Knowledge Discovery and Data Mining Conference (++[KDD](https://www.amazon.science/conferences-and-events/KDD-2021)++), members of our team presented two papers that demonstrate both the power and flexibility of the PECOS framework.\n\n![image.png](https://dev-media.amazoncloud.cn/1ba24d738c03462db5234fb2d2691206_image.png)\n\nA comparison of the top ten products returned by the PECOS-based product retrieval system and two predecessors for the query \"rose of jericho plant\". Products outlined in green were purchased by at least one customer performing that search; products outlined in red were not purchased.\n\nOne applies PECOS to the problem of ++[product retrieval](https://www.amazon.science/publications/extreme-multi-label-learning-for-semantic-matching-in-product-search)++, a use case very familiar to customers at the Amazon Store. The other is a less obvious application: ++[session-aware query autocompletion](https://www.amazon.science/publications/session-aware-query-auto-completion-using-extreme-multi-label-ranking)++, in which an autocompletion model — which predicts what a customer is going to type — bases its predictions on the customer’s last few text inputs, as well as on statistics for customers at large.\n\nIn both cases, we tailor PECOS’s default models to the tasks at hand and, in comparisons with several strong benchmarks, show that PECOS offers the best combination of accuracy and speed.\n\n#### **The PECOS model**\n\nThe classic case of XMR would be the classification of a document according to a handful of topics, where there are hundreds of thousands of topics to choose from.\n\nWe generalize the idea, however, to any problem that, for a given input, finds a few matches from among a large set of candidates. In product retrieval, for instance, the names of products would be “labels” we apply to a query: “Echo Dot”, “Echo Studio”, and other such names would be labels applied to the query “Smart speaker”.\n\nPECOS adopts a three-step solution to the XMR problem. First is the **indexing** step, in which PECOS groups labels according to topic. Next is the **matching step**, which matches an input to a topic (which significantly shrinks the space of candidates). Last comes the **ranking** step, which reranks the labels in the matched topic, based on features of the input.\n\n![image.png](https://dev-media.amazoncloud.cn/2082f8cb3c7c48cc8692110267104e8b_image.png)\n\nThe three-stage PECOS model.\n\nCREDIT: STACY REILLY\n\nPECOS comes with default models for each of these steps, which we described in a ++[blog post](https://www.amazon.science/blog/amazon-open-sources-library-for-prediction-over-large-output-spaces)++ about the April code release. But users can modify those models as necessary, or create their own and integrate them into the PECOS framework.\n\n#### **Product retrieval**\n\nFor the product retrieval problem, we adapt one of the matching models that comes standard with PECOS: XR-Linear. Details are in the earlier blog post (and in our KDD paper), but XR-Linear reduces computation time by using B-ary trees — a generalization of binary trees to trees whose nodes have B descendants each. The top node of the tree represents the full label set; the next layer down represents B partitions of the full set; the next layer represents B partitions of each partition in the previous layer, and so on.\n\nConnections between nodes of the trees have associated weights, which are multiplied by features of the input query to produce a probability score. Matching is the process of tracing the most-probable routes through the tree and retrieving the topics at the most-probable leaf nodes. To make this process efficient, we use beam search: i.e., at each layer, we limit the number of nodes whose descendants we consider, a limit known as the beam width.\n\n![下载 2.gif](https://dev-media.amazoncloud.cn/c210c968fdbb490187d6cc63bcfc063c_%E4%B8%8B%E8%BD%BD%20%282%29.gif)\n\nAn example of linear ranking with a beam width of two. At each level of the tree, two nodes (green) are selected for further exploration. Each of their descendant nodes is evaluated (orange), and two of those are selected for further exploration.\n\nCREDIT: GIANA BUCCHINO\n\nIn our KDD paper on product retrieval, we vary this general model through weight pruning; i.e., we delete edges whose weights fall below some threshold, reducing the number of options the matching algorithm has to consider as it explores the tree. In the paper, we report experiments with several different weight thresholds and beam widths.\n\nWe also experimented with several different sets of input features. One was n-grams of query words. For instance, the query “Echo with screen” would produce the 1-grams “Echo”, “with”, “screen”, the 2-grams “Echo with” and “with screen”, and the 3-gram “Echo with screen”. This sensitizes the matching model to phrases that may carry more information than their constituent words.\n\nSimilarly, we used n-grams of input characters. If we use the token “#” to denote the end of a word, the same query would produce the character trigrams “Ech”, “cho”, “ho#”, “with”, “ith”, and so on. Character n-grams helps the model deal with typos or word variants.\n\nFinally, we also used TF-IDF (term frequency–inverse document frequency) features, which normalize the frequency of a word in a given text by its frequency across all texts (which filters out common words like “the”). We found that our model performed best when we used all three sets of features.\n\nAs benchmarks in our experiments, we used the state-of-the-art linear model and the state-of-the-art neural model and found that our linear approach outperformed both, with a recall@10 — that is, the number of correct labels among the top ten — that was more than double the neural model’s and almost quadruple the linear model’s. At the same time, our model took about one-sixth as long to train as the neural model.\n\nWe also found that our model took an average of only 1.25 milliseconds to complete each query, which is fast enough for deployment in a real-time system like the Amazon Store.\n\n#### **Session-aware query autocompletion**\n\nSession-aware query autocompletion uses the history of a customer’s recent queries — not just general statistics for the customer base — to complete new queries. The added contextual information means that it can often complete queries accurately after the customer has typed only one or two letters.\n\nTo frame this task as an XMR problem, we consider the case in which the input is a combination of the customer’s previous query and the beginning — perhaps just a few characters — of a new query. The labels are queries that an information retrieval system has seen before.\n\nIn this case, PECOS didn’t work well out of the box, and we deduced that the problem was the indexing scheme used to cluster labels by topic. PECOS’s default indexing model embeds inputs, or converts them into vectors, then clusters labels according to proximity in the vector space.\n\nWe suspected that this was ineffective when the inputs to the autocompletion model were partial phrases — fragments of words that a user is typing in. So we experimented with an indexing model that instead used data structures known as tries(a variation on “tree” that borrows part of the word “retrieve”).\n\nA trie is a tree whose nodes represent strings of letters, where each descendant node extends its parent node’s string by one letter. So if the top node of the trie represents the letter “P”, its descendants might represent the strings “PA” and “PE”; their descendants might represent the strings “PAN”, “PAD”, “PEN”, “PET”, and so on. With a trie, all the nodes that descend from a common parent constitute a cluster.\n\nClustering using tries dramatically improved the performance of our model, but it also slowed it down: the strings encoded by tries can get very long, which means that tracing a path through the trie can get very time consuming.\n\nSo we adopted a hybrid clustering technique that combines tries with embeddings. The top few layers of the hybrid tree constitute a trie, but the nodes that descend from the lowest of these layers represent strings whose embeddings are near that of the parent node in the vector space.\n\n![image.png](https://dev-media.amazoncloud.cn/6df9bf9ab0534ea6b3cfcad2ef5aa956_image.png)\n\nThree different ways of clustering the eight strings \"a\", \"ab\", \"abc\", \"abd\", \"abfgh\", \"abfgi\", \"bcde\", and \"bcdf\". At left is a conventional tree; in the center is a trie; and at right is a trie-tree hybrid.\n\nTo ensure that the embeddings in the hybrid tree preserve some of the sequential information encoded by tries, we varied the standard TF-IDF approach. First we applied it at the character level, rather than at the word level, so that it measured the relative frequency of particular strings of letters, not just words.\n\nThen we weighted the frequency statistics, overcounting character strings that occurred at the beginning of words, relative to those that occurred later. This forced the embedding to mimic the string extension logic of the tries.\n\nOnce we’d adopted this indexing scheme, we found that the PECOS model outperformed both the state-of-the-art linear model and the state-of-the art neural model, when measured by both mean reciprocal rank and the BLEU metric used to evaluate machine translation models.\n\nThe use of tries still came with a performance penalty: our model took significantly longer to process inputs than the earlier linear model did. But its execution time was still below the threshold for real-time application and significantly lower than the neural model’s.\n\n\nABOUT THE AUTHOR\n\n#### **[Daniel N. Hill](https://www.amazon.science/author/daniel-n-hill)**\n\nDaniel N. Hill is a senior applied scientist at Amazon.\n\n#### **[Hsiang-Fu Yu](https://www.amazon.science/author/hsiang-fu-yu)**\n\nHsiang-Fu Yu is a senior applied scientist at Amazon.\n","render":"<p>In April, our research team at Amazon <ins><a href=\\"https://www.amazon.science/blog/amazon-open-sources-library-for-prediction-over-large-output-spaces\\" target=\\"_blank\\">open-sourced our PECOS framework</a></ins> for extreme multilabel ranking (XMR), which is the general problem of classifying an input when you have an enormous space of candidate classes. PECOS presents a way to solve XMR problems that is both accurate and efficient enough for real-time use.</p>\n<p>At this year’s Knowledge Discovery and Data Mining Conference (<ins><a href=\\"https://www.amazon.science/conferences-and-events/KDD-2021\\" target=\\"_blank\\">KDD</a></ins>), members of our team presented two papers that demonstrate both the power and flexibility of the PECOS framework.</p>\n<p><img src=\\"https://dev-media.amazoncloud.cn/1ba24d738c03462db5234fb2d2691206_image.png\\" alt=\\"image.png\\" /></p>\n<p>A comparison of the top ten products returned by the PECOS-based product retrieval system and two predecessors for the query “rose of jericho plant”. Products outlined in green were purchased by at least one customer performing that search; products outlined in red were not purchased.</p>\n<p>One applies PECOS to the problem of <ins><a href=\\"https://www.amazon.science/publications/extreme-multi-label-learning-for-semantic-matching-in-product-search\\" target=\\"_blank\\">product retrieval</a></ins>, a use case very familiar to customers at the Amazon Store. The other is a less obvious application: <ins><a href=\\"https://www.amazon.science/publications/session-aware-query-auto-completion-using-extreme-multi-label-ranking\\" target=\\"_blank\\">session-aware query autocompletion</a></ins>, in which an autocompletion model — which predicts what a customer is going to type — bases its predictions on the customer’s last few text inputs, as well as on statistics for customers at large.</p>\n<p>In both cases, we tailor PECOS’s default models to the tasks at hand and, in comparisons with several strong benchmarks, show that PECOS offers the best combination of accuracy and speed.</p>\n<h4><a id=\\"The_PECOS_model_12\\"></a><strong>The PECOS model</strong></h4>\\n<p>The classic case of XMR would be the classification of a document according to a handful of topics, where there are hundreds of thousands of topics to choose from.</p>\n<p>We generalize the idea, however, to any problem that, for a given input, finds a few matches from among a large set of candidates. In product retrieval, for instance, the names of products would be “labels” we apply to a query: “Echo Dot”, “Echo Studio”, and other such names would be labels applied to the query “Smart speaker”.</p>\n<p>PECOS adopts a three-step solution to the XMR problem. First is the <strong>indexing</strong> step, in which PECOS groups labels according to topic. Next is the <strong>matching step</strong>, which matches an input to a topic (which significantly shrinks the space of candidates). Last comes the <strong>ranking</strong> step, which reranks the labels in the matched topic, based on features of the input.</p>\\n<p><img src=\\"https://dev-media.amazoncloud.cn/2082f8cb3c7c48cc8692110267104e8b_image.png\\" alt=\\"image.png\\" /></p>\n<p>The three-stage PECOS model.</p>\n<p>CREDIT: STACY REILLY</p>\n<p>PECOS comes with default models for each of these steps, which we described in a <ins><a href=\\"https://www.amazon.science/blog/amazon-open-sources-library-for-prediction-over-large-output-spaces\\" target=\\"_blank\\">blog post</a></ins> about the April code release. But users can modify those models as necessary, or create their own and integrate them into the PECOS framework.</p>\n<h4><a id=\\"Product_retrieval_28\\"></a><strong>Product retrieval</strong></h4>\\n<p>For the product retrieval problem, we adapt one of the matching models that comes standard with PECOS: XR-Linear. Details are in the earlier blog post (and in our KDD paper), but XR-Linear reduces computation time by using B-ary trees — a generalization of binary trees to trees whose nodes have B descendants each. The top node of the tree represents the full label set; the next layer down represents B partitions of the full set; the next layer represents B partitions of each partition in the previous layer, and so on.</p>\n<p>Connections between nodes of the trees have associated weights, which are multiplied by features of the input query to produce a probability score. Matching is the process of tracing the most-probable routes through the tree and retrieving the topics at the most-probable leaf nodes. To make this process efficient, we use beam search: i.e., at each layer, we limit the number of nodes whose descendants we consider, a limit known as the beam width.</p>\n<p><img src=\\"https://dev-media.amazoncloud.cn/c210c968fdbb490187d6cc63bcfc063c_%E4%B8%8B%E8%BD%BD%20%282%29.gif\\" alt=\\"下载 2.gif\\" /></p>\n<p>An example of linear ranking with a beam width of two. At each level of the tree, two nodes (green) are selected for further exploration. Each of their descendant nodes is evaluated (orange), and two of those are selected for further exploration.</p>\n<p>CREDIT: GIANA BUCCHINO</p>\n<p>In our KDD paper on product retrieval, we vary this general model through weight pruning; i.e., we delete edges whose weights fall below some threshold, reducing the number of options the matching algorithm has to consider as it explores the tree. In the paper, we report experiments with several different weight thresholds and beam widths.</p>\n<p>We also experimented with several different sets of input features. One was n-grams of query words. For instance, the query “Echo with screen” would produce the 1-grams “Echo”, “with”, “screen”, the 2-grams “Echo with” and “with screen”, and the 3-gram “Echo with screen”. This sensitizes the matching model to phrases that may carry more information than their constituent words.</p>\n<p>Similarly, we used n-grams of input characters. If we use the token “#” to denote the end of a word, the same query would produce the character trigrams “Ech”, “cho”, “ho#”, “with”, “ith”, and so on. Character n-grams helps the model deal with typos or word variants.</p>\n<p>Finally, we also used TF-IDF (term frequency–inverse document frequency) features, which normalize the frequency of a word in a given text by its frequency across all texts (which filters out common words like “the”). We found that our model performed best when we used all three sets of features.</p>\n<p>As benchmarks in our experiments, we used the state-of-the-art linear model and the state-of-the-art neural model and found that our linear approach outperformed both, with a recall@10 — that is, the number of correct labels among the top ten — that was more than double the neural model’s and almost quadruple the linear model’s. At the same time, our model took about one-sixth as long to train as the neural model.</p>\n<p>We also found that our model took an average of only 1.25 milliseconds to complete each query, which is fast enough for deployment in a real-time system like the Amazon Store.</p>\n<h4><a id=\\"Sessionaware_query_autocompletion_52\\"></a><strong>Session-aware query autocompletion</strong></h4>\\n<p>Session-aware query autocompletion uses the history of a customer’s recent queries — not just general statistics for the customer base — to complete new queries. The added contextual information means that it can often complete queries accurately after the customer has typed only one or two letters.</p>\n<p>To frame this task as an XMR problem, we consider the case in which the input is a combination of the customer’s previous query and the beginning — perhaps just a few characters — of a new query. The labels are queries that an information retrieval system has seen before.</p>\n<p>In this case, PECOS didn’t work well out of the box, and we deduced that the problem was the indexing scheme used to cluster labels by topic. PECOS’s default indexing model embeds inputs, or converts them into vectors, then clusters labels according to proximity in the vector space.</p>\n<p>We suspected that this was ineffective when the inputs to the autocompletion model were partial phrases — fragments of words that a user is typing in. So we experimented with an indexing model that instead used data structures known as tries(a variation on “tree” that borrows part of the word “retrieve”).</p>\n<p>A trie is a tree whose nodes represent strings of letters, where each descendant node extends its parent node’s string by one letter. So if the top node of the trie represents the letter “P”, its descendants might represent the strings “PA” and “PE”; their descendants might represent the strings “PAN”, “PAD”, “PEN”, “PET”, and so on. With a trie, all the nodes that descend from a common parent constitute a cluster.</p>\n<p>Clustering using tries dramatically improved the performance of our model, but it also slowed it down: the strings encoded by tries can get very long, which means that tracing a path through the trie can get very time consuming.</p>\n<p>So we adopted a hybrid clustering technique that combines tries with embeddings. The top few layers of the hybrid tree constitute a trie, but the nodes that descend from the lowest of these layers represent strings whose embeddings are near that of the parent node in the vector space.</p>\n<p><img src=\\"https://dev-media.amazoncloud.cn/6df9bf9ab0534ea6b3cfcad2ef5aa956_image.png\\" alt=\\"image.png\\" /></p>\n<p>Three different ways of clustering the eight strings “a”, “ab”, “abc”, “abd”, “abfgh”, “abfgi”, “bcde”, and “bcdf”. At left is a conventional tree; in the center is a trie; and at right is a trie-tree hybrid.</p>\n<p>To ensure that the embeddings in the hybrid tree preserve some of the sequential information encoded by tries, we varied the standard TF-IDF approach. First we applied it at the character level, rather than at the word level, so that it measured the relative frequency of particular strings of letters, not just words.</p>\n<p>Then we weighted the frequency statistics, overcounting character strings that occurred at the beginning of words, relative to those that occurred later. This forced the embedding to mimic the string extension logic of the tries.</p>\n<p>Once we’d adopted this indexing scheme, we found that the PECOS model outperformed both the state-of-the-art linear model and the state-of-the art neural model, when measured by both mean reciprocal rank and the BLEU metric used to evaluate machine translation models.</p>\n<p>The use of tries still came with a performance penalty: our model took significantly longer to process inputs than the earlier linear model did. But its execution time was still below the threshold for real-time application and significantly lower than the neural model’s.</p>\n<p>ABOUT THE AUTHOR</p>\n<h4><a id=\\"Daniel_N_Hillhttpswwwamazonscienceauthordanielnhill_83\\"></a><strong><a href=\\"https://www.amazon.science/author/daniel-n-hill\\" target=\\"_blank\\">Daniel N. Hill</a></strong></h4>\n<p>Daniel N. Hill is a senior applied scientist at Amazon.</p>\n<h4><a id=\\"HsiangFu_Yuhttpswwwamazonscienceauthorhsiangfuyu_87\\"></a><strong><a href=\\"https://www.amazon.science/author/hsiang-fu-yu\\" target=\\"_blank\\">Hsiang-Fu Yu</a></strong></h4>\n<p>Hsiang-Fu Yu is a senior applied scientist at Amazon.</p>\n"}
目录
亚马逊云科技解决方案 基于行业客户应用场景及技术领域的解决方案
联系亚马逊云科技专家
亚马逊云科技解决方案
基于行业客户应用场景及技术领域的解决方案
联系专家
0
目录
关闭