diff --git "a/2023/A Probabilistic Framework for Discovering New Intents/layout.json" "b/2023/A Probabilistic Framework for Discovering New Intents/layout.json" new file mode 100644--- /dev/null +++ "b/2023/A Probabilistic Framework for Discovering New Intents/layout.json" @@ -0,0 +1,11099 @@ +{ + "pdf_info": [ + { + "para_blocks": [ + { + "bbox": [ + 124, + 76, + 470, + 94 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 124, + 76, + 470, + 94 + ], + "spans": [ + { + "bbox": [ + 124, + 76, + 470, + 94 + ], + "type": "text", + "content": "A Probabilistic Framework for Discovering New Intents" + } + ] + } + ], + "index": 0 + }, + { + "bbox": [ + 184, + 114, + 414, + 172 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 184, + 114, + 414, + 172 + ], + "spans": [ + { + "bbox": [ + 184, + 114, + 414, + 172 + ], + "type": "text", + "content": "Yunhua Zhou*, Guofeng Quan*, Xipeng Qiu† \nSchool of Computer Science, Fudan University \n{zhouyh20, xpqiu}@fudan.edu.cn \ngfquan21@m.fudan.edu.cn" + } + ] + } + ], + "index": 1 + }, + { + "bbox": [ + 155, + 212, + 202, + 226 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 155, + 212, + 202, + 226 + ], + "spans": [ + { + "bbox": [ + 155, + 212, + 202, + 226 + ], + "type": "text", + "content": "Abstract" + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 86, + 235, + 274, + 570 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 86, + 235, + 274, + 570 + ], + "spans": [ + { + "bbox": [ + 86, + 235, + 274, + 570 + ], + "type": "text", + "content": "Discovering new intents is of great significance for establishing the Task-Oriented Dialogue System. Most prevailing approaches either cannot transfer prior knowledge inherent in known intents or fall into the dilemma of forgetting prior knowledge in the follow-up. Furthermore, such approaches fail to thoroughly explore the inherent structure of unlabeled data, thereby failing to capture the fundamental characteristics that define an intent in general sense. In this paper, starting from the intuition that discovering intents should be beneficial for identifying known intents, we propose a probabilistic framework for discovering intents where intent assignments are treated as latent variables. We adopt the Expectation Maximization framework for optimization. Specifically, In the E-step, we conduct intent discovery and explore the intrinsic structure of unlabeled data by the posterior of intent assignments. In the M-step, we alleviate the forgetting of prior knowledge transferred from known intents by optimizing the discrimination of labeled data. Extensive experiments conducted on three challenging real-world datasets demonstrate the generality and effectiveness of the proposed framework and implementation. Codes is publicly available.1" + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 68, + 580, + 155, + 593 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 580, + 155, + 593 + ], + "spans": [ + { + "bbox": [ + 68, + 580, + 155, + 593 + ], + "type": "text", + "content": "1 Introduction" + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 67, + 601, + 291, + 724 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 601, + 291, + 724 + ], + "spans": [ + { + "bbox": [ + 67, + 601, + 291, + 724 + ], + "type": "text", + "content": "Unknown intent detection (Zhou et al., 2022) in the Task-Oriented Dialogue System (TODS) has gradually attracted more and more attention from researchers. However, detecting unknown intent is only the first step. For the TODS, intent discovery is crucial but also more challenging. Because the pre-defined intent set in the TODS is limited to cover all intents, the TODS should discover potential new intents automatically during interactions" + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 302, + 212, + 527, + 321 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 212, + 527, + 321 + ], + "spans": [ + { + "bbox": [ + 302, + 212, + 527, + 321 + ], + "type": "text", + "content": "with the users. And as a practical matter, a large number of valuable unlabeled data will be generated within the interaction between users and the dialogue system. Considering the limited labeled corpus and time-consuming annotating, which also requires expertise, the TODS should adaptively discover intents from those unlabeled data with the aid of limited labeled data." + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 302, + 323, + 527, + 593 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 323, + 527, + 593 + ], + "spans": [ + { + "bbox": [ + 302, + 323, + 527, + 593 + ], + "type": "text", + "content": "Just as discovering new intents plays a crucial role in establishing the TODS, discovering new intents has raised a lot of research interest just like unknown intent detection. Unsupervised cluster learning is a popular paradigm to solve this problem. Specifically, previous works (Hakkani-Tur et al., 2013, 2015; Shi et al., 2018; Padmasundari, 2018) formulate intent discovery as an unsupervised clustering process. However, these methods mainly focus on constructing pseudo-supervised signals to guide the clustering process while neglecting the prior knowledge embedded in the available labeled data. In real user-facing scenarios, we often possess a small amount of labeled data in advance, which contains prior knowledge that can guide the intent discovery process, and a substantial volume of unlabeled data generated in the interaction with the dialogue system mentioned above, which contains both known intents and unknown intents to be discovered." + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 302, + 597, + 527, + 773 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 597, + 527, + 773 + ], + "spans": [ + { + "bbox": [ + 302, + 597, + 527, + 773 + ], + "type": "text", + "content": "How do discover intents in the unlabeled corpus using the labeled data? Recently, the semisupervised methods (Lin et al., 2020; Zhang et al., 2021) have become popular. DeepAligned (Zhang et al., 2021) is the most typical and has also inspired a series of effective works (Shen et al., 2021; Zhang et al., 2022) recently. DeepAligned first generalizes the prior knowledge into the semantic features of unlabeled data by pre-training. Then, to learn cluster-friendly representations, DeepAligned assigns a pseudo label to each unlabeled utterance and re-trains the model under the supervision of those pseudo labels." + } + ] + } + ], + "index": 8 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 84, + 729, + 162, + 740 + ], + "type": "page_footnote", + "angle": 0, + "lines": [ + { + "bbox": [ + 84, + 729, + 162, + 740 + ], + "spans": [ + { + "bbox": [ + 84, + 729, + 162, + 740 + ], + "type": "text", + "content": "*Equal contribution." + } + ] + } + ], + "index": 9 + }, + { + "bbox": [ + 84, + 740, + 171, + 751 + ], + "type": "page_footnote", + "angle": 0, + "lines": [ + { + "bbox": [ + 84, + 740, + 171, + 751 + ], + "spans": [ + { + "bbox": [ + 84, + 740, + 171, + 751 + ], + "type": "text", + "content": "† Corresponding author." + } + ] + } + ], + "index": 10 + }, + { + "bbox": [ + 69, + 751, + 286, + 772 + ], + "type": "page_footnote", + "angle": 0, + "lines": [ + { + "bbox": [ + 69, + 751, + 286, + 772 + ], + "spans": [ + { + "bbox": [ + 69, + 751, + 286, + 772 + ], + "type": "text", + "content": "1https://github.com/zyh190507/Probabilistic-discovery-new-intents" + } + ] + } + ], + "index": 11 + }, + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3771" + } + ] + } + ], + "index": 13 + }, + { + "bbox": [ + 135, + 795, + 459, + 805 + ], + "type": "footer", + "angle": 0, + "lines": [ + { + "bbox": [ + 135, + 795, + 459, + 805 + ], + "spans": [ + { + "bbox": [ + 135, + 795, + 459, + 805 + ], + "type": "text", + "content": "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics" + } + ] + } + ], + "index": 14 + }, + { + "bbox": [ + 220, + 806, + 374, + 817 + ], + "type": "footer", + "angle": 0, + "lines": [ + { + "bbox": [ + 220, + 806, + 374, + 817 + ], + "spans": [ + { + "bbox": [ + 220, + 806, + 374, + 817 + ], + "type": "text", + "content": "Volume 1: Long Papers, pages 3771-3784" + } + ] + } + ], + "index": 15 + }, + { + "bbox": [ + 176, + 818, + 417, + 829 + ], + "type": "footer", + "angle": 0, + "lines": [ + { + "bbox": [ + 176, + 818, + 417, + 829 + ], + "spans": [ + { + "bbox": [ + 176, + 818, + 417, + 829 + ], + "type": "text", + "content": "July 9-14, 2023 ©2023 Association for Computational Linguistics" + } + ] + } + ], + "index": 16 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 0 + }, + { + "para_blocks": [ + { + "type": "image", + "bbox": [ + 71, + 73, + 290, + 169 + ], + "blocks": [ + { + "bbox": [ + 71, + 73, + 290, + 169 + ], + "lines": [ + { + "bbox": [ + 71, + 73, + 290, + 169 + ], + "spans": [ + { + "bbox": [ + 71, + 73, + 290, + 169 + ], + "type": "image", + "image_path": "546c77b1facf030e0ad9b663d972cca2e3f3da9bf55f97225c9c1ca5e2750664.jpg" + } + ] + } + ], + "index": 0, + "angle": 0, + "type": "image_body" + }, + { + "bbox": [ + 67, + 182, + 291, + 301 + ], + "lines": [ + { + "bbox": [ + 67, + 182, + 291, + 301 + ], + "spans": [ + { + "bbox": [ + 67, + 182, + 291, + 301 + ], + "type": "text", + "content": "Figure 1: The catastrophic forgetting of DeepAligned (Blue). During clustering in DeepAligned, we test the performance of the model on the verification set used in the transferring prior knowledge stage and show that with the advancement of clustering, the model constantly forgets the knowledge learned from labeled data. The brown line represents the baseline obtained by the model after transferring prior knowledge. In contrast, our method (Red) can alleviate forgetting well. See Section 5.6 for more discussion." + } + ] + } + ], + "index": 1, + "angle": 0, + "type": "image_caption" + } + ], + "index": 0 + }, + { + "bbox": [ + 67, + 325, + 290, + 473 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 325, + 290, + 473 + ], + "spans": [ + { + "bbox": [ + 67, + 325, + 290, + 473 + ], + "type": "text", + "content": "Nevertheless, DeepAligned suffers from many problems. Firstly, when the model is re-trained with the pseudo supervision signal, the model will forget the knowledge transferred in the transferring stage, which is demonstrated in Figure 1. Then, the model could be misled by inaccurate pseudo labels, particularly in large-sized intent space (Wang et al., 2021). More importantly, softmax loss formed by pseudo labels cannot explore the intrinsic structure of unlabeled data, so it can not provide accurate clustering supervised signals." + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 67, + 475, + 290, + 595 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 475, + 290, + 595 + ], + "spans": [ + { + "bbox": [ + 67, + 475, + 290, + 595 + ], + "type": "text", + "content": "Different from the previous methods, we start from the intuition that the intent discovery should not damage the identification of the known intents. Ideally, the two processes should achieve a win-win situation. The knowledge contained in labeled data corpus (as known intents) can be used to guide the discovery, and the information learned from the unlabeled corpus during discovery could improve the identification of the known intents." + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 67, + 597, + 291, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 597, + 291, + 772 + ], + "spans": [ + { + "bbox": [ + 67, + 597, + 291, + 772 + ], + "type": "text", + "content": "Therefore, with the help of optimizing the identification of labeled data given the whole data corpus, we propose a principled probabilistic framework for intent discovery, where intent assignments as a latent variable. We adopt Expectation Maximization as a principal template for optimizing this typical latent variable model. Specifically, in the E-step, we use the current model to discover intents and calculate a specified posterior probability of intent assignments to explore the intrinsic structure of data. In the M-step, the probability of identification of labeled data including those newly discovered from unlabeled data, and the posterior" + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 302, + 71, + 526, + 164 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 71, + 526, + 164 + ], + "spans": [ + { + "bbox": [ + 302, + 71, + 526, + 164 + ], + "type": "text", + "content": "probability of intent assignments, which is to help learn friendly-discovery features, are maximized simultaneously to optimize and update model parameters. Extensive experiments conducted in three benchmark datasets demonstrate our method can achieve substantial improvements over strong baselines. Our contributions are as follows:" + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 302, + 167, + 526, + 248 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 167, + 526, + 248 + ], + "spans": [ + { + "bbox": [ + 302, + 167, + 526, + 248 + ], + "type": "text", + "content": "(Theory) We introduce a principled probabilistic framework for discovering new intents and provide a learning algorithm based on Expectation Maximization. To the best of our knowledge, this is the first complete theoretical framework in this field and we hope it can inspire follow-up research." + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 302, + 248, + 526, + 370 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 248, + 526, + 370 + ], + "spans": [ + { + "bbox": [ + 302, + 248, + 526, + 370 + ], + "type": "text", + "content": "(Methodology) We provide an efficient implementation based on the proposed probabilistic framework. After transferring prior knowledge, we use a simple yet effective method to alleviate forgetting. Furthermore, we propose a new contrastive paradigm to explore the intrinsic structure of unlabeled data, which avoids the model shift towards inaccurate pseudo labels but helps to better learn the friendly-discovery features." + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 302, + 371, + 525, + 439 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 371, + 525, + 439 + ], + "spans": [ + { + "bbox": [ + 302, + 371, + 525, + 439 + ], + "type": "text", + "content": "(Experiments and Analysis) We conduct extensive experiments and detailed analyses on a suite of real-world datasets to demonstrate the generality and effectiveness of our proposed framework and implementation." + } + ] + } + ], + "index": 8 + }, + { + "bbox": [ + 302, + 451, + 395, + 464 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 451, + 395, + 464 + ], + "spans": [ + { + "bbox": [ + 302, + 451, + 395, + 464 + ], + "type": "text", + "content": "2 Related Work" + } + ] + } + ], + "index": 9 + }, + { + "bbox": [ + 302, + 475, + 525, + 502 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 475, + 525, + 502 + ], + "spans": [ + { + "bbox": [ + 302, + 475, + 525, + 502 + ], + "type": "text", + "content": "Our work is mainly related to two lines of research: Unsupervised and Semi-supervised clustering." + } + ] + } + ], + "index": 10 + }, + { + "bbox": [ + 302, + 503, + 526, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 503, + 526, + 772 + ], + "spans": [ + { + "bbox": [ + 302, + 503, + 526, + 772 + ], + "type": "text", + "content": "Unsupervised Clustering Extracting meaningful information from unlabeled data has been studied for a long time. Traditional approaches like K-means (MacQueen et al., 1967) and Agglomerative Clustering (AC) (Gowda and Krishna, 1978) are seminal but hardly perform well in high-dimensional space. Recent efforts are devoted to using the deep neural network to obtain good clustering representations. Xie et al. (2016) propose Deep Embedded Cluster (DEC) to learn and refine the features iteratively by optimizing a clustering objective based on an auxiliary distribution. Unlike DEC, Yang et al. (2017) propose Deep Clustering Network (DCN) that performs nonlinear dimensionality reduction and k-means clustering jointly to learn friendly representation. Chang et al. (2017) (DAC) apply unsupervised clustering to image clustering and proposes a binary-classification framework that uses adaptive learning for optimization. Then, DeepCluster (Caron et al., 2018) proposes" + } + ] + } + ], + "index": 11 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3772" + } + ] + } + ], + "index": 12 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 1 + }, + { + "para_blocks": [ + { + "bbox": [ + 67, + 71, + 291, + 139 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 71, + 291, + 139 + ], + "spans": [ + { + "bbox": [ + 67, + 71, + 291, + 139 + ], + "type": "text", + "content": "an end-to-end training method that performs cluster assignments and representation learning alternately. However, the key drawback of unsupervised methods is their incapability of taking advantage of prior knowledge to guide the clustering." + } + ] + } + ], + "index": 0 + }, + { + "bbox": [ + 67, + 139, + 292, + 599 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 139, + 292, + 599 + ], + "spans": [ + { + "bbox": [ + 67, + 139, + 292, + 599 + ], + "type": "text", + "content": "Semi-supervised Clustering By virtue of a few labeled data, semi-supervised clustering usually produces better results compared with unsupervised counterparts. PCK-Means (Basu et al., 2004) proposes that the clustering can be supervised by pairwise constraints between samples in the dataset. KCL (Hsu et al., 2017) transfers knowledge in the form of pairwise similarity predictions first and learns a clustering network to transfer learning. Along this line, MCL (Hsu et al., 2019) further formulates multi-classification as meta classification that predicts pairwise similarity and generalizes the paradigm to various settings. DTC (Han et al., 2019) extends the DEC algorithm and proposes a mechanism to estimate the number of new images categories using labeled data. When it comes to the field of text clustering, CDAC+ (Lin et al., 2020) combines the pairwise constraints and target distribution to discover new intents while DeepAligned (Zhang et al., 2021) introduces an alignment strategy to improve the clustering consistency. Recently, SCL (Shen et al., 2021) incorporates a strong backbone MPNet in the Siamese Network structure with pairwise contrastive loss to learn the sentence representations. Similarly, MTP (Zhang et al., 2022) enhances sentence representation through multi-task pre-training strategy and extra data. Although these methods take known intents into account, they may suffer from knowledge forgetting during the training process. More importantly, these methods are insufficient in the probe into the intrinsic structure of unlabeled data, making it hard to distinguish the characteristics that form an intent." + } + ] + } + ], + "index": 1 + }, + { + "bbox": [ + 67, + 610, + 140, + 624 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 610, + 140, + 624 + ], + "spans": [ + { + "bbox": [ + 67, + 610, + 140, + 624 + ], + "type": "text", + "content": "3 Approach" + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 67, + 633, + 185, + 645 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 633, + 185, + 645 + ], + "spans": [ + { + "bbox": [ + 67, + 633, + 185, + 645 + ], + "type": "text", + "content": "3.1 Problem Definition" + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "spans": [ + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "text", + "content": "Given as input an labeled dataset " + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "inline_equation", + "content": "D^{l} = \\{x_{i}^{l}, i = 1, \\dots, N\\}" + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "text", + "content": " where intents " + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "inline_equation", + "content": "Y^{l} = \\{y_{i}^{l}, i = 1, \\dots, N\\}" + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "text", + "content": " are known and an unlabeled dataset " + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "inline_equation", + "content": "D^{u} = \\{x_{i}^{u}, i = 1, \\dots, M\\}" + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "text", + "content": ". Our goal is to produce intent assignments as output by clustering (or partitioning) the whole dataset " + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "inline_equation", + "content": "D" + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "text", + "content": ", which denotes " + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "inline_equation", + "content": "D = D^{l} \\cup D^{u}" + }, + { + "bbox": [ + 67, + 650, + 291, + 773 + ], + "type": "text", + "content": ". Directly optimizing the goal is intractable as the lack of knowledge about new intents and the intrinsic structure of unlabeled data. As analyzed" + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 302, + 71, + 526, + 139 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 71, + 526, + 139 + ], + "spans": [ + { + "bbox": [ + 302, + 71, + 526, + 139 + ], + "type": "text", + "content": "in Section 1, discovering intents should not damage but be beneficial for the identification of known intents, which can be formulated to optimize " + }, + { + "bbox": [ + 302, + 71, + 526, + 139 + ], + "type": "inline_equation", + "content": "p(Y^l |D^l,D;\\theta)" + }, + { + "bbox": [ + 302, + 71, + 526, + 139 + ], + "type": "text", + "content": ". Since " + }, + { + "bbox": [ + 302, + 71, + 526, + 139 + ], + "type": "inline_equation", + "content": "D^{l}\\subset D" + }, + { + "bbox": [ + 302, + 71, + 526, + 139 + ], + "type": "text", + "content": ", the optimization objective can be written as: " + }, + { + "bbox": [ + 302, + 71, + 526, + 139 + ], + "type": "inline_equation", + "content": "p(Y^l |D;\\theta)" + }, + { + "bbox": [ + 302, + 71, + 526, + 139 + ], + "type": "text", + "content": "." + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "spans": [ + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "text", + "content": "Denote our latent variable (representing intent assignments obtained by clustering on " + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "inline_equation", + "content": "D" + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "text", + "content": ") by " + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "inline_equation", + "content": "Z" + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "text", + "content": " and let " + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}_D" + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "text", + "content": " be a possible value of " + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "inline_equation", + "content": "Z" + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "text", + "content": ". Using Bayes rule, " + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "inline_equation", + "content": "p(Y^l | D; \\theta)" + }, + { + "bbox": [ + 302, + 139, + 526, + 193 + ], + "type": "text", + "content": " can be calculated as:" + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 309, + 201, + 525, + 241 + ], + "type": "interline_equation", + "angle": 0, + "lines": [ + { + "bbox": [ + 309, + 201, + 525, + 241 + ], + "spans": [ + { + "bbox": [ + 309, + 201, + 525, + 241 + ], + "type": "interline_equation", + "content": "p \\left(Y ^ {l} \\mid D\\right) = \\sum_ {\\mathcal {Z} _ {\\mathcal {D}} \\in Z} p \\left(Y ^ {l} \\mid \\mathcal {Z} _ {D}, D; \\theta\\right) p \\left(\\mathcal {Z} _ {D} \\mid D; \\theta\\right). \\tag {1}", + "image_path": "c6b3869882ade54bc714f3d618f9a989ba185ad46ec01c0bea0195f48a17de9b.jpg" + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 302, + 243, + 525, + 283 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 243, + 525, + 283 + ], + "spans": [ + { + "bbox": [ + 302, + 243, + 525, + 283 + ], + "type": "text", + "content": "Exactly optimizing Eq.(1) is intractable due to its combinatorial nature. Consider a specific value " + }, + { + "bbox": [ + 302, + 243, + 525, + 283 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}_D" + }, + { + "bbox": [ + 302, + 243, + 525, + 283 + ], + "type": "text", + "content": ", the log-likelihood can be simplified as:" + } + ] + } + ], + "index": 8 + }, + { + "bbox": [ + 310, + 291, + 525, + 320 + ], + "type": "interline_equation", + "angle": 0, + "lines": [ + { + "bbox": [ + 310, + 291, + 525, + 320 + ], + "spans": [ + { + "bbox": [ + 310, + 291, + 525, + 320 + ], + "type": "interline_equation", + "content": "\\mathcal {L} _ {o b j} = \\log p \\left(Y ^ {l} \\mid \\mathcal {Z} _ {\\mathcal {D}}, D; \\theta\\right) + \\log p \\left(\\mathcal {Z} _ {\\mathcal {D}} \\mid D; \\theta\\right). \\tag {2}", + "image_path": "eb27e07cc0f83fae8527eaa53503176657667e1e58ec7d65fc4491f1a5736e59.jpg" + } + ] + } + ], + "index": 9 + }, + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "spans": [ + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "text", + "content": "Our goal is get better " + }, + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}_D" + }, + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "text", + "content": " (i.e. intent discovery) by optimizing " + }, + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "inline_equation", + "content": "\\mathcal{L}_{obj}" + }, + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "text", + "content": ", and a better " + }, + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}_D" + }, + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "text", + "content": " can also help optimize " + }, + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "inline_equation", + "content": "\\mathcal{L}_{obj}" + }, + { + "bbox": [ + 302, + 329, + 525, + 370 + ], + "type": "text", + "content": "." + } + ] + } + ], + "index": 10 + }, + { + "bbox": [ + 302, + 379, + 516, + 405 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 379, + 516, + 405 + ], + "spans": [ + { + "bbox": [ + 302, + 379, + 516, + 405 + ], + "type": "text", + "content": "3.2 Intent Representation and Transferring Knowledge" + } + ] + } + ], + "index": 11 + }, + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "spans": [ + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "text", + "content": "Before optimizing " + }, + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "inline_equation", + "content": "\\mathcal{L}_{obj}" + }, + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "text", + "content": ", we want to transfer knowledge from the labeled corpus to initialize the model. Transferring knowledge has been widely studied and types of transferred knowledge have been proposed for a variety of circumstances. Considering the excellent generalization of the pre-trained model, we fine-tune BERT (Devlin et al., 2018) with labeled corpus under the supervision of cross entropy as suggested in (Zhang et al., 2021). Given the i-th labeled utterance " + }, + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "inline_equation", + "content": "x_{i}" + }, + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "text", + "content": ", we first get its contextual embeddings by utilizing BERT and then perform mean-pooling to get sentence semantic representation " + }, + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "inline_equation", + "content": "z_{i}" + }, + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "text", + "content": ". The objective of fine-tune " + }, + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "inline_equation", + "content": "\\mathcal{L}_{ce}" + }, + { + "bbox": [ + 302, + 409, + 526, + 597 + ], + "type": "text", + "content": " as:" + } + ] + } + ], + "index": 12 + }, + { + "bbox": [ + 320, + 605, + 525, + 644 + ], + "type": "interline_equation", + "angle": 0, + "lines": [ + { + "bbox": [ + 320, + 605, + 525, + 644 + ], + "spans": [ + { + "bbox": [ + 320, + 605, + 525, + 644 + ], + "type": "interline_equation", + "content": "\\mathcal {L} _ {\\mathrm {c e}} = - \\frac {1}{N} \\sum_ {i = 1} ^ {N} \\log \\frac {\\exp \\left(\\phi \\left(z _ {i}\\right) ^ {y _ {i}}\\right)}{\\sum_ {j = 1} ^ {K ^ {l}} \\exp \\left(\\phi \\left(z _ {i}\\right) ^ {j}\\right)}, \\tag {3}", + "image_path": "dd3952e7a7a36015778f317796a183f9185f4a20d5bb8aa01b77b4c426d0b0cf.jpg" + } + ] + } + ], + "index": 13 + }, + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "spans": [ + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "text", + "content": "where " + }, + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "inline_equation", + "content": "\\phi (\\cdot)" + }, + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "text", + "content": " represents a linear classifier and " + }, + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "inline_equation", + "content": "\\phi (z_i)^j" + }, + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "text", + "content": " denotes the logits of the " + }, + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "inline_equation", + "content": "j" + }, + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "text", + "content": "-th class, " + }, + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "inline_equation", + "content": "K^l" + }, + { + "bbox": [ + 302, + 652, + 525, + 692 + ], + "type": "text", + "content": " denotes the total number of known intents." + } + ] + } + ], + "index": 14 + }, + { + "bbox": [ + 302, + 702, + 487, + 714 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 702, + 487, + 714 + ], + "spans": [ + { + "bbox": [ + 302, + 702, + 487, + 714 + ], + "type": "text", + "content": "3.3 EM Framework for Optimization" + } + ] + } + ], + "index": 15 + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "spans": [ + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "text", + "content": "Intent Assignments " + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "text", + "content": " (In the following, we omit the subscript " + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "inline_equation", + "content": "D" + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "text", + "content": " of " + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}_D" + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "text", + "content": " for clarity.) Specific intent assignments " + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "text", + "content": " involves two components: how to determine " + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "text", + "content": " representing how many intents in" + } + ] + } + ], + "index": 16 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3773" + } + ] + } + ], + "index": 17 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 2 + }, + { + "para_blocks": [ + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "spans": [ + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "text", + "content": "dataset " + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "inline_equation", + "content": "D" + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "text", + "content": " and how to assign the utterance in the dataset to corresponding intent. Many methods (Han et al., 2019; Shen et al., 2021) have been proposed to estimate " + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "text", + "content": ". Considering the tradeoff between efficiency and effect, we follow Zhang et al. (2021) (see Appendix D for discussions on more accurate estimating " + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "text", + "content": " under our framework) and first set a rough value " + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "inline_equation", + "content": "\\mathcal{K}" + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "text", + "content": " (e.g., the multiple of the ground truth number) for " + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "text", + "content": " and then refine it by dropping clusters (formed by grouping the dataset " + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "inline_equation", + "content": "D" + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "text", + "content": " into " + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "inline_equation", + "content": "\\mathcal{K}" + }, + { + "bbox": [ + 67, + 71, + 291, + 313 + ], + "type": "text", + "content": " semantic clusters using k-means) whose size is less than a certain threshold. After estimating how many intents are contained in the dataset, we perform k-means to assign cluster assignments as (pseudo) intent to each utterance. Next, we discuss in detail how to further optimize Eq.(2) with Expectation-Maximization (EM) algorithm framework." + } + ] + } + ], + "index": 0 + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "spans": [ + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "text", + "content": "E-Step We have assigned a specific intent assignment " + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "text", + "content": " to latent variable " + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "inline_equation", + "content": "Z" + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "text", + "content": " based on prior knowledge. We expect that the intent assignments " + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "text", + "content": " should reflect what characteristics make a good intent in general rather than specific intents. Therefore, the standard cross entropy loss formed by specific pseudo labels adopted by Caron et al. (2018); Zhang et al. (2021) can not achieve this purpose, and even the model may be confused by the false pseudo labels according to Wang et al. (2021). To better reflect the intrinsic structure of dataset " + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "inline_equation", + "content": "D" + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "text", + "content": " and learn friendly features for intent assignments, we hope that intent assignments " + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "text", + "content": " can make utterances with the same intent close enough and pull utterances with different intents far away in the semantic feature space. Inspired by contrastive learning paradigm, we estimate the posterior " + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "inline_equation", + "content": "p(\\mathcal{Z}|D;\\theta)" + }, + { + "bbox": [ + 67, + 317, + 291, + 549 + ], + "type": "text", + "content": ":" + } + ] + } + ], + "index": 1 + }, + { + "bbox": [ + 70, + 565, + 290, + 674 + ], + "type": "interline_equation", + "angle": 0, + "lines": [ + { + "bbox": [ + 70, + 565, + 290, + 674 + ], + "spans": [ + { + "bbox": [ + 70, + 565, + 290, + 674 + ], + "type": "interline_equation", + "content": "\\begin{array}{l} p (\\mathcal {Z} | D; \\theta) = \\prod_ {C _ {k} \\in \\mathcal {Z}} p \\left(C _ {k} | D; \\theta\\right) (4) \\\\ = \\prod_ {C _ {k} \\in \\mathcal {Z}} \\prod_ {x \\in C _ {k}} p (x \\in C _ {k} | D; \\theta) (5) \\\\ \\propto \\prod_ {C _ {k} \\in \\mathcal {Z}} \\prod_ {x \\in C _ {k}} \\frac {\\sum_ {x ^ {+} \\in C _ {k}} e x p \\left(x \\cdot x ^ {+}\\right)}{\\sum_ {x ^ {p} \\in D \\backslash \\{x \\}} e x p \\left(x \\cdot x ^ {p}\\right)}, (6) \\\\ \\end{array}", + "image_path": "0a5f3e6b52dff30382e8cab0e74d1a2aa9f8585c1997a767c5d453d24cbe101d.jpg" + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "spans": [ + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "text", + "content": "where " + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "inline_equation", + "content": "C_k" + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "text", + "content": " is a cluster produced by " + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "text", + "content": ", and " + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "inline_equation", + "content": "x \\cdot x^+" + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "text", + "content": " is calculated by consine between features. To optimize Eq.(2), we also need to compute " + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "inline_equation", + "content": "p(Y^l | \\mathcal{Z}, D; \\theta)" + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "text", + "content": ". Exactly computing is difficult as the label space in " + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "text", + "content": " does not match that of " + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "inline_equation", + "content": "Y^l" + }, + { + "bbox": [ + 67, + 692, + 291, + 772 + ], + "type": "text", + "content": ". Consider the catastrophic forgetting as in Deepaligned" + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 303, + 70, + 524, + 84 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 303, + 70, + 524, + 84 + ], + "spans": [ + { + "bbox": [ + 303, + 70, + 524, + 84 + ], + "type": "text", + "content": "mentioned above, we approximate " + }, + { + "bbox": [ + 303, + 70, + 524, + 84 + ], + "type": "inline_equation", + "content": "p(Y^l|\\mathcal{Z},D;\\theta)" + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 313, + 95, + 524, + 179 + ], + "type": "interline_equation", + "angle": 0, + "lines": [ + { + "bbox": [ + 313, + 95, + 524, + 179 + ], + "spans": [ + { + "bbox": [ + 313, + 95, + 524, + 179 + ], + "type": "interline_equation", + "content": "\\begin{array}{l} p \\left(Y ^ {l} \\mid \\mathcal {Z}, D; \\theta\\right) = p \\left(Y ^ {l} \\mid \\mathcal {Z}, D ^ {l}, D ^ {u}; \\theta\\right) (7) \\\\ \\propto p \\left(Y ^ {l} \\mid D ^ {l}, \\hat {D} ^ {l} \\left(D ^ {u}, \\mathcal {Z}\\right); \\theta\\right) (8) \\\\ \\propto \\prod_ {x \\in D ^ {l} \\cup \\hat {D} ^ {l}} \\frac {\\exp \\left(\\phi (x) ^ {y}\\right)}{\\sum_ {j = 1} ^ {K ^ {l}} \\exp \\left(\\phi (x) ^ {j}\\right)}, (9) \\\\ \\end{array}", + "image_path": "f9aff3ba10109957b9112cec62edc38607092f787c2d9a25e4f8fb0db92d3e6e.jpg" + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "spans": [ + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": "where " + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "inline_equation", + "content": "\\phi (\\cdot)" + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": " denotes same linear classifier as Eq.(3), " + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "inline_equation", + "content": "y" + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": " denotes the label of " + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "inline_equation", + "content": "x" + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": ", " + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "inline_equation", + "content": "K^l" + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": " denotes the total number of known intents and " + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "inline_equation", + "content": "D^{l}" + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": " denotes labeled data in " + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "inline_equation", + "content": "D" + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": ". " + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "inline_equation", + "content": "\\hat{D}^l (D^u,\\mathcal{Z})" + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": " refers to the set of samples in " + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "inline_equation", + "content": "D^{u}" + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": " that can be considered as known intents after the operation of " + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 302, + 191, + 526, + 272 + ], + "type": "text", + "content": "." + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 311, + 284, + 524, + 299 + ], + "type": "interline_equation", + "angle": 0, + "lines": [ + { + "bbox": [ + 311, + 284, + 524, + 299 + ], + "spans": [ + { + "bbox": [ + 311, + 284, + 524, + 299 + ], + "type": "interline_equation", + "content": "\\hat {D} ^ {l} = \\left\\{\\left(x, y ^ {l}\\right) \\mid x \\in \\mathcal {N} _ {\\mathcal {Z}} \\left(x ^ {l}\\right), \\left(x ^ {l}, y ^ {l}\\right) \\in D ^ {l} \\right\\}, \\tag {10}", + "image_path": "13eae0ff1b6073cc21a16381cefa44da5ea379043c74dd1e77d269f25cd43059.jpg" + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "spans": [ + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "content": "where " + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "inline_equation", + "content": "x^l" + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "content": " is the sample from " + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "inline_equation", + "content": "D^l" + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "content": ", " + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "inline_equation", + "content": "y^l" + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "content": " is the label of " + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "inline_equation", + "content": "x^l" + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "content": ". " + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "inline_equation", + "content": "\\mathcal{N}_{\\mathcal{Z}}(x^l)" + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "content": " is the unlabeled nearest neighbor samples set that belongs to the same cluster (divided by " + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "content": ") as " + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "inline_equation", + "content": "x^l" + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "content": ". See Appendix E for specific benefits from " + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 302, + 309, + 525, + 433 + ], + "type": "text", + "content": ". The labeled data is tailored to model training. On the one hand, the model will not lose the knowledge transferred from labeled data, on the other hand, the model can constantly explore the intrinsic structure of the dataset by utilizing it." + } + ] + } + ], + "index": 8 + }, + { + "bbox": [ + 302, + 434, + 525, + 500 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 434, + 525, + 500 + ], + "spans": [ + { + "bbox": [ + 302, + 434, + 525, + 500 + ], + "type": "text", + "content": "M-Step In the M-step, we update the " + }, + { + "bbox": [ + 302, + 434, + 525, + 500 + ], + "type": "inline_equation", + "content": "\\theta" + }, + { + "bbox": [ + 302, + 434, + 525, + 500 + ], + "type": "text", + "content": " in Eq. (2). In addition to bringing Eq. (4) and Eq. (7) into Eq. (2), we introduce two hyper-parameters to help optimize objectives. The overall loss " + }, + { + "bbox": [ + 302, + 434, + 525, + 500 + ], + "type": "inline_equation", + "content": "\\mathcal{L}" + }, + { + "bbox": [ + 302, + 434, + 525, + 500 + ], + "type": "text", + "content": " can be formulated as follows:" + } + ] + } + ], + "index": 9 + }, + { + "bbox": [ + 314, + 511, + 524, + 613 + ], + "type": "interline_equation", + "angle": 0, + "lines": [ + { + "bbox": [ + 314, + 511, + 524, + 613 + ], + "spans": [ + { + "bbox": [ + 314, + 511, + 524, + 613 + ], + "type": "interline_equation", + "content": "\\begin{array}{l} \\mathcal {L} = \\lambda \\cdot \\sum_ {C _ {k} \\in \\mathcal {Z}} \\sum_ {x \\in C _ {k}} \\log \\frac {\\sum_ {x ^ {+} \\in C _ {k}} e x p \\left(\\frac {x \\cdot x ^ {+}}{\\tau}\\right)}{\\sum_ {x ^ {p} \\in D \\backslash \\{x \\}} e x p \\left(\\frac {x \\cdot x ^ {p}}{\\tau}\\right)} (11) \\\\ + (1 - \\lambda) \\cdot \\sum_ {x \\in D ^ {l} \\cup \\hat {D} ^ {l}} \\log \\frac {\\exp \\left(\\phi (x) ^ {y}\\right)}{\\sum_ {j = 1} ^ {K ^ {l}} \\exp \\left(\\phi (x) ^ {j}\\right)}, (12) \\\\ \\end{array}", + "image_path": "dd247c7e38b99b76baea27bde1ed162b7a04af784fe80cdb36f4100686537954.jpg" + } + ] + } + ], + "index": 10 + }, + { + "bbox": [ + 302, + 624, + 525, + 677 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 624, + 525, + 677 + ], + "spans": [ + { + "bbox": [ + 302, + 624, + 525, + 677 + ], + "type": "text", + "content": "where " + }, + { + "bbox": [ + 302, + 624, + 525, + 677 + ], + "type": "inline_equation", + "content": "\\lambda" + }, + { + "bbox": [ + 302, + 624, + 525, + 677 + ], + "type": "text", + "content": " is to balance the proportion of two log-likelihoods (discussed in Section 5.3) during training, " + }, + { + "bbox": [ + 302, + 624, + 525, + 677 + ], + "type": "inline_equation", + "content": "\\tau" + }, + { + "bbox": [ + 302, + 624, + 525, + 677 + ], + "type": "text", + "content": " is a hyper-parameter for temperature scaling which often appears in contrastive learning." + } + ] + } + ], + "index": 11 + }, + { + "bbox": [ + 302, + 678, + 525, + 719 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 678, + 525, + 719 + ], + "spans": [ + { + "bbox": [ + 302, + 678, + 525, + 719 + ], + "type": "text", + "content": "We summarize the whole training process of the EM framework in Algorithm 1 and the model architecture of our approach as shown in Figure 2." + } + ] + } + ], + "index": 12 + }, + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "spans": [ + { + "bbox": [ + 302, + 719, + 525, + 772 + ], + "type": "text", + "content": "It is worth noting that our method actually proposes a framework where probability estimation can flexibly adopt different ways for a variety of circumstances." + } + ] + } + ], + "index": 13 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3774" + } + ] + } + ], + "index": 14 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 3 + }, + { + "para_blocks": [ + { + "type": "image", + "bbox": [ + 69, + 68, + 526, + 268 + ], + "blocks": [ + { + "bbox": [ + 69, + 68, + 526, + 268 + ], + "lines": [ + { + "bbox": [ + 69, + 68, + 526, + 268 + ], + "spans": [ + { + "bbox": [ + 69, + 68, + 526, + 268 + ], + "type": "image", + "image_path": "44e2453795e7a95c9a45d55a50ab00dbe284bb40a79249a25e12ed48211feb1f.jpg" + } + ] + } + ], + "index": 0, + "angle": 0, + "type": "image_body" + }, + { + "bbox": [ + 66, + 275, + 526, + 336 + ], + "lines": [ + { + "bbox": [ + 66, + 275, + 526, + 336 + ], + "spans": [ + { + "bbox": [ + 66, + 275, + 526, + 336 + ], + "type": "text", + "content": "Figure 2: The model architecture of our implementation based on the proposed probabilistic framework. (a) Firstly, we transfer knowledge by fine-tuning BERT with labeled data. (b) Then, we perform intent assignments on full data (labeled and unlabeled data) and reflect the intrinsic structure of data in E-step. (c) And alleviate the forgetting of prior knowledge and update model parameters in M-step. The snow mark represents this step only needs forward without calculating the gradient." + } + ] + } + ], + "index": 1, + "angle": 0, + "type": "image_caption" + } + ], + "index": 0 + }, + { + "bbox": [ + 68, + 356, + 265, + 369 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 356, + 265, + 369 + ], + "spans": [ + { + "bbox": [ + 68, + 356, + 265, + 369 + ], + "type": "text", + "content": "Algorithm 1 EM algorithm for optimization" + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 68, + 370, + 289, + 398 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 370, + 289, + 398 + ], + "spans": [ + { + "bbox": [ + 68, + 370, + 289, + 398 + ], + "type": "text", + "content": "Input: " + }, + { + "bbox": [ + 68, + 370, + 289, + 398 + ], + "type": "inline_equation", + "content": "D^{l} = \\{x_{i}^{l}, i = 1, \\dots, N\\}" + }, + { + "bbox": [ + 68, + 370, + 289, + 398 + ], + "type": "text", + "content": ", " + }, + { + "bbox": [ + 68, + 370, + 289, + 398 + ], + "type": "inline_equation", + "content": "Y^{l} = \\{y_{i}^{l}, i = 1, \\dots, N\\}" + }, + { + "bbox": [ + 68, + 370, + 289, + 398 + ], + "type": "text", + "content": ", " + }, + { + "bbox": [ + 68, + 370, + 289, + 398 + ], + "type": "inline_equation", + "content": "D^{u} = \\{x_{i}^{u}, i = 1, \\dots, M\\}" + }, + { + "bbox": [ + 68, + 370, + 289, + 398 + ], + "type": "text", + "content": "." + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 69, + 400, + 217, + 412 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 69, + 400, + 217, + 412 + ], + "spans": [ + { + "bbox": [ + 69, + 400, + 217, + 412 + ], + "type": "text", + "content": "Parameter: Model parameters " + }, + { + "bbox": [ + 69, + 400, + 217, + 412 + ], + "type": "inline_equation", + "content": "\\theta" + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 75, + 415, + 290, + 548 + ], + "type": "list", + "angle": 0, + "index": 12, + "blocks": [ + { + "bbox": [ + 75, + 415, + 253, + 428 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 75, + 415, + 253, + 428 + ], + "spans": [ + { + "bbox": [ + 75, + 415, + 253, + 428 + ], + "type": "text", + "content": "1: Initialize " + }, + { + "bbox": [ + 75, + 415, + 253, + 428 + ], + "type": "inline_equation", + "content": "\\theta" + }, + { + "bbox": [ + 75, + 415, + 253, + 428 + ], + "type": "text", + "content": " by transferring knowledge." + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 75, + 428, + 192, + 440 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 75, + 428, + 192, + 440 + ], + "spans": [ + { + "bbox": [ + 75, + 428, + 192, + 440 + ], + "type": "text", + "content": "2: while not converged do" + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 75, + 442, + 290, + 468 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 75, + 442, + 290, + 468 + ], + "spans": [ + { + "bbox": [ + 75, + 442, + 290, + 468 + ], + "type": "text", + "content": "3: Perform intent assignment " + }, + { + "bbox": [ + 75, + 442, + 290, + 468 + ], + "type": "inline_equation", + "content": "(\\mathcal{Z})" + }, + { + "bbox": [ + 75, + 442, + 290, + 468 + ], + "type": "text", + "content": " using K-means; " + }, + { + "bbox": [ + 75, + 442, + 290, + 468 + ], + "type": "inline_equation", + "content": "\\backslash E" + }, + { + "bbox": [ + 75, + 442, + 290, + 468 + ], + "type": "text", + "content": "-Step" + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "spans": [ + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "text", + "content": "4: Compute " + }, + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "inline_equation", + "content": "P(Y^l | \\mathcal{Z}, D; \\theta)" + }, + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "text", + "content": " and " + }, + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "inline_equation", + "content": "P(\\mathcal{Z} | D; \\theta)" + }, + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "text", + "content": " using current parameters " + }, + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "inline_equation", + "content": "\\theta" + }, + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "text", + "content": "; " + }, + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "inline_equation", + "content": "\\backslash E" + }, + { + "bbox": [ + 75, + 469, + 290, + 496 + ], + "type": "text", + "content": "-Step" + } + ] + } + ], + "index": 8 + }, + { + "bbox": [ + 75, + 497, + 289, + 523 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 75, + 497, + 289, + 523 + ], + "spans": [ + { + "bbox": [ + 75, + 497, + 289, + 523 + ], + "type": "text", + "content": "5: Update model parameters " + }, + { + "bbox": [ + 75, + 497, + 289, + 523 + ], + "type": "inline_equation", + "content": "\\theta" + }, + { + "bbox": [ + 75, + 497, + 289, + 523 + ], + "type": "text", + "content": " to maximize the log-likelihood " + }, + { + "bbox": [ + 75, + 497, + 289, + 523 + ], + "type": "inline_equation", + "content": "\\mathcal{L}" + }, + { + "bbox": [ + 75, + 497, + 289, + 523 + ], + "type": "text", + "content": " in Eq. (11). " + }, + { + "bbox": [ + 75, + 497, + 289, + 523 + ], + "type": "inline_equation", + "content": "\\backslash M" + }, + { + "bbox": [ + 75, + 497, + 289, + 523 + ], + "type": "text", + "content": "-Step" + } + ] + } + ], + "index": 9 + }, + { + "bbox": [ + 75, + 524, + 134, + 534 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 75, + 524, + 134, + 534 + ], + "spans": [ + { + "bbox": [ + 75, + 524, + 134, + 534 + ], + "type": "text", + "content": "6: end while" + } + ] + } + ], + "index": 10 + }, + { + "bbox": [ + 75, + 537, + 127, + 548 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 75, + 537, + 127, + 548 + ], + "spans": [ + { + "bbox": [ + 75, + 537, + 127, + 548 + ], + "type": "text", + "content": "7: return " + }, + { + "bbox": [ + 75, + 537, + 127, + 548 + ], + "type": "inline_equation", + "content": "\\theta" + } + ] + } + ], + "index": 11 + } + ], + "sub_type": "text" + }, + { + "bbox": [ + 67, + 571, + 154, + 586 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 571, + 154, + 586 + ], + "spans": [ + { + "bbox": [ + 67, + 571, + 154, + 586 + ], + "type": "text", + "content": "4 Experiments" + } + ] + } + ], + "index": 13 + }, + { + "bbox": [ + 67, + 593, + 135, + 605 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 593, + 135, + 605 + ], + "spans": [ + { + "bbox": [ + 67, + 593, + 135, + 605 + ], + "type": "text", + "content": "4.1 Datasets" + } + ] + } + ], + "index": 14 + }, + { + "bbox": [ + 67, + 611, + 290, + 664 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 611, + 290, + 664 + ], + "spans": [ + { + "bbox": [ + 67, + 611, + 290, + 664 + ], + "type": "text", + "content": "We conduct experiments on three challenging datasets to verify the effectiveness of our proposed method. The detailed statistics are shown in Appendix A." + } + ] + } + ], + "index": 15 + }, + { + "bbox": [ + 67, + 665, + 290, + 717 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 665, + 290, + 717 + ], + "spans": [ + { + "bbox": [ + 67, + 665, + 290, + 717 + ], + "type": "text", + "content": "CLINC (Larson et al., 2019) is a popular intent dataset designed for out-of-domain intent detection, which contains 150 intents from 10 domains and 22500 utterances." + } + ] + } + ], + "index": 16 + }, + { + "bbox": [ + 67, + 719, + 289, + 757 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 719, + 289, + 757 + ], + "spans": [ + { + "bbox": [ + 67, + 719, + 289, + 757 + ], + "type": "text", + "content": "BANKING (Casanueva et al., 2020) is a banking dataset covering 77 intents and containing 13083 utterances." + } + ] + } + ], + "index": 17 + }, + { + "bbox": [ + 78, + 760, + 289, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 78, + 760, + 289, + 772 + ], + "spans": [ + { + "bbox": [ + 78, + 760, + 289, + 772 + ], + "type": "text", + "content": "StackOverflow represents a dataset dispersed" + } + ] + } + ], + "index": 18 + }, + { + "bbox": [ + 302, + 356, + 525, + 396 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 356, + 525, + 396 + ], + "spans": [ + { + "bbox": [ + 302, + 356, + 525, + 396 + ], + "type": "text", + "content": "through Kaggle.com, encompassing 20 intents and 20000 utterances. We adopt the dataset processed by Xu et al. (2015)." + } + ] + } + ], + "index": 19 + }, + { + "bbox": [ + 302, + 419, + 481, + 431 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 419, + 481, + 431 + ], + "spans": [ + { + "bbox": [ + 302, + 419, + 481, + 431 + ], + "type": "text", + "content": "4.2 Baseline and Evaluation Metrics" + } + ] + } + ], + "index": 20 + }, + { + "bbox": [ + 301, + 444, + 525, + 647 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 301, + 444, + 525, + 647 + ], + "spans": [ + { + "bbox": [ + 301, + 444, + 525, + 647 + ], + "type": "text", + "content": "We follow Lin et al. (2020); Zhang et al. (2021) and divide the baselines to be compared into two categories: Unsupervised (Unsup.) and Semi-supervised (Semi-sup.). All methods are introduced in Related Work (Section 2). For fairness, we uniformly use BERT as the backbone network when compared with the above methods. We also note that SCL (Shen et al., 2021) uses a stronger backbone network to obtain semantically meaningful sentence representations, and we also use the same backbone network in comparison with these methods. Similarly, when comparing with MTP-CLNN (Zhang et al., 2022), we use the same additional data and multi-task pre-training to enhance sentence representation." + } + ] + } + ], + "index": 21 + }, + { + "bbox": [ + 302, + 651, + 525, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 651, + 525, + 772 + ], + "spans": [ + { + "bbox": [ + 302, + 651, + 525, + 772 + ], + "type": "text", + "content": "To evaluate clustering results, we follow existing methods (Lin et al., 2020; Zhang et al., 2021) and adopt three widely recognized metrics: Normalized Mutual Information (NMI), Adjusted Rand Index (ARI), and clustering accuracy (ACC). It should be noted that when calculating ACC, the Hungarian algorithm is adopted to find the optimal alignment between the pseudo labels and the ground-truth labels as following Zhang et al. (2021)." + } + ] + } + ], + "index": 22 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3775" + } + ] + } + ], + "index": 23 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 4 + }, + { + "para_blocks": [ + { + "type": "table", + "bbox": [ + 69, + 68, + 526, + 262 + ], + "blocks": [ + { + "bbox": [ + 69, + 68, + 526, + 262 + ], + "lines": [ + { + "bbox": [ + 69, + 68, + 526, + 262 + ], + "spans": [ + { + "bbox": [ + 69, + 68, + 526, + 262 + ], + "type": "table", + "html": "
MethodsCLINCBANKINGStackOverflow
NMIARIACCNMIARIACCNMIARIACC
Unsup.K-means70.8926.8645.0654.5712.1829.558.241.4613.55
AC73.0727.7044.0357.0713.3131.5810.622.1214.66
SAE-KM73.1329.9546.7563.7922.8538.9232.6217.0734.44
DEC74.8327.4646.8967.7827.2141.2910.883.7613.09
DCN75.6631.1549.2967.5426.8141.9931.0915.4534.26
DAC78.4040.4955.9447.3514.2427.4114.712.7616.30
DeepCluster65.5819.1135.7041.778.9520.69---
Semi-sup.PCKMeans68.7035.4054.6148.2216.2432.6617.265.3524.16
KCL(BERT)86.8258.7968.8675.2146.7260.158.847.8113.94
MCL(BERT)87.7259.9269.6675.6847.4361.14---
CDAC+86.6554.3369.8972.2540.9753.8369.8452.5973.48
DTC(BERT)90.5465.0274.1576.5544.7056.51---
DeepAligned93.9580.3387.2979.9154.3466.5976.4762.5280.26
Ours95.010.4983.001.5488.991.0584.020.8262.922.0074.031.3777.321.0265.702.0780.501.14
", + "image_path": "c3ccd9494ee062a27a9994bc7206c8936c8773408a28666f3ecb9f9eadcdb1a9.jpg" + } + ] + } + ], + "index": 0, + "angle": 0, + "type": "table_body" + } + ], + "index": 0 + }, + { + "bbox": [ + 67, + 338, + 199, + 353 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 338, + 199, + 353 + ], + "spans": [ + { + "bbox": [ + 67, + 338, + 199, + 353 + ], + "type": "text", + "content": "4.3 Experimental Settings" + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 67, + 357, + 291, + 506 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 357, + 291, + 506 + ], + "spans": [ + { + "bbox": [ + 67, + 357, + 291, + 506 + ], + "type": "text", + "content": "For each dataset, " + }, + { + "bbox": [ + 67, + 357, + 291, + 506 + ], + "type": "inline_equation", + "content": "75\\%" + }, + { + "bbox": [ + 67, + 357, + 291, + 506 + ], + "type": "text", + "content": " of all intents are randomly selected as known intent, with the remaining designated as unknown. Furthermore, " + }, + { + "bbox": [ + 67, + 357, + 291, + 506 + ], + "type": "inline_equation", + "content": "10\\%" + }, + { + "bbox": [ + 67, + 357, + 291, + 506 + ], + "type": "text", + "content": " of the known intents data are chosen randomly as labeled data. We set the number of intents as ground truth in line with previous methods Lin et al. (2020); Zhang et al. (2021, 2022). Our other experimental settings are mostly the same as Lin et al. (2020); Zhang et al. (2021, 2022) for a fair comparison. We take different random seeds to run at least three rounds on the test set and report the final averaged results." + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 67, + 507, + 291, + 682 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 507, + 291, + 682 + ], + "spans": [ + { + "bbox": [ + 67, + 507, + 291, + 682 + ], + "type": "text", + "content": "Our main experiments use pre-trained BERT, which is implemented in the Huggingface Transformers², as the network backbone. We also replace the backbones of the compared baselines with the same BERT as ours. Only when comparing with SCL (Shen et al., 2021), which definitely point out that they use pre-trained MPNet (Reimers and Gurevych, 2019) as the backbone network, will we adopt the same backbone network for a fair comparison. Similarly, we will use the same additional data and the same pre-training strategy for fair comparison only when we compare with MTP (Zhang et al., 2022)." + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 67, + 683, + 291, + 752 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 683, + 291, + 752 + ], + "spans": [ + { + "bbox": [ + 67, + 683, + 291, + 752 + ], + "type": "text", + "content": "Moreover, considering the efficiency of the training process and the capacity of GPU, we only finetune the last transformer layer parameters during transferring knowledge and freeze all but the latter 6 transformer layers parameters during performing" + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 302, + 338, + 525, + 366 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 338, + 525, + 366 + ], + "spans": [ + { + "bbox": [ + 302, + 338, + 525, + 366 + ], + "type": "text", + "content": "the EM algorithm. See Appendix B for training details and parameters." + } + ] + } + ], + "index": 6 + }, + { + "type": "table", + "bbox": [ + 307, + 388, + 525, + 493 + ], + "blocks": [ + { + "bbox": [ + 67, + 269, + 525, + 320 + ], + "lines": [ + { + "bbox": [ + 67, + 269, + 525, + 320 + ], + "spans": [ + { + "bbox": [ + 67, + 269, + 525, + 320 + ], + "type": "text", + "content": "Table 1: The main results on three datasets. We re-run the result of DeepAligned by its release code. The other baselines on CLINC and BANKING are retrieved from Zhang et al. (2021). The baselines on StackOverflow are retrieved from Lin et al. (2020). All reported results are averaged over different seeds and the subscripts represent the corresponding standard deviations. See text for details." + } + ] + } + ], + "index": 1, + "angle": 0, + "type": "table_caption" + }, + { + "bbox": [ + 307, + 388, + 525, + 493 + ], + "lines": [ + { + "bbox": [ + 307, + 388, + 525, + 493 + ], + "spans": [ + { + "bbox": [ + 307, + 388, + 525, + 493 + ], + "type": "table", + "html": "
MethodsCLINCBANKING
NMIARIACCNMIARIACC
SMPNET93.3974.2883.2482.2258.8271.82
SCL94.7581.6486.9185.0465.4376.55
SCL(EP)95.2583.4488.6884.7764.4475.18
SCL(IP)94.9582.3288.2884.8264.5174.81
SCL(AA)95.1183.0988.4985.0264.9175.66
SCL(AC)94.0478.9984.5883.5262.1873.09
Ours95.940.2485.690.9090.440.7786.850.4069.280.3279.320.91
", + "image_path": "82f97537e1294814aa8f200c87d1eb8d727cddbe41828c71bf439baf8a8ff065.jpg" + } + ] + } + ], + "index": 7, + "angle": 0, + "type": "table_body" + } + ], + "index": 7 + }, + { + "type": "table", + "bbox": [ + 307, + 611, + 523, + 683 + ], + "blocks": [ + { + "bbox": [ + 302, + 501, + 526, + 562 + ], + "lines": [ + { + "bbox": [ + 302, + 501, + 526, + 562 + ], + "spans": [ + { + "bbox": [ + 302, + 501, + 526, + 562 + ], + "type": "text", + "content": "Table 2: The results compared with SCL and variants. IP, EP, AA, and AC represent four pseudo label training strategies: inclusive pairing, exclusive pairing, Alignment-A, and Alignment-C respectively. The baselines are retrieved from Shen et al. (2021)." + } + ] + } + ], + "index": 8, + "angle": 0, + "type": "table_caption" + }, + { + "bbox": [ + 307, + 611, + 523, + 683 + ], + "lines": [ + { + "bbox": [ + 307, + 611, + 523, + 683 + ], + "spans": [ + { + "bbox": [ + 307, + 611, + 523, + 683 + ], + "type": "table", + "html": "
MethodsBANKINGStackoverflow
NMIARIACCNMIARIACC
MTP85.1764.3774.2080.7071.6883.74
MTP(DAC)85.7865.2875.4380.8971.1784.20
MTP(CLNN)87.6870.4379.6181.3073.2986.56
Ours\\( 88.61_{0.96} \\)\\( 73.61_{2.61} \\)\\( 83.15_{2.93} \\)\\( 81.93_{0.24} \\)\\( 74.76_{0.55} \\)\\( 87.03_{0.21} \\)
", + "image_path": "2048bc3c39911d9465fdce95cd7487fdf7044d33a4d4c128cc65ec030ef25ad6.jpg" + } + ] + } + ], + "index": 9, + "angle": 0, + "type": "table_body" + } + ], + "index": 9 + }, + { + "bbox": [ + 302, + 690, + 525, + 751 + ], + "lines": [ + { + "bbox": [ + 302, + 690, + 525, + 751 + ], + "spans": [ + { + "bbox": [ + 302, + 690, + 525, + 751 + ], + "type": "text", + "content": "Table 3: The results compared with MTP and variants. DAC and CLNN are different strategies for intent discovery (see (Zhang et al., 2022) for details). We re-run the result of MTP(CLNN) by its released code. The other baselines are retrieved from Zhang et al. (2022)." + } + ] + } + ], + "index": 10, + "angle": 0, + "type": "text" + } + ], + "discarded_blocks": [ + { + "bbox": [ + 80, + 760, + 247, + 772 + ], + "type": "page_footnote", + "angle": 0, + "lines": [ + { + "bbox": [ + 80, + 760, + 247, + 772 + ], + "spans": [ + { + "bbox": [ + 80, + 760, + 247, + 772 + ], + "type": "inline_equation", + "content": "^{2}" + }, + { + "bbox": [ + 80, + 760, + 247, + 772 + ], + "type": "text", + "content": "https://github.com/huggingface/transformers" + } + ] + } + ], + "index": 11 + }, + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3776" + } + ] + } + ], + "index": 12 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 5 + }, + { + "para_blocks": [ + { + "bbox": [ + 68, + 71, + 206, + 83 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 71, + 206, + 83 + ], + "spans": [ + { + "bbox": [ + 68, + 71, + 206, + 83 + ], + "type": "text", + "content": "5 Results and Discussion" + } + ] + } + ], + "index": 0 + }, + { + "bbox": [ + 68, + 98, + 154, + 111 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 98, + 154, + 111 + ], + "spans": [ + { + "bbox": [ + 68, + 98, + 154, + 111 + ], + "type": "text", + "content": "5.1 Main results" + } + ] + } + ], + "index": 1 + }, + { + "bbox": [ + 67, + 120, + 291, + 349 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 120, + 291, + 349 + ], + "spans": [ + { + "bbox": [ + 67, + 120, + 291, + 349 + ], + "type": "text", + "content": "We present the main results in table 1, where the best results are highlighted in bold. It is clear from the results that our method achieves substantial improvements in all metrics and all datasets, especially in the BANKING dataset, where the number of samples in each class is imbalanced. These results illustrate the effectiveness and generalization of our method. At the same time, we note that most semi-supervised methods are better than unsupervised as a whole, which further verifies the importance of labeled data. From this perspective, we can explain why our method can be better than DeepAligned as it will constantly forget the knowledge existing in labeled data as shown in Section 1, and our method tailors the labeled data into model training to guide clustering so that our method can achieve better results." + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 67, + 353, + 291, + 570 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 353, + 291, + 570 + ], + "spans": [ + { + "bbox": [ + 67, + 353, + 291, + 570 + ], + "type": "text", + "content": "To make a fair comparison with SCL (Shen et al., 2021), we also replace the backbone network in our method with the same MPNet as SCL, keeping other parts of our method unchanged. We present the results of our comparison with SCL and various variants (See Shen et al. (2021) for the calculation of specific strategies) on CLINC and BANKING in Table 2, where the best results are also highlighted in bold. Table 3 is the result of the comparison between our method and MTP, where DAC and CLNN are different strategies for intent discovery after pretraining. To make a fair comparison, we only adopt the same additional data and pre-training strategies (based on its released code) as MTP in the first step (Finetune stage in Figure 2), and the rest of the methods remain unchanged." + } + ] + } + ], + "index": 3 + }, + { + "type": "table", + "bbox": [ + 70, + 583, + 289, + 699 + ], + "blocks": [ + { + "bbox": [ + 70, + 583, + 289, + 699 + ], + "lines": [ + { + "bbox": [ + 70, + 583, + 289, + 699 + ], + "spans": [ + { + "bbox": [ + 70, + 583, + 289, + 699 + ], + "type": "table", + "html": "
MethodsKnownUnknown
NMIARIACCNMIARIACC
DeepAligned95.4585.6991.0591.6978.9186.31
Ours(Clinc)97.1691.6195.2092.5081.1087.37
DeepAligned82.1360.6272.0078.1161.2374.74
Ours(Banking)88.0674.5385.2378.4661.8974.78
DeepAligned78.7761.8381.8659.3652.8375.20
Ours(Stackover.)80.3474.8587.5560.7257.9681.07
", + "image_path": "771429c384775daa9d93b91ccf44459cabe3df2ea3bc6154d69bee1794e19baf.jpg" + } + ] + } + ], + "index": 4, + "angle": 0, + "type": "table_body" + }, + { + "bbox": [ + 67, + 707, + 291, + 755 + ], + "lines": [ + { + "bbox": [ + 67, + 707, + 291, + 755 + ], + "spans": [ + { + "bbox": [ + 67, + 707, + 291, + 755 + ], + "type": "text", + "content": "Table 4: Comparison results on Known and Unknown intents respectively. From top to bottom, there are CLINC, BANKING and Stackoverflow datasets (the name of the dataset is filled in parentheses)." + } + ] + } + ], + "index": 5, + "angle": 0, + "type": "table_footnote" + } + ], + "index": 4 + }, + { + "bbox": [ + 303, + 71, + 474, + 84 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 303, + 71, + 474, + 84 + ], + "spans": [ + { + "bbox": [ + 303, + 71, + 474, + 84 + ], + "type": "text", + "content": "5.2 A Closer Look at Effectiveness" + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 302, + 89, + 526, + 292 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 89, + 526, + 292 + ], + "spans": [ + { + "bbox": [ + 302, + 89, + 526, + 292 + ], + "type": "text", + "content": "To better verify the effectiveness of our proposed method, we analyze the comparison results between our method and DeepAligned in a more fine-grained way. We separate the known intents and the unknown intents from the test set and compare our method with DeepAligned on these two sub-datasets respectively (the experimental settings remain unchanged). The results are shown in Table 4, which demonstrates that our method can not only effectively apply to known intents, but also can more effectively discover new intents, and the effect of improvement is substantial. This also fully conforms to our expectations that the two processes of intent discovery and recognition of known intents can be \"win-win\"." + } + ] + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 307, + 305, + 413, + 398 + ], + "blocks": [ + { + "bbox": [ + 307, + 305, + 413, + 398 + ], + "lines": [ + { + "bbox": [ + 307, + 305, + 413, + 398 + ], + "spans": [ + { + "bbox": [ + 307, + 305, + 413, + 398 + ], + "type": "image", + "image_path": "eb0057bded31e85f069db3dbb3ec929a437427bd6e514144b27bc711b59480c4.jpg" + } + ] + } + ], + "index": 8, + "angle": 0, + "type": "image_body" + } + ], + "index": 8 + }, + { + "type": "image", + "bbox": [ + 417, + 305, + 523, + 398 + ], + "blocks": [ + { + "bbox": [ + 417, + 305, + 523, + 398 + ], + "lines": [ + { + "bbox": [ + 417, + 305, + 523, + 398 + ], + "spans": [ + { + "bbox": [ + 417, + 305, + 523, + 398 + ], + "type": "image", + "image_path": "4a45f03e45e614f1882a4813fa7d41a78d39f5a2acf53005459eae5f1709f4a9.jpg" + } + ] + } + ], + "index": 9, + "angle": 0, + "type": "image_body" + } + ], + "index": 9 + }, + { + "type": "image", + "bbox": [ + 308, + 408, + 413, + 501 + ], + "blocks": [ + { + "bbox": [ + 308, + 408, + 413, + 501 + ], + "lines": [ + { + "bbox": [ + 308, + 408, + 413, + 501 + ], + "spans": [ + { + "bbox": [ + 308, + 408, + 413, + 501 + ], + "type": "image", + "image_path": "fe40bd2b1728151a9371d871c72c0b759d5d229d170187ea67e45c998be95357.jpg" + } + ] + } + ], + "index": 10, + "angle": 0, + "type": "image_body" + }, + { + "bbox": [ + 302, + 514, + 527, + 540 + ], + "lines": [ + { + "bbox": [ + 302, + 514, + 527, + 540 + ], + "spans": [ + { + "bbox": [ + 302, + 514, + 527, + 540 + ], + "type": "text", + "content": "Figure 3: The effects of " + }, + { + "bbox": [ + 302, + 514, + 527, + 540 + ], + "type": "inline_equation", + "content": "\\lambda" + }, + { + "bbox": [ + 302, + 514, + 527, + 540 + ], + "type": "text", + "content": " on CLINC and BANKING. Detailed performance are available in Appendix C." + } + ] + } + ], + "index": 12, + "angle": 0, + "type": "image_caption" + } + ], + "index": 10 + }, + { + "type": "image", + "bbox": [ + 417, + 409, + 522, + 501 + ], + "blocks": [ + { + "bbox": [ + 417, + 409, + 522, + 501 + ], + "lines": [ + { + "bbox": [ + 417, + 409, + 522, + 501 + ], + "spans": [ + { + "bbox": [ + 417, + 409, + 522, + 501 + ], + "type": "image", + "image_path": "15134a23c05b36ef11f2a161ee98dec1cca83fa118eb7c9a0db286d4f136cde5.jpg" + } + ] + } + ], + "index": 11, + "angle": 0, + "type": "image_body" + } + ], + "index": 11 + }, + { + "bbox": [ + 302, + 565, + 502, + 578 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 565, + 502, + 578 + ], + "spans": [ + { + "bbox": [ + 302, + 565, + 502, + 578 + ], + "type": "text", + "content": "5.3 Effect of Exploration and Utilization" + } + ] + } + ], + "index": 13 + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "spans": [ + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "text", + "content": "In objective function Eq. (11), we use " + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "inline_equation", + "content": "\\lambda" + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "text", + "content": " to reconcile the effects of the two log-likelihoods. Intuitively, the first term is used to explore the intrinsic structure of unlabeled data, and the second term is used to strengthen the knowledge transferred from labeled data to utilize. We vary the value of " + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "inline_equation", + "content": "\\lambda" + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "text", + "content": " and conduct experiments on CLINC and BANKING to explore the effect of " + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "inline_equation", + "content": "\\lambda" + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "text", + "content": ", which also reflects the inference of exploration and utilization. As shown in Figure 3, only utilizing labeled data (" + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "inline_equation", + "content": "\\lambda = 0.0" + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "text", + "content": ") or only exploring (" + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "inline_equation", + "content": "\\lambda = 1.0" + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "text", + "content": ") the intrinsic structure will not achieve good results (below average). Interestingly, on all metrics and datasets, the effect of " + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "inline_equation", + "content": "\\lambda" + }, + { + "bbox": [ + 301, + 584, + 526, + 772 + ], + "type": "text", + "content": " shows a similar trend (increase first and then" + } + ] + } + ], + "index": 14 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3777" + } + ] + } + ], + "index": 15 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 6 + }, + { + "para_blocks": [ + { + "bbox": [ + 67, + 71, + 291, + 153 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 71, + 291, + 153 + ], + "spans": [ + { + "bbox": [ + 67, + 71, + 291, + 153 + ], + "type": "text", + "content": "decrease), which indicates that we can adjust the value of " + }, + { + "bbox": [ + 67, + 71, + 291, + 153 + ], + "type": "inline_equation", + "content": "\\lambda" + }, + { + "bbox": [ + 67, + 71, + 291, + 153 + ], + "type": "text", + "content": " to give full play to the role of both so that the model can make better use of known knowledge to discover intents accurately. This result shows that if the model wants to achieve good results, exploration and utilization are indispensable." + } + ] + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 73, + 167, + 286, + 259 + ], + "blocks": [ + { + "bbox": [ + 73, + 167, + 286, + 259 + ], + "lines": [ + { + "bbox": [ + 73, + 167, + 286, + 259 + ], + "spans": [ + { + "bbox": [ + 73, + 167, + 286, + 259 + ], + "type": "image", + "image_path": "62184439b386b2ce024c7dd04082e3b0a622a7e06249397acefc479c149c5d56.jpg" + } + ] + } + ], + "index": 1, + "angle": 0, + "type": "image_body" + }, + { + "bbox": [ + 67, + 271, + 291, + 309 + ], + "lines": [ + { + "bbox": [ + 67, + 271, + 291, + 309 + ], + "spans": [ + { + "bbox": [ + 67, + 271, + 291, + 309 + ], + "type": "text", + "content": "Figure 4: The effect of the initial number of intents on datasets(Left: CLINC, Right: BANKING). The compared results are retrieved from Zhang et al. (2021)." + } + ] + } + ], + "index": 2, + "angle": 0, + "type": "image_caption" + } + ], + "index": 1 + }, + { + "bbox": [ + 67, + 331, + 273, + 343 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 331, + 273, + 343 + ], + "spans": [ + { + "bbox": [ + 67, + 331, + 273, + 343 + ], + "type": "text", + "content": "5.4 Effect of the Initial Number of Intents" + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 67, + 349, + 291, + 470 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 349, + 291, + 470 + ], + "spans": [ + { + "bbox": [ + 67, + 349, + 291, + 470 + ], + "type": "text", + "content": "Because we do not know the actual number of intents, we usually need to assign an initial number of intents (i.e., " + }, + { + "bbox": [ + 67, + 349, + 291, + 470 + ], + "type": "inline_equation", + "content": "\\mathcal{K}" + }, + { + "bbox": [ + 67, + 349, + 291, + 470 + ], + "type": "text", + "content": ") in advance as we do earlier. This also requires us to investigate the sensitivity of the model to the initial K. We investigate the performance of our method in the datasets by varying initial values (leaving others unchanged). As shown Figure 4, compared with others, our method can better adapt to different initial values." + } + ] + } + ], + "index": 4 + }, + { + "type": "image", + "bbox": [ + 73, + 485, + 286, + 575 + ], + "blocks": [ + { + "bbox": [ + 73, + 485, + 286, + 575 + ], + "lines": [ + { + "bbox": [ + 73, + 485, + 286, + 575 + ], + "spans": [ + { + "bbox": [ + 73, + 485, + 286, + 575 + ], + "type": "image", + "image_path": "7e718eeaaecd59f44c79128ead5c6da423acddf1961e04edbdcc81671a6aaae6.jpg" + } + ] + } + ], + "index": 5, + "angle": 0, + "type": "image_body" + }, + { + "bbox": [ + 67, + 588, + 291, + 624 + ], + "lines": [ + { + "bbox": [ + 67, + 588, + 291, + 624 + ], + "spans": [ + { + "bbox": [ + 67, + 588, + 291, + 624 + ], + "type": "text", + "content": "Figure 5: The effect of known class ratio on datasets (Left: BANKING, Right: CLINC). The compared results are retrieved from Zhang et al. (2021)." + } + ] + } + ], + "index": 6, + "angle": 0, + "type": "image_caption" + } + ], + "index": 5 + }, + { + "bbox": [ + 67, + 647, + 249, + 660 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 647, + 249, + 660 + ], + "spans": [ + { + "bbox": [ + 67, + 647, + 249, + 660 + ], + "type": "text", + "content": "5.5 Effect of the Known Intent Ratio" + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 67, + 665, + 291, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 665, + 291, + 772 + ], + "spans": [ + { + "bbox": [ + 67, + 665, + 291, + 772 + ], + "type": "text", + "content": "We also investigate the effect of known intent ratios on performance by adopting different known class ratios (25%, 50% and 75%). As shown in Figure 5, our method also shows better performance compared with other baselines. Interestingly, The advantage of our method in dataset BANKING is significant. We speculate that this may be related to the unbalanced number of samples in BANKING." + } + ] + } + ], + "index": 8 + }, + { + "bbox": [ + 302, + 71, + 525, + 166 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 71, + 525, + 166 + ], + "spans": [ + { + "bbox": [ + 302, + 71, + 525, + 166 + ], + "type": "text", + "content": "Although there are more known intents, it does not mean that enough labeled and balanced samples are provided. As a result, the previous methods (e.g. DeepAligned) not only failed to transfer more prior knowledge but also exacerbated the speed of forgetting in the follow-up process. This also provides room for future research." + } + ] + } + ], + "index": 9 + }, + { + "type": "image", + "bbox": [ + 307, + 179, + 413, + 275 + ], + "blocks": [ + { + "bbox": [ + 307, + 179, + 413, + 275 + ], + "lines": [ + { + "bbox": [ + 307, + 179, + 413, + 275 + ], + "spans": [ + { + "bbox": [ + 307, + 179, + 413, + 275 + ], + "type": "image", + "image_path": "0084ef45d74d176421b3eba26f9747c2e9e38b3969ca22a118273b76db827269.jpg" + } + ] + } + ], + "index": 10, + "angle": 0, + "type": "image_body" + }, + { + "bbox": [ + 302, + 289, + 526, + 349 + ], + "lines": [ + { + "bbox": [ + 302, + 289, + 526, + 349 + ], + "spans": [ + { + "bbox": [ + 302, + 289, + 526, + 349 + ], + "type": "text", + "content": "Figure 6: The knowledge curves of our method (Blue). During intent assignments, our performance is not only not forgotten, but also constantly strengthened compared with the pre-transfer stage (Red, approximated by the initial performance in clustering stage)." + } + ] + } + ], + "index": 12, + "angle": 0, + "type": "image_caption" + } + ], + "index": 10 + }, + { + "type": "image", + "bbox": [ + 418, + 179, + 523, + 275 + ], + "blocks": [ + { + "bbox": [ + 418, + 179, + 523, + 275 + ], + "lines": [ + { + "bbox": [ + 418, + 179, + 523, + 275 + ], + "spans": [ + { + "bbox": [ + 418, + 179, + 523, + 275 + ], + "type": "image", + "image_path": "7cc7e910bc92486f442ae023f603d4a3ea9097560241172e51f4e0768c2a1e56.jpg" + } + ] + } + ], + "index": 11, + "angle": 0, + "type": "image_body" + } + ], + "index": 11 + }, + { + "bbox": [ + 302, + 371, + 508, + 386 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 371, + 508, + 386 + ], + "spans": [ + { + "bbox": [ + 302, + 371, + 508, + 386 + ], + "type": "text", + "content": "5.6 More Than Remembering Knowledge" + } + ] + } + ], + "index": 13 + }, + { + "bbox": [ + 302, + 389, + 525, + 483 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 389, + 525, + 483 + ], + "spans": [ + { + "bbox": [ + 302, + 389, + 525, + 483 + ], + "type": "text", + "content": "We show knowledge forgetting in DeepAligned in Section 1. After fine-tuning with labeled data, the prior knowledge is stored in the model in the form of model parameters. With the subsequent clustering steps, the parameters change gradually (the forgetting process is step by step from the forgetting curve in previous works)." + } + ] + } + ], + "index": 14 + }, + { + "bbox": [ + 302, + 484, + 525, + 607 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 484, + 525, + 607 + ], + "spans": [ + { + "bbox": [ + 302, + 484, + 525, + 607 + ], + "type": "text", + "content": "However, as shown in Figure 6, we observe that our method does not have the catastrophic forgetting that occurs in DeepAligned. On the contrary, with the iteration (EM algorithm), our performance is better than that in the pre-transfer stage. We surmise that this improvement is brought by the sample set " + }, + { + "bbox": [ + 302, + 484, + 525, + 607 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 302, + 484, + 525, + 607 + ], + "type": "text", + "content": " discovered in the unlabeled data (also can improve the intent discovery in Appendix E) corpus helps the identification of the known intents." + } + ] + } + ], + "index": 15 + }, + { + "bbox": [ + 302, + 616, + 381, + 629 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 616, + 381, + 629 + ], + "spans": [ + { + "bbox": [ + 302, + 616, + 381, + 629 + ], + "type": "text", + "content": "6 Conclusion" + } + ] + } + ], + "index": 16 + }, + { + "bbox": [ + 302, + 638, + 526, + 773 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 638, + 526, + 773 + ], + "spans": [ + { + "bbox": [ + 302, + 638, + 526, + 773 + ], + "type": "text", + "content": "In this paper, we provide a probabilistic framework for intent discovery. This is the first complete theoretical framework for intent discovery. We also provide an efficient implementation based on this proposed framework. Compared with the existing methods, our method effectively alleviates the forgetting of prior knowledge transferred from known intents and provides intensive clustering supervised signals for discovering intents. Extensive experiments conducted in three challenging" + } + ] + } + ], + "index": 17 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3778" + } + ] + } + ], + "index": 18 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 7 + }, + { + "para_blocks": [ + { + "bbox": [ + 67, + 71, + 292, + 167 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 71, + 292, + 167 + ], + "spans": [ + { + "bbox": [ + 67, + 71, + 292, + 167 + ], + "type": "text", + "content": "datasets demonstrate our method can achieve substantial improvements. The subsequent analysis also shows that our method can better estimate the number of intents and adapt to various conditions. In the future, we will try different methods to perform intent assignments and explore more methods to approximate " + }, + { + "bbox": [ + 67, + 71, + 292, + 167 + ], + "type": "inline_equation", + "content": "p(Y^l|\\mathcal{Z},D;\\theta)" + }, + { + "bbox": [ + 67, + 71, + 292, + 167 + ], + "type": "text", + "content": " and " + }, + { + "bbox": [ + 67, + 71, + 292, + 167 + ], + "type": "inline_equation", + "content": "p(\\mathcal{Z}|D;\\theta)" + }, + { + "bbox": [ + 67, + 71, + 292, + 167 + ], + "type": "text", + "content": "." + } + ] + } + ], + "index": 0 + }, + { + "bbox": [ + 67, + 178, + 131, + 191 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 178, + 131, + 191 + ], + "spans": [ + { + "bbox": [ + 67, + 178, + 131, + 191 + ], + "type": "text", + "content": "Limitations" + } + ] + } + ], + "index": 1 + }, + { + "bbox": [ + 67, + 201, + 292, + 417 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 201, + 292, + 417 + ], + "spans": [ + { + "bbox": [ + 67, + 201, + 292, + 417 + ], + "type": "text", + "content": "To better inspire the follow-up work, we summarize the limitations of our method as follows: 1) From our experimental results the Appendix D, we can see that the estimation of the number of intents in our proposed can be further improved. 2) We do not try more means to prevent knowledge from forgetting. We can probe into the intrinsic structure of unlabeled data in a more fine-grained way by improving the posterior estimation. 3) According to Section 5.3, we have verified that both exploration and utilization are indispensable, but at the same time, we only empirically choose the specific proportion of both, without theoretical analysis of the most appropriate proportion for each dataset. We look forward to making progress in the follow-up research on the above limitations." + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 68, + 430, + 170, + 444 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 430, + 170, + 444 + ], + "spans": [ + { + "bbox": [ + 68, + 430, + 170, + 444 + ], + "type": "text", + "content": "Acknowledgements" + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 67, + 454, + 291, + 548 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 454, + 291, + 548 + ], + "spans": [ + { + "bbox": [ + 67, + 454, + 291, + 548 + ], + "type": "text", + "content": "We thank Dr.Wang yuxin and Dr.Liu Peiju for their patience and meaningful suggestions in this work early. This work was supported by the National Key Research and Development Program of China (No.2020AAA0108700), National Natural Science Foundation of China (No.62022027) and CAAI-Huawei MindSpore Open Fund." + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 68, + 573, + 127, + 586 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 573, + 127, + 586 + ], + "spans": [ + { + "bbox": [ + 68, + 573, + 127, + 586 + ], + "type": "text", + "content": "References" + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 69, + 594, + 290, + 772 + ], + "type": "list", + "angle": 0, + "index": 9, + "blocks": [ + { + "bbox": [ + 69, + 594, + 290, + 650 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 69, + 594, + 290, + 650 + ], + "spans": [ + { + "bbox": [ + 69, + 594, + 290, + 650 + ], + "type": "text", + "content": "Sugato Basu, Arindam Banerjee, and Raymond J Mooney. 2004. Active semi-supervision for pairwise constrained clustering. In Proceedings of the 2004 SIAM international conference on data mining, pages 333-344. SIAM." + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 69, + 661, + 290, + 718 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 69, + 661, + 290, + 718 + ], + "spans": [ + { + "bbox": [ + 69, + 661, + 290, + 718 + ], + "type": "text", + "content": "Mathilde Caron, Piotr Bojanowski, Armand Joulin, and Matthijs Douze. 2018. Deep clustering for unsupervised learning of visual features. In Proceedings of the European Conference on Computer Vision (ECCV), pages 132-149." + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 69, + 728, + 290, + 772 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 69, + 728, + 290, + 772 + ], + "spans": [ + { + "bbox": [ + 69, + 728, + 290, + 772 + ], + "type": "text", + "content": "Inigo Casanueva, Tadas Temčinas, Daniela Gerz, Matthew Henderson, and Ivan Vulić. 2020. Efficient intent detection with dual sentence encoders. arXiv preprint arXiv:2003.04807." + } + ] + } + ], + "index": 8 + } + ], + "sub_type": "ref_text" + }, + { + "bbox": [ + 304, + 72, + 526, + 772 + ], + "type": "list", + "angle": 0, + "index": 23, + "blocks": [ + { + "bbox": [ + 304, + 72, + 526, + 126 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 72, + 526, + 126 + ], + "spans": [ + { + "bbox": [ + 304, + 72, + 526, + 126 + ], + "type": "text", + "content": "Jianlong Chang, Lingfeng Wang, Gaofeng Meng, Shiming Xiang, and Chunhong Pan. 2017. Deep adaptive image clustering. In Proceedings of the IEEE international conference on computer vision, pages 5879-5887." + } + ] + } + ], + "index": 10 + }, + { + "bbox": [ + 304, + 135, + 526, + 179 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 135, + 526, + 179 + ], + "spans": [ + { + "bbox": [ + 304, + 135, + 526, + 179 + ], + "type": "text", + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. 2018. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805." + } + ] + } + ], + "index": 11 + }, + { + "bbox": [ + 304, + 186, + 526, + 221 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 186, + 526, + 221 + ], + "spans": [ + { + "bbox": [ + 304, + 186, + 526, + 221 + ], + "type": "text", + "content": "K Chidananda Gowda and G Krishna. 1978. Agglomerative clustering using the concept of mutual nearest neighbourhood. Pattern recognition, 10(2):105-112." + } + ] + } + ], + "index": 12 + }, + { + "bbox": [ + 304, + 227, + 526, + 273 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 227, + 526, + 273 + ], + "spans": [ + { + "bbox": [ + 304, + 227, + 526, + 273 + ], + "type": "text", + "content": "Dilek Hakkani-Tür, Asli Celikyilmaz, Larry Heck, and Gokhan Tur. 2013. A weakly-supervised approach for discovering new user intents from search query logs." + } + ] + } + ], + "index": 13 + }, + { + "bbox": [ + 304, + 280, + 526, + 335 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 280, + 526, + 335 + ], + "spans": [ + { + "bbox": [ + 304, + 280, + 526, + 335 + ], + "type": "text", + "content": "Dilek Hakkani-Tür, Yun-Cheng Ju, Geoffrey Zweig, and Gokhan Tur. 2015. Clustering novel intents in a conversational interaction system with semantic parsing. In Sixteenth Annual Conference of the International Speech Communication Association." + } + ] + } + ], + "index": 14 + }, + { + "bbox": [ + 304, + 342, + 526, + 396 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 342, + 526, + 396 + ], + "spans": [ + { + "bbox": [ + 304, + 342, + 526, + 396 + ], + "type": "text", + "content": "Kai Han, Andrea Vedaldi, and Andrew Zisserman. 2019. Learning to discover novel visual categories via deep transfer clustering. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 8401-8409." + } + ] + } + ], + "index": 15 + }, + { + "bbox": [ + 304, + 405, + 526, + 439 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 405, + 526, + 439 + ], + "spans": [ + { + "bbox": [ + 304, + 405, + 526, + 439 + ], + "type": "text", + "content": "Yen-Chang Hsu, Zhaoyang Lv, and Zsolt Kira. 2017. Learning to cluster in order to transfer across domains and tasks. arXiv preprint arXiv:1711.10125." + } + ] + } + ], + "index": 16 + }, + { + "bbox": [ + 304, + 446, + 526, + 491 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 446, + 526, + 491 + ], + "spans": [ + { + "bbox": [ + 304, + 446, + 526, + 491 + ], + "type": "text", + "content": "Yen-Chang Hsu, Zhaoyang Lv, Joel Schlosser, Phillip Odom, and Zsolt Kira. 2019. Multi-class classification without multi-class labels. arXiv preprint arXiv:1901.00544." + } + ] + } + ], + "index": 17 + }, + { + "bbox": [ + 304, + 498, + 526, + 565 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 498, + 526, + 565 + ], + "spans": [ + { + "bbox": [ + 304, + 498, + 526, + 565 + ], + "type": "text", + "content": "Stefan Larson, Anish Mahendran, Joseph J Peper, Christopher Clarke, Andrew Lee, Parker Hill, Jonathan K Kummerfeld, Kevin Leach, Michael A Laurenzano, Lingjia Tang, et al. 2019. An evaluation dataset for intent classification and out-of-scope prediction. arXiv preprint arXiv:1909.02027." + } + ] + } + ], + "index": 18 + }, + { + "bbox": [ + 304, + 572, + 526, + 628 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 572, + 526, + 628 + ], + "spans": [ + { + "bbox": [ + 304, + 572, + 526, + 628 + ], + "type": "text", + "content": "Ting-En Lin, Hua Xu, and Hanlei Zhang. 2020. Discovering new intents via constrained deep adaptive clustering with cluster refinement. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 34, pages 8360-8367." + } + ] + } + ], + "index": 19 + }, + { + "bbox": [ + 304, + 635, + 526, + 691 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 635, + 526, + 691 + ], + "spans": [ + { + "bbox": [ + 304, + 635, + 526, + 691 + ], + "type": "text", + "content": "James MacQueen et al. 1967. Some methods for classification and analysis of multivariate observations. In Proceedings of the fifth Berkeley symposium on mathematical statistics and probability, volume 1, pages 281-297. Oakland, CA, USA." + } + ] + } + ], + "index": 20 + }, + { + "bbox": [ + 304, + 698, + 526, + 732 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 698, + 526, + 732 + ], + "spans": [ + { + "bbox": [ + 304, + 698, + 526, + 732 + ], + "type": "text", + "content": "Srinivas Bangalore Padmasundari. 2018. Intent discovery through unsupervised semantic text clustering. Proc. Interspeech 2018, pages 606-610." + } + ] + } + ], + "index": 21 + }, + { + "bbox": [ + 304, + 739, + 526, + 772 + ], + "type": "ref_text", + "angle": 0, + "lines": [ + { + "bbox": [ + 304, + 739, + 526, + 772 + ], + "spans": [ + { + "bbox": [ + 304, + 739, + 526, + 772 + ], + "type": "text", + "content": "Nils Reimers and Iryna Gurevych. 2019. Sentence-bert: Sentence embeddings using siamese bert-networks. arXiv preprint arXiv:1908.10084." + } + ] + } + ], + "index": 22 + } + ], + "sub_type": "ref_text" + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3779" + } + ] + } + ], + "index": 24 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 8 + }, + { + "para_blocks": [ + { + "bbox": [ + 69, + 72, + 291, + 130 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 69, + 72, + 291, + 130 + ], + "spans": [ + { + "bbox": [ + 69, + 72, + 291, + 130 + ], + "type": "text", + "content": "Xiang Shen, Yinge Sun, Yao Zhang, and Mani Najmabadi. 2021. Semi-supervised intent discovery with contrastive learning. In Proceedings of the 3rd Workshop on Natural Language Processing for Conversational AI, pages 120-129." + } + ] + } + ], + "index": 0 + }, + { + "bbox": [ + 68, + 136, + 291, + 215 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 136, + 291, + 215 + ], + "spans": [ + { + "bbox": [ + 68, + 136, + 291, + 215 + ], + "type": "text", + "content": "Chen Shi, Qi Chen, Lei Sha, Sujian Li, Xu Sun, Houfeng Wang, and Lintao Zhang. 2018. Autodialabel: Labeling dialogue data with unsupervised learning. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pages 684-689, Brussels, Belgium. Association for Computational Linguistics." + } + ] + } + ], + "index": 1 + }, + { + "bbox": [ + 68, + 222, + 291, + 269 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 222, + 291, + 269 + ], + "spans": [ + { + "bbox": [ + 68, + 222, + 291, + 269 + ], + "type": "text", + "content": "Ximei Wang, Jinghan Gao, Mingsheng Long, and Jian-min Wang. 2021. Self-tuning for data-efficient deep learning. In International Conference on Machine Learning, pages 10738-10748. PMLR." + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 68, + 276, + 291, + 323 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 276, + 291, + 323 + ], + "spans": [ + { + "bbox": [ + 68, + 276, + 291, + 323 + ], + "type": "text", + "content": "Junyuan Xie, Ross Girshick, and Ali Farhadi. 2016. Unsupervised deep embedding for clustering analysis. In International conference on machine learning, pages 478-487. PMLR." + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 68, + 329, + 291, + 397 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 329, + 291, + 397 + ], + "spans": [ + { + "bbox": [ + 68, + 329, + 291, + 397 + ], + "type": "text", + "content": "Jiaming Xu, Peng Wang, Guanhua Tian, Bo Xu, Jun Zhao, Fangyuan Wang, and Hongwei Hao. 2015. Short text clustering via convolutional neural networks. In Proceedings of the 1st Workshop on Vector Space Modeling for Natural Language Processing, pages 62-69." + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 68, + 404, + 291, + 460 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 404, + 291, + 460 + ], + "spans": [ + { + "bbox": [ + 68, + 404, + 291, + 460 + ], + "type": "text", + "content": "Bo Yang, Xiao Fu, Nicholas D Sidiropoulos, and Mingyi Hong. 2017. Towards k-means-friendly spaces: Simultaneous deep learning and clustering. In international conference on machine learning, pages 3861-3870. PMLR." + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 68, + 469, + 291, + 515 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 469, + 291, + 515 + ], + "spans": [ + { + "bbox": [ + 68, + 469, + 291, + 515 + ], + "type": "text", + "content": "Hanlei Zhang, Hua Xu, Ting-En Lin, and Rui Lyu. 2021. Discovering new intents with deep aligned clustering. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 35, pages 14365–14373." + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 68, + 523, + 291, + 602 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 523, + 291, + 602 + ], + "spans": [ + { + "bbox": [ + 68, + 523, + 291, + 602 + ], + "type": "text", + "content": "Yuwei Zhang, Haode Zhang, Li-Ming Zhan, Xiao-Ming Wu, and Albert Lam. 2022. New intent discovery with pre-training and contrastive learning. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 256-269, Dublin, Ireland. Association for Computational Linguistics." + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 68, + 608, + 291, + 677 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 608, + 291, + 677 + ], + "spans": [ + { + "bbox": [ + 68, + 608, + 291, + 677 + ], + "type": "text", + "content": "Yunhua Zhou, Peiju Liu, and Xipeng Qiu. 2022. KNN-contrastive learning for out-of-domain intent classification. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 5129-5141, Dublin, Ireland. Association for Computational Linguistics." + } + ] + } + ], + "index": 8 + }, + { + "bbox": [ + 68, + 697, + 198, + 711 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 68, + 697, + 198, + 711 + ], + "spans": [ + { + "bbox": [ + 68, + 697, + 198, + 711 + ], + "type": "text", + "content": "A Statistics of Datasets" + } + ] + } + ], + "index": 9 + }, + { + "bbox": [ + 67, + 719, + 290, + 745 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 719, + 290, + 745 + ], + "spans": [ + { + "bbox": [ + 67, + 719, + 290, + 745 + ], + "type": "text", + "content": "We present detailed statistics of datasets in our experiments in Table 6." + } + ] + } + ], + "index": 10 + }, + { + "bbox": [ + 67, + 746, + 290, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 746, + 290, + 772 + ], + "spans": [ + { + "bbox": [ + 67, + 746, + 290, + 772 + ], + "type": "text", + "content": "CLINC (Larson et al., 2019) is a dataset designed for Out-of-domain intent detection, which contains" + } + ] + } + ], + "index": 11 + }, + { + "type": "table", + "bbox": [ + 304, + 69, + 518, + 211 + ], + "blocks": [ + { + "bbox": [ + 304, + 69, + 518, + 211 + ], + "lines": [ + { + "bbox": [ + 304, + 69, + 518, + 211 + ], + "spans": [ + { + "bbox": [ + 304, + 69, + 518, + 211 + ], + "type": "table", + "html": "
λBANKINGCLINC
NMIARIACCNMIARIACC
0.080.6554.1163.8393.2776.1281.69
0.182.8358.9970.0694.3680.2386.13
0.384.4362.6272.5394.7381.7988.09
0.584.8163.9174.3895.3283.4189.07
0.784.7363.9574.5895.3683.2688.40
0.985.1665.3475.9495.6984.9790.31
1.082.9461.9873.2193.3578.4685.51
", + "image_path": "df42697d120b4ae53d0a4be14da746ac843a99456339a8d2978b3d3daa31a815.jpg" + } + ] + } + ], + "index": 12, + "angle": 0, + "type": "table_body" + } + ], + "index": 12 + }, + { + "bbox": [ + 302, + 218, + 525, + 243 + ], + "lines": [ + { + "bbox": [ + 302, + 218, + 525, + 243 + ], + "spans": [ + { + "bbox": [ + 302, + 218, + 525, + 243 + ], + "type": "text", + "content": "Table 5: Detailed Results about the Effect of Exploration and Utilization." + } + ] + } + ], + "index": 13, + "angle": 0, + "type": "text" + }, + { + "bbox": [ + 302, + 265, + 525, + 318 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 265, + 525, + 318 + ], + "spans": [ + { + "bbox": [ + 302, + 265, + 525, + 318 + ], + "type": "text", + "content": "150 intents from 10 domains and 22500 utterances. BANKING (Casanueva et al., 2020) is a dataset covering 77 intents and containing 13083 utterances." + } + ] + } + ], + "index": 14 + }, + { + "bbox": [ + 302, + 320, + 526, + 374 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 320, + 526, + 374 + ], + "spans": [ + { + "bbox": [ + 302, + 320, + 526, + 374 + ], + "type": "text", + "content": "StackOverflow (Xu et al., 2015) represents a dataset dispersed through Kaggle.com, encompassing 20 intents and 20000 utterances. We adopt the dataset processed by (Xu et al., 2015)." + } + ] + } + ], + "index": 15 + }, + { + "bbox": [ + 302, + 386, + 427, + 399 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 386, + 427, + 399 + ], + "spans": [ + { + "bbox": [ + 302, + 386, + 427, + 399 + ], + "type": "text", + "content": "B Experiment Details" + } + ] + } + ], + "index": 16 + }, + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "spans": [ + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "text", + "content": "Our main experiments use pre-trained BERT (bert-uncased, with 12-layer transformer), which is implemented in the Huggingface Transformers3. We try learning rate in " + }, + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "inline_equation", + "content": "\\{1e - 5,5e - 5\\}" + }, + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "text", + "content": " and " + }, + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "inline_equation", + "content": "\\lambda" + }, + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "text", + "content": " in " + }, + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "inline_equation", + "content": "\\{0.5,0.6\\}" + }, + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "text", + "content": ". The training batch size is 512, and the temperature scale " + }, + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "inline_equation", + "content": "\\tau" + }, + { + "bbox": [ + 302, + 409, + 525, + 518 + ], + "type": "text", + "content": " is 0.1. All experiments were conducted in the Nvidia Ge-Force RTX-3090 Graphical Card with 24G graphical memory." + } + ] + } + ], + "index": 17 + }, + { + "bbox": [ + 302, + 529, + 522, + 557 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 529, + 522, + 557 + ], + "spans": [ + { + "bbox": [ + 302, + 529, + 522, + 557 + ], + "type": "text", + "content": "C More Results on Effect of Exploration and Utilization" + } + ] + } + ], + "index": 18 + }, + { + "bbox": [ + 302, + 567, + 525, + 635 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 567, + 525, + 635 + ], + "spans": [ + { + "bbox": [ + 302, + 567, + 525, + 635 + ], + "type": "text", + "content": "In this section, we detail the results of varying " + }, + { + "bbox": [ + 302, + 567, + 525, + 635 + ], + "type": "inline_equation", + "content": "\\lambda" + }, + { + "bbox": [ + 302, + 567, + 525, + 635 + ], + "type": "text", + "content": " in the Table 5. This result can be used as a supplement to Section 5.3, which further proves that if the model wants to achieve better results, both exploration and utilization are indispensable." + } + ] + } + ], + "index": 19 + }, + { + "bbox": [ + 302, + 646, + 511, + 661 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 646, + 511, + 661 + ], + "spans": [ + { + "bbox": [ + 302, + 646, + 511, + 661 + ], + "type": "text", + "content": "D Estimate the Number of Intents " + }, + { + "bbox": [ + 302, + 646, + 511, + 661 + ], + "type": "inline_equation", + "content": "(K)" + } + ] + } + ], + "index": 20 + }, + { + "bbox": [ + 302, + 670, + 526, + 752 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 670, + 526, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 670, + 526, + 752 + ], + "type": "text", + "content": "A key point of intent discovery is whether the model can accurately predict the number of intents. DeepAligned proposes a simple yet effective estimation method. However, due to the alignment operation in the iterative process of clustering (see Zhang et al. (2021) for details), DeepAligned" + } + ] + } + ], + "index": 21 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 315, + 761, + 483, + 773 + ], + "type": "page_footnote", + "angle": 0, + "lines": [ + { + "bbox": [ + 315, + 761, + 483, + 773 + ], + "spans": [ + { + "bbox": [ + 315, + 761, + 483, + 773 + ], + "type": "text", + "content": "3https://github.com/huggingface/transformers" + } + ] + } + ], + "index": 22 + }, + { + "bbox": [ + 286, + 780, + 310, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 310, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 310, + 791 + ], + "type": "text", + "content": "3780" + } + ] + } + ], + "index": 23 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 9 + }, + { + "para_blocks": [ + { + "type": "table", + "bbox": [ + 81, + 69, + 512, + 137 + ], + "blocks": [ + { + "bbox": [ + 81, + 69, + 512, + 137 + ], + "lines": [ + { + "bbox": [ + 81, + 69, + 512, + 137 + ], + "spans": [ + { + "bbox": [ + 81, + 69, + 512, + 137 + ], + "type": "table", + "html": "
DatasetClasses|Training||Validation||Test|Vocabulary SizeLength (Avg)
CLINC150180002250225072838.32
BANKING77900310003080502811.91
StackOverflow201800010001000171829.18
", + "image_path": "80cbcd7d9454d5915c873d56dc4e83fcf471b22df8be25b964edb054604abc36.jpg" + } + ] + } + ], + "index": 0, + "angle": 0, + "type": "table_body" + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 87, + 180, + 508, + 269 + ], + "blocks": [ + { + "bbox": [ + 67, + 145, + 525, + 169 + ], + "lines": [ + { + "bbox": [ + 67, + 145, + 525, + 169 + ], + "spans": [ + { + "bbox": [ + 67, + 145, + 525, + 169 + ], + "type": "text", + "content": "Table 6: Statistics of datasets. || denotes the total number of utterances. The StackOverflow is drawn from Lin et al. (2020)" + } + ] + } + ], + "index": 1, + "angle": 0, + "type": "table_caption" + }, + { + "bbox": [ + 87, + 180, + 508, + 269 + ], + "lines": [ + { + "bbox": [ + 87, + 180, + 508, + 269 + ], + "spans": [ + { + "bbox": [ + 87, + 180, + 508, + 269 + ], + "type": "table", + "html": "
MethodsCLINC (k=150)BANKING (k=77)
K(Pred)Error(↓)NMIARIACCK(Pred)Error(↓)NMIARIACC
MCL(BERT)11225.3387.1559.2269.205824.6875.3347.3560.80
DTC(BERT)19530.0089.1563.1866.6511042.8677.6147.5054.94
DeepAligned12914.0092.5072.2677.186712.9978.8851.7162.49
Ours13013.3093.5875.3080.80735.4883.5660.9269.68
", + "image_path": "52a3485e37ca3fab407d2b497331c45b9a0b594dd98bbdcd0a36e6a25db29d33.jpg" + } + ] + } + ], + "index": 2, + "angle": 0, + "type": "table_body" + } + ], + "index": 2 + }, + { + "bbox": [ + 67, + 276, + 525, + 301 + ], + "lines": [ + { + "bbox": [ + 67, + 276, + 525, + 301 + ], + "spans": [ + { + "bbox": [ + 67, + 276, + 525, + 301 + ], + "type": "text", + "content": "Table 7: The results of predicting " + }, + { + "bbox": [ + 67, + 276, + 525, + 301 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 276, + 525, + 301 + ], + "type": "text", + "content": ". The " + }, + { + "bbox": [ + 67, + 276, + 525, + 301 + ], + "type": "inline_equation", + "content": "\\hat{k}" + }, + { + "bbox": [ + 67, + 276, + 525, + 301 + ], + "type": "text", + "content": " denotes the ground truth number of " + }, + { + "bbox": [ + 67, + 276, + 525, + 301 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 276, + 525, + 301 + ], + "type": "text", + "content": ". The compared results are retrieved from (Zhang et al., 2021)." + } + ] + } + ], + "index": 3, + "angle": 0, + "type": "text" + }, + { + "type": "image", + "bbox": [ + 73, + 324, + 178, + 419 + ], + "blocks": [ + { + "bbox": [ + 73, + 324, + 178, + 419 + ], + "lines": [ + { + "bbox": [ + 73, + 324, + 178, + 419 + ], + "spans": [ + { + "bbox": [ + 73, + 324, + 178, + 419 + ], + "type": "image", + "image_path": "1e0bc68cad08bdaf416ee03cdfff44520ff32290d457162b66c5c654de8ba89f.jpg" + } + ] + } + ], + "index": 4, + "angle": 0, + "type": "image_body" + }, + { + "bbox": [ + 67, + 433, + 290, + 483 + ], + "lines": [ + { + "bbox": [ + 67, + 433, + 290, + 483 + ], + "spans": [ + { + "bbox": [ + 67, + 433, + 290, + 483 + ], + "type": "text", + "content": "Figure 7: The results of predicting " + }, + { + "bbox": [ + 67, + 433, + 290, + 483 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 433, + 290, + 483 + ], + "type": "text", + "content": " on CLINC and BANKING. The Red line denotes ground truth, the Brown line denotes the result of DeepAligned and the Bule line denotes the refinement of " + }, + { + "bbox": [ + 67, + 433, + 290, + 483 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 433, + 290, + 483 + ], + "type": "text", + "content": " by our method." + } + ] + } + ], + "index": 6, + "angle": 0, + "type": "image_caption" + } + ], + "index": 4 + }, + { + "type": "image", + "bbox": [ + 182, + 324, + 287, + 420 + ], + "blocks": [ + { + "bbox": [ + 182, + 324, + 287, + 420 + ], + "lines": [ + { + "bbox": [ + 182, + 324, + 287, + 420 + ], + "spans": [ + { + "bbox": [ + 182, + 324, + 287, + 420 + ], + "type": "image", + "image_path": "ec18b5f13fede17f288612a8bdf7a75b554c6ea4682851aea1dbfa781dc6ce8d.jpg" + } + ] + } + ], + "index": 5, + "angle": 0, + "type": "image_body" + } + ], + "index": 5 + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "spans": [ + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "content": "needs to determine " + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "content": " in advance and only limited labeled data is used, while a large number of unlabeled data are ignored. Unlikely, our method does not directly rely on pseudo labels so that we can continue to refine " + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "content": " during subsequent clustering. We use the same settings as Zhang et al. (2021) and firstly assign the number of intents (i.e., " + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "inline_equation", + "content": "\\mathcal{K}" + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "content": " in intent assignments) as two times the ground truth number to investigate the ability to estimate " + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "content": ". In the process of executing the EM algorithm, we refine " + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "content": " per 10 epochs using the method as suggested in Section 3.3. To effectively demonstrate the impact and efficiency of our proposed framework on the estimation of " + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "content": ", we did not consider dataset " + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "content": " in the experiment. We get the final performance of the model and the results are shown in Table 7 (Figure 7 shows the intermediate values of " + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 67, + 516, + 291, + 772 + ], + "type": "text", + "content": " per epoch.) shows that our method can predict the number of intents more accurately and achieve" + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 302, + 322, + 526, + 403 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 322, + 526, + 403 + ], + "spans": [ + { + "bbox": [ + 302, + 322, + 526, + 403 + ], + "type": "text", + "content": "better results at the same time. During the experiment, we observed that the performance of model exhibited fluctuations attributed to the setting of hyperparameters. A more comprehensive and in-depth investigation of the estimation of " + }, + { + "bbox": [ + 302, + 322, + 526, + 403 + ], + "type": "inline_equation", + "content": "K" + }, + { + "bbox": [ + 302, + 322, + 526, + 403 + ], + "type": "text", + "content": " will be left for future research endeavors." + } + ] + } + ], + "index": 8 + }, + { + "bbox": [ + 302, + 412, + 509, + 440 + ], + "type": "title", + "angle": 0, + "lines": [ + { + "bbox": [ + 302, + 412, + 509, + 440 + ], + "spans": [ + { + "bbox": [ + 302, + 412, + 509, + 440 + ], + "type": "text", + "content": "E Effect of " + }, + { + "bbox": [ + 302, + 412, + 509, + 440 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 302, + 412, + 509, + 440 + ], + "type": "text", + "content": " discovered in unlabeled data" + } + ] + } + ], + "index": 9 + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "spans": [ + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "text", + "content": "In addition to the labeled data in hand, in Section 3.3, we also use the sample set " + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "text", + "content": " predicted known intents in unlabeled data during discovery (See Section 3.3 for the specific construction of " + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "text", + "content": "). The nearest neighbor measure is based on the cosine similarity of the sample representation in the semantic space). In this section, we will further analyze the benefits brought by these discovered sample set. We have compared the effects of adding " + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "text", + "content": " and not adding " + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "text", + "content": ", and the comparison results are shown in Table 8. From Table 8, we can easily conclude that the added sample set " + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 301, + 448, + 526, + 711 + ], + "type": "text", + "content": " can improve the effectiveness. This also proves the importance of exploring the intrinsic structure of unlabeled data, which can not only improve the effect of preventing knowledge forgetting (Section 5.6) to improve the identification of IND, but also improve the effect of intent discovery, which is completely in line with our expectations." + } + ] + } + ], + "index": 10 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 781, + 308, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 781, + 308, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 781, + 308, + 791 + ], + "type": "text", + "content": "3781" + } + ] + } + ], + "index": 11 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 10 + }, + { + "para_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 364, + 488, + 439 + ], + "blocks": [ + { + "bbox": [ + 105, + 364, + 488, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 488, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 488, + 439 + ], + "type": "table", + "html": "
MethodsCLINCBANKINGStackoverflow
NMIARIACCNMIARIACCNMIARIACC
Our (Dl)94.7882.3288.2983.4061.1972.5977.2963.9380.90
+Dl95.0183.0088.9984.0262.9274.0377.3265.7080.50
", + "image_path": "e971db838a47cc8fa9720f371607466f389940466208308da0e96ed4d3f895dd.jpg" + } + ] + } + ], + "index": 0, + "angle": 0, + "type": "table_body" + } + ], + "index": 0 + }, + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "lines": [ + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "spans": [ + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "type": "text", + "content": "Table 8: Ablation study on effect of " + }, + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "type": "text", + "content": ". " + }, + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "type": "inline_equation", + "content": "\\hat{D}^l" + }, + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "type": "text", + "content": " is the set of samples in " + }, + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "type": "inline_equation", + "content": "D^u" + }, + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "type": "text", + "content": " that can be considered as known intents after the operation of " + }, + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "type": "inline_equation", + "content": "\\mathcal{Z}" + }, + { + "bbox": [ + 67, + 449, + 524, + 475 + ], + "type": "text", + "content": "." + } + ] + } + ], + "index": 1, + "angle": 0, + "type": "text" + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 781, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 781, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 781, + 309, + 791 + ], + "type": "text", + "content": "3782" + } + ] + } + ], + "index": 2 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 11 + }, + { + "para_blocks": [ + { + "bbox": [ + 69, + 90, + 192, + 103 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 69, + 90, + 192, + 103 + ], + "spans": [ + { + "bbox": [ + 69, + 90, + 192, + 103 + ], + "type": "text", + "content": "A For every submission:" + } + ] + } + ], + "index": 1 + }, + { + "bbox": [ + 77, + 106, + 317, + 120 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 106, + 317, + 120 + ], + "spans": [ + { + "bbox": [ + 77, + 106, + 317, + 120 + ], + "type": "text", + "content": "A1. Did you describe the limitations of your work?" + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 89, + 121, + 245, + 133 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 121, + 245, + 133 + ], + "spans": [ + { + "bbox": [ + 89, + 121, + 245, + 133 + ], + "type": "text", + "content": "Section \"Limitations\" (7th Section)" + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 77, + 142, + 329, + 156 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 142, + 329, + 156 + ], + "spans": [ + { + "bbox": [ + 77, + 142, + 329, + 156 + ], + "type": "text", + "content": "A2. Did you discuss any potential risks of your work?" + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 90, + 157, + 245, + 169 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 90, + 157, + 245, + 169 + ], + "spans": [ + { + "bbox": [ + 90, + 157, + 245, + 169 + ], + "type": "text", + "content": "Section \"Limitations\" (7th Section)" + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 77, + 178, + 414, + 192 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 178, + 414, + 192 + ], + "spans": [ + { + "bbox": [ + 77, + 178, + 414, + 192 + ], + "type": "text", + "content": "A3. Do the abstract and introduction summarize the paper's main claims?" + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 92, + 193, + 200, + 204 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 92, + 193, + 200, + 204 + ], + "spans": [ + { + "bbox": [ + 92, + 193, + 200, + 204 + ], + "type": "text", + "content": "\"Abstract\" and Section 1" + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 77, + 214, + 398, + 228 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 214, + 398, + 228 + ], + "spans": [ + { + "bbox": [ + 77, + 214, + 398, + 228 + ], + "type": "text", + "content": "A4. Have you used AI writing assistants when working on this paper?" + } + ] + } + ], + "index": 8 + }, + { + "bbox": [ + 91, + 229, + 138, + 241 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 91, + 229, + 138, + 241 + ], + "spans": [ + { + "bbox": [ + 91, + 229, + 138, + 241 + ], + "type": "text", + "content": "Left blank." + } + ] + } + ], + "index": 9 + }, + { + "bbox": [ + 69, + 250, + 290, + 264 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 69, + 250, + 290, + 264 + ], + "spans": [ + { + "bbox": [ + 69, + 250, + 290, + 264 + ], + "type": "text", + "content": "B Did you use or create scientific artifacts?" + } + ] + } + ], + "index": 10 + }, + { + "bbox": [ + 79, + 269, + 202, + 281 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 79, + 269, + 202, + 281 + ], + "spans": [ + { + "bbox": [ + 79, + 269, + 202, + 281 + ], + "type": "text", + "content": "Section 4.1 and Appendix A" + } + ] + } + ], + "index": 11 + }, + { + "bbox": [ + 77, + 289, + 315, + 302 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 289, + 315, + 302 + ], + "spans": [ + { + "bbox": [ + 77, + 289, + 315, + 302 + ], + "type": "text", + "content": "B1. Did you cite the creators of artifacts you used?" + } + ] + } + ], + "index": 12 + }, + { + "bbox": [ + 91, + 304, + 140, + 315 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 91, + 304, + 140, + 315 + ], + "spans": [ + { + "bbox": [ + 91, + 304, + 140, + 315 + ], + "type": "text", + "content": "Section 4.1" + } + ] + } + ], + "index": 13 + }, + { + "bbox": [ + 77, + 326, + 463, + 338 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 326, + 463, + 338 + ], + "spans": [ + { + "bbox": [ + 77, + 326, + 463, + 338 + ], + "type": "text", + "content": "B2. Did you discuss the license or terms for use and / or distribution of any artifacts?" + } + ] + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 340, + 401, + 352 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 340, + 401, + 352 + ], + "spans": [ + { + "bbox": [ + 89, + 340, + 401, + 352 + ], + "type": "text", + "content": "These datasets are available for all researchers in the NLP community." + } + ] + } + ], + "index": 15 + }, + { + "bbox": [ + 77, + 361, + 524, + 414 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 361, + 524, + 414 + ], + "spans": [ + { + "bbox": [ + 77, + 361, + 524, + 414 + ], + "type": "text", + "content": "B3. Did you discuss if your use of existing artifact(s) was consistent with their intended use, provided that it was specified? For the artifacts you create, do you specify intended use and whether that is compatible with the original access conditions (in particular, derivatives of data accessed for research purposes should not be used outside of research contexts)?" + } + ] + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 416, + 524, + 443 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 416, + 524, + 443 + ], + "spans": [ + { + "bbox": [ + 89, + 416, + 524, + 443 + ], + "type": "text", + "content": "These datasets are only for scientific research and are available for all members of the NLP research community. We have adhered to the typical method of utilizing these resources." + } + ] + } + ], + "index": 17 + }, + { + "bbox": [ + 77, + 451, + 524, + 491 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 451, + 524, + 491 + ], + "spans": [ + { + "bbox": [ + 77, + 451, + 524, + 491 + ], + "type": "text", + "content": "B4. Did you discuss the steps taken to check whether the data that was collected / used contains any information that names or uniquely identifies individual people or offensive content, and the steps taken to protect / anonymize it?" + } + ] + } + ], + "index": 18 + }, + { + "bbox": [ + 89, + 492, + 524, + 518 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 492, + 524, + 518 + ], + "spans": [ + { + "bbox": [ + 89, + 492, + 524, + 518 + ], + "type": "text", + "content": "These datasets are only for scientific research and are available for all members of the NLP research community. We have adhered to the typical method of utilizing these resources." + } + ] + } + ], + "index": 19 + }, + { + "bbox": [ + 77, + 527, + 524, + 555 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 527, + 524, + 555 + ], + "spans": [ + { + "bbox": [ + 77, + 527, + 524, + 555 + ], + "type": "text", + "content": "B5. Did you provide documentation of the artifacts, e.g., coverage of domains, languages, and linguistic phenomena, demographic groups represented, etc.?" + } + ] + } + ], + "index": 20 + }, + { + "bbox": [ + 91, + 555, + 140, + 566 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 91, + 555, + 140, + 566 + ], + "spans": [ + { + "bbox": [ + 91, + 555, + 140, + 566 + ], + "type": "text", + "content": "Section 4.1" + } + ] + } + ], + "index": 21 + }, + { + "bbox": [ + 77, + 576, + 524, + 644 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 576, + 524, + 644 + ], + "spans": [ + { + "bbox": [ + 77, + 576, + 524, + 644 + ], + "type": "text", + "content": "B6. Did you report relevant statistics like the number of examples, details of train / test / dev splits, etc. for the data that you used / created? Even for commonly-used benchmark datasets, include the number of examples in train / validation / test splits, as these provide necessary context for a reader to understand experimental results. For example, small differences in accuracy on large test sets may be significant, while on small test sets they may not be." + } + ] + } + ], + "index": 22 + }, + { + "bbox": [ + 89, + 645, + 142, + 657 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 645, + 142, + 657 + ], + "spans": [ + { + "bbox": [ + 89, + 645, + 142, + 657 + ], + "type": "text", + "content": "Appendix A" + } + ] + } + ], + "index": 23 + }, + { + "bbox": [ + 69, + 665, + 293, + 679 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 69, + 665, + 293, + 679 + ], + "spans": [ + { + "bbox": [ + 69, + 665, + 293, + 679 + ], + "type": "text", + "content": "C Did you run computational experiments?" + } + ] + } + ], + "index": 24 + }, + { + "bbox": [ + 79, + 684, + 184, + 695 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 79, + 684, + 184, + 695 + ], + "spans": [ + { + "bbox": [ + 79, + 684, + 184, + 695 + ], + "type": "text", + "content": "Section 4 and Section 5" + } + ] + } + ], + "index": 25 + }, + { + "bbox": [ + 77, + 704, + 524, + 732 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 704, + 524, + 732 + ], + "spans": [ + { + "bbox": [ + 77, + 704, + 524, + 732 + ], + "type": "text", + "content": "C1. Did you report the number of parameters in the models used, the total computational budget (e.g., GPU hours), and computing infrastructure used?" + } + ] + } + ], + "index": 26 + }, + { + "bbox": [ + 89, + 733, + 142, + 745 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 733, + 142, + 745 + ], + "spans": [ + { + "bbox": [ + 89, + 733, + 142, + 745 + ], + "type": "text", + "content": "Appendix B" + } + ] + } + ], + "index": 27 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 79, + 71, + 258, + 84 + ], + "type": "header", + "angle": 0, + "lines": [ + { + "bbox": [ + 79, + 71, + 258, + 84 + ], + "spans": [ + { + "bbox": [ + 79, + 71, + 258, + 84 + ], + "type": "text", + "content": "ACL 2023 Responsible NLP Checklist" + } + ] + } + ], + "index": 0 + }, + { + "bbox": [ + 67, + 751, + 522, + 772 + ], + "type": "footer", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 751, + 522, + 772 + ], + "spans": [ + { + "bbox": [ + 67, + 751, + 522, + 772 + ], + "type": "text", + "content": "The Responsible NLP Checklist used at ACL 2023 is adopted from NAACL 2022, with the addition of a question on AI writing assistance." + } + ] + } + ], + "index": 28 + }, + { + "bbox": [ + 286, + 781, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 781, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 781, + 309, + 791 + ], + "type": "text", + "content": "3783" + } + ] + } + ], + "index": 29 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 12 + }, + { + "para_blocks": [ + { + "bbox": [ + 77, + 70, + 523, + 97 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 70, + 523, + 97 + ], + "spans": [ + { + "bbox": [ + 77, + 70, + 523, + 97 + ], + "type": "text", + "content": "C2. Did you discuss the experimental setup, including hyperparameter search and best-found hyperparameter values?" + } + ] + } + ], + "index": 0 + }, + { + "bbox": [ + 89, + 99, + 214, + 112 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 99, + 214, + 112 + ], + "spans": [ + { + "bbox": [ + 89, + 99, + 214, + 112 + ], + "type": "text", + "content": "Section 4.3 and Appendix B" + } + ] + } + ], + "index": 1 + }, + { + "bbox": [ + 77, + 120, + 525, + 160 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 120, + 525, + 160 + ], + "spans": [ + { + "bbox": [ + 77, + 120, + 525, + 160 + ], + "type": "text", + "content": "C3. Did you report descriptive statistics about your results (e.g., error bars around results, summary statistics from sets of experiments), and is it transparent whether you are reporting the max, mean, etc. or just a single run?" + } + ] + } + ], + "index": 2 + }, + { + "bbox": [ + 89, + 162, + 211, + 174 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 162, + 211, + 174 + ], + "spans": [ + { + "bbox": [ + 89, + 162, + 211, + 174 + ], + "type": "text", + "content": "Section 4.3 and Section 5.1" + } + ] + } + ], + "index": 3 + }, + { + "bbox": [ + 77, + 183, + 525, + 223 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 77, + 183, + 525, + 223 + ], + "spans": [ + { + "bbox": [ + 77, + 183, + 525, + 223 + ], + "type": "text", + "content": "C4. If you used existing packages (e.g., for preprocessing, for normalization, or for evaluation), did you report the implementation, model, and parameter settings used (e.g., NLTK, Spacy, ROUGE, etc.)?" + } + ] + } + ], + "index": 4 + }, + { + "bbox": [ + 89, + 225, + 143, + 238 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 225, + 143, + 238 + ], + "spans": [ + { + "bbox": [ + 89, + 225, + 143, + 238 + ], + "type": "text", + "content": "Appendix B" + } + ] + } + ], + "index": 5 + }, + { + "bbox": [ + 67, + 247, + 522, + 261 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 67, + 247, + 522, + 261 + ], + "spans": [ + { + "bbox": [ + 67, + 247, + 522, + 261 + ], + "type": "text", + "content": "D Did you use human annotators (e.g., crowdworkers) or research with human participants?" + } + ] + } + ], + "index": 6 + }, + { + "bbox": [ + 79, + 264, + 127, + 277 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 79, + 264, + 127, + 277 + ], + "spans": [ + { + "bbox": [ + 79, + 264, + 127, + 277 + ], + "type": "text", + "content": "Left blank." + } + ] + } + ], + "index": 7 + }, + { + "bbox": [ + 76, + 286, + 525, + 313 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 76, + 286, + 525, + 313 + ], + "spans": [ + { + "bbox": [ + 76, + 286, + 525, + 313 + ], + "type": "text", + "content": "D1. Did you report the full text of instructions given to participants, including e.g., screenshots, disclaimers of any risks to participants or annotators, etc.?" + } + ] + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 315, + 148, + 327 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 315, + 148, + 327 + ], + "spans": [ + { + "bbox": [ + 89, + 315, + 148, + 327 + ], + "type": "text", + "content": "No response." + } + ] + } + ], + "index": 9 + }, + { + "bbox": [ + 76, + 336, + 525, + 376 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 76, + 336, + 525, + 376 + ], + "spans": [ + { + "bbox": [ + 76, + 336, + 525, + 376 + ], + "type": "text", + "content": "D2. Did you report information about how you recruited (e.g., crowdsourcing platform, students) and paid participants, and discuss if such payment is adequate given the participants' demographic (e.g., country of residence)?" + } + ] + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 378, + 148, + 391 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 378, + 148, + 391 + ], + "spans": [ + { + "bbox": [ + 89, + 378, + 148, + 391 + ], + "type": "text", + "content": "No response." + } + ] + } + ], + "index": 11 + }, + { + "bbox": [ + 76, + 400, + 525, + 439 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 76, + 400, + 525, + 439 + ], + "spans": [ + { + "bbox": [ + 76, + 400, + 525, + 439 + ], + "type": "text", + "content": "D3. Did you discuss whether and how consent was obtained from people whose data you're using/curating? For example, if you collected data via crowdsourcing, did your instructions to crowdworkers explain how the data would be used?" + } + ] + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 441, + 148, + 454 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 441, + 148, + 454 + ], + "spans": [ + { + "bbox": [ + 89, + 441, + 148, + 454 + ], + "type": "text", + "content": "No response." + } + ] + } + ], + "index": 13 + }, + { + "bbox": [ + 76, + 462, + 520, + 476 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 76, + 462, + 520, + 476 + ], + "spans": [ + { + "bbox": [ + 76, + 462, + 520, + 476 + ], + "type": "text", + "content": "D4. Was the data collection protocol approved (or determined exempt) by an ethics review board?" + } + ] + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 477, + 148, + 490 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 477, + 148, + 490 + ], + "spans": [ + { + "bbox": [ + 89, + 477, + 148, + 490 + ], + "type": "text", + "content": "No response." + } + ] + } + ], + "index": 15 + }, + { + "bbox": [ + 76, + 498, + 524, + 524 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 76, + 498, + 524, + 524 + ], + "spans": [ + { + "bbox": [ + 76, + 498, + 524, + 524 + ], + "type": "text", + "content": "D5. Did you report the basic demographic and geographic characteristics of the annotator population that is the source of the data?" + } + ] + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 527, + 148, + 539 + ], + "type": "text", + "angle": 0, + "lines": [ + { + "bbox": [ + 89, + 527, + 148, + 539 + ], + "spans": [ + { + "bbox": [ + 89, + 527, + 148, + 539 + ], + "type": "text", + "content": "No response." + } + ] + } + ], + "index": 17 + } + ], + "discarded_blocks": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "page_number", + "angle": 0, + "lines": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "spans": [ + { + "bbox": [ + 286, + 780, + 309, + 791 + ], + "type": "text", + "content": "3784" + } + ] + } + ], + "index": 18 + } + ], + "page_size": [ + 595, + 841 + ], + "page_idx": 13 + } + ], + "_backend": "vlm", + "_version_name": "2.6.4" +} \ No newline at end of file