| { |
| "paper_id": "2020", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T12:41:06.051986Z" |
| }, |
| "title": "Improving Word Embeddings through Iterative Refinement of Word-and Character-level Models", |
| "authors": [ |
| { |
| "first": "Phong", |
| "middle": [], |
| "last": "Ha", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Temple University", |
| "location": {} |
| }, |
| "email": "phongtheha@temple.edu" |
| }, |
| { |
| "first": "Shanshan", |
| "middle": [], |
| "last": "Zhang", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Temple University", |
| "location": {} |
| }, |
| "email": "zhang.shanshan@temple.edu" |
| }, |
| { |
| "first": "Nemanja", |
| "middle": [], |
| "last": "Djuric", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Temple University", |
| "location": {} |
| }, |
| "email": "nemanja@temple.edu" |
| }, |
| { |
| "first": "Slobodan", |
| "middle": [], |
| "last": "Vucetic", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Temple University", |
| "location": {} |
| }, |
| "email": "vucetic@temple.edu" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "Embedding of rare and out-of-vocabulary (OOV) words is an important open NLP problem. A popular solution is to train a character-level neural network to reproduce the embeddings from a standard word embedding model. The trained network is then used to assign vectors to any input string, including OOV and rare words. We enhance this approach and introduce an algorithm that iteratively refines and improves both word-and character-level models. We demonstrate that our method outperforms the existing algorithms on 5 word similarity data sets, and that it can be successfully applied to job title normalization, an important problem in the e-recruitment domain that suffers from the OOV problem.", |
| "pdf_parse": { |
| "paper_id": "2020", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "Embedding of rare and out-of-vocabulary (OOV) words is an important open NLP problem. A popular solution is to train a character-level neural network to reproduce the embeddings from a standard word embedding model. The trained network is then used to assign vectors to any input string, including OOV and rare words. We enhance this approach and introduce an algorithm that iteratively refines and improves both word-and character-level models. We demonstrate that our method outperforms the existing algorithms on 5 word similarity data sets, and that it can be successfully applied to job title normalization, an important problem in the e-recruitment domain that suffers from the OOV problem.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Inability to represent rare and unseen words, which is referred to as the out-of-vocabulary (OOV) problem, limits usefulness of the standard embedding approaches to real-world applications. For example, in the e-recruitment domain there is an extremely large number of ways one can write a job title for the same job type. LinkedIn users who are software engineers may describe themselves as software developer, python guru, sw engi., sw developper or sw and web application developer, which are caused by different variants, abbreviations, misspellings, or compoundings. In this case, standard embedding for a finite set of job titles is not helpful when recommending jobs to users with rare or unseen job titles.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "An embedding model that can effectively handle the OOV problem should preserve both semantic and syntactic characteristics of words and phrases. Recently proposed mimicking approach is a promising solution to this problem, with two representative algorithms being Mimick (Pinter et al., 2017) and GWR (Kim et al., 2018) . Their main idea is to train a character-level embedding neural network (NN) that can reconstruct, or mimic, an embedding from word-level embedding model. The trained character-level model is then used to generate both semantically and syntactically relevant embeddings for arbitrary character sequences. While Mimick and GWR used BiLSTM and CNN character-level models, respectively, similar approaches were recently proposed with several other architectures (Zhao et al., 2018; Schick and Sch\u00fctze, 2019) .", |
| "cite_spans": [ |
| { |
| "start": 271, |
| "end": 292, |
| "text": "(Pinter et al., 2017)", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 301, |
| "end": 319, |
| "text": "(Kim et al., 2018)", |
| "ref_id": "BIBREF5" |
| }, |
| { |
| "start": 780, |
| "end": 799, |
| "text": "(Zhao et al., 2018;", |
| "ref_id": "BIBREF20" |
| }, |
| { |
| "start": 800, |
| "end": 825, |
| "text": "Schick and Sch\u00fctze, 2019)", |
| "ref_id": "BIBREF14" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In order to provide high-quality embeddings useful for downstream applications, it is crucial for the model to preserve semantic characteristics of words and phrases, while also being robust to syntactic and word-form changes. However, this may not always be the case for the vanilla mimicking method. To see why, let us first denote the word embedding model as W and the character embedding model as G in the mimicking mechanism. Let us take a peek at model W produced by training on career profile corpus, described in detail in Section 5. The top 5 neighbors for word java developer in the vector space induced by W are software developer, software engineer, web developer, sr java developer, and programmer. After fitting G to mimic embeddings from W , the top 5 neighbors of java developer in the vector space induced by G become java developeur, javadeveloper, javva developer, javapython developer, javas developpper, many of which are rare phrases that were not placed in the neighborhood by W . This is helpful when dealing with the OOV and rare words such as javas developpper, but might negatively affect the quality of the embedding produced by G as the word-form similarities become too influential in the training of the model, resulting in G failing to preserve semantic similarities of words with the same meaning but different spelling. In the above example, software engineer and web developer no longer have similar embeddings with java developer, even though they refer to similar occupations. Ideally, model G should retain ability to map semantically related words into the same neighborhood, something that W does well. In addition, G should also be able to differentiate between words with similar spelling that are disparate semantically (e.g., java cafe expert should not be in the same neighborhood with java developer or java expert).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In order to better capture the syntactic and semantic similarities between words, we developed an iterative mimicking framework that strikes a good balance between word-level and character-level representations of words. In the proposed 2-mode framework, W training is re-initialized by G embeddings, then G is fine-tuned by mimicking W embeddings, and the process is repeated several times. As we demonstrate by experiments, the resulting procedure produces improved character-level embeddings on both common and rare and OOV words. We refer to the resulting approach as Iterative Mimicking (IM). Our contributions are summarized below:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "\u2022 We propose a framework that iteratively refines W and G models. The final char-level model G is used to assign vectors to any input sequence (such as OOV words);", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "\u2022 We show that the IM approach is superior to the state-of-the-art baselines through intrinsic and extrinsic evaluations on five word similarity tasks;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "\u2022 We illustrate effectiveness of the IM approach on a task of job title normalization, which is an important problem in the e-recruiting domain.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In this section, we discuss existing approaches capable of generating representations for OOV words. Aggregation of n-grams or morphemes. FastText (Bojanowski et al., 2016) algorithm directly learns embeddings of n-grams with a Word2Vec objective (CBOW or SkipGram). Then, embedding for an OOV word is simply aggregated as the average of the word's n-gram embeddings. In Charagram (Wieting et al., 2016) , a nonlinear aggregation function is used instead of averaging n-gram embeddings. Aggregation over morphemes is discussed in (Qiu et al., 2014) .", |
| "cite_spans": [ |
| { |
| "start": 147, |
| "end": 172, |
| "text": "(Bojanowski et al., 2016)", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 381, |
| "end": 403, |
| "text": "(Wieting et al., 2016)", |
| "ref_id": "BIBREF16" |
| }, |
| { |
| "start": 530, |
| "end": 548, |
| "text": "(Qiu et al., 2014)", |
| "ref_id": "BIBREF12" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Character-aware modules in deep NNs. Stacking deep NNs on top of character-level modules is a popular recent trend. For example, character BiLSTMs or CNNs are co-trained with a language model in ELMo (Peters et al., 2018) and charCNN (Kim et al., 2016) . Similar to mimicking, the character-aware modules in those methods are able to assign vectors to OOV words. However, they are computationally expensive due to a need to train a heavyweight language model on a large corpus to be effective. There are also approaches that co-train the character-aware modules with auxiliary supervised tasks, such as part-of-speech tagging (Santos and Zadrozny, 2014), text classification (Zhang et al., 2015) and machine translation (Luong and Manning, 2016) , but the resulting embeddings are not necessarily reusable for other downstream tasks.", |
| "cite_spans": [ |
| { |
| "start": 234, |
| "end": 252, |
| "text": "(Kim et al., 2016)", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 675, |
| "end": 695, |
| "text": "(Zhang et al., 2015)", |
| "ref_id": "BIBREF19" |
| }, |
| { |
| "start": 720, |
| "end": 745, |
| "text": "(Luong and Manning, 2016)", |
| "ref_id": "BIBREF7" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Mimicking. This approach allows learning lightweight character embedding models in a two-step manner (Pinter et al., 2017; Kim et al., 2018; Schick and Sch\u00fctze, 2019; Zhao et al., 2018) . It was shown that it yields superior performance to other baselines on multiple intrinsic and extrinsic tasks. Our proposed method is generalizing this line of research, as discussed in the following section.", |
| "cite_spans": [ |
| { |
| "start": 101, |
| "end": 122, |
| "text": "(Pinter et al., 2017;", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 123, |
| "end": 140, |
| "text": "Kim et al., 2018;", |
| "ref_id": "BIBREF5" |
| }, |
| { |
| "start": 141, |
| "end": 166, |
| "text": "Schick and Sch\u00fctze, 2019;", |
| "ref_id": "BIBREF14" |
| }, |
| { |
| "start": 167, |
| "end": 185, |
| "text": "Zhao et al., 2018)", |
| "ref_id": "BIBREF20" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "We first introduce the original mimicking mechanism used in Mimick (Pinter et al., 2017) and GWR (Kim et al., 2018) . We then describe our proposed iterative mimicking (IM) mechanism, which is a generalization of the original approaches.", |
| "cite_spans": [ |
| { |
| "start": 67, |
| "end": 88, |
| "text": "(Pinter et al., 2017)", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 97, |
| "end": 115, |
| "text": "(Kim et al., 2018)", |
| "ref_id": "BIBREF5" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Methodology", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Mimick and GWR methods share the same idea, where a character-level embedding model G is learned to mimic a pretrained word-level embedding model W .", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Mimick and GWR", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Word embedding model (W ). Given a corpus D and a vocabulary V , word embedding models such as SkipGram and CBOW output a vector for each word in V , resulting in an embedding set", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Mimick and GWR", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "{(w i , v W i )|i, ..., M }, where w i \u2208 V is a word and v W i \u2208 R d", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Mimick and GWR", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "is its vector representation. Word embedding models are good at preserving semantic similarities, where semantically similar words are assigned similar word embeddings.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Mimick and GWR", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Character embedding model (G). Mimick and GWR expands the fixed-vocabulary semantic space by training a character neural network G to mimic the embeddings from W . Generator G provides mapping from a character sequence to a vector in the same space as W , while preserving syntactic similarities (Pinter et al., 2017) . Figure 1 illustrates the general mimicking framework, where G is a black-box character-level neural network whose architecture can be customized differently depending on the task. (Pinter et al., 2017) defines G to be a Bidirectional LSTM (as shown in Figure 2a ), while (Kim et al., 2018) takes G to be a Convolutional Neural Network (CNN) followed by a Highway layer (see Figure 2b ), similar to the architecture in (Kim et al., 2016) . G takes word w, which is a sequence of characters and generates a d-dimensional vector v G w as output. Note that d matches the dimensionality of the embedding vectors produced by W . To train G, we minimize the squared Euclidean distance between", |
| "cite_spans": [ |
| { |
| "start": 296, |
| "end": 317, |
| "text": "(Pinter et al., 2017)", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 500, |
| "end": 521, |
| "text": "(Pinter et al., 2017)", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 591, |
| "end": 609, |
| "text": "(Kim et al., 2018)", |
| "ref_id": "BIBREF5" |
| }, |
| { |
| "start": 738, |
| "end": 756, |
| "text": "(Kim et al., 2016)", |
| "ref_id": "BIBREF4" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 320, |
| "end": 328, |
| "text": "Figure 1", |
| "ref_id": null |
| }, |
| { |
| "start": 572, |
| "end": 581, |
| "text": "Figure 2a", |
| "ref_id": "FIGREF1" |
| }, |
| { |
| "start": 694, |
| "end": 703, |
| "text": "Figure 2b", |
| "ref_id": "FIGREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Mimick and GWR", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "EQUATION", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [ |
| { |
| "start": 0, |
| "end": 8, |
| "text": "EQUATION", |
| "ref_id": "EQREF", |
| "raw_str": "v G i and v W i for w i \u2208 V , L = 1 |V | |V | i=1 v G i \u2212 v W i 2 2 .", |
| "eq_num": "(1)" |
| } |
| ], |
| "section": "Mimick and GWR", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "After the training phase completes, we can use the learned model G to generate vectors for any input character sequence.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Mimick and GWR", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "When G is fit on W , we observed that the syntactic similarities dominate relationships between the words, while semantic similarities weaken as compared to the embeddings produced by W . For example, for our e-recruiting data set discussed in more detail in Section 5, the neighbors of java developer are mostly spelling variants of job titles such as javadeveloper or javapython developer. Similarly, when the model is trained on a Twitter data set, neighbors of the word food are foods, fooooood, and frood. This result is clearly suboptimal, and is consistent with earlier findings (Pinter et al., 2017) . To address this issue, we propose an Iterative Mimicking (IM) mechanism, illustrated in Figure 3 . In IM, the word embedding model W and character embedding model G alternately influence each other in multiple iterations, a procedure we refer to as retrofitting. After fitting G on W once, IM continues with training W by re-initializing vector", |
| "cite_spans": [ |
| { |
| "start": 586, |
| "end": 607, |
| "text": "(Pinter et al., 2017)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 698, |
| "end": 706, |
| "text": "Figure 3", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Iterative Mimicking", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "v W i with the current v G i for each w i \u2208 V .", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Word", |
| "sec_num": null |
| }, |
| { |
| "text": "Thanks to different initialization, the training of W results in a different local minimum that should better represent the morphological information captured by G. The retrofitting will not only correct the vectors that G wrongly placed in the semantic space, but also enhance the learning of W by exploiting knowledge about syntactically similar words learned by G. Upon retraining W , IM proceeds by updating G based on the updated W , and the entire iterative process is repeated several times. The algorithm terminates after N iterations, after the gap between word-embedding space W and character-embedding space produced by G is sufficiently small, or after the embedding by G stabilizes. During inference, we may use G to generate vectors for any input string and discard W . Mimick (Pinter et al., 2017) and GWR (Zhao et al., 2018) are special cases of our algorithm, where the number of iterations N = 1.", |
| "cite_spans": [ |
| { |
| "start": 791, |
| "end": 812, |
| "text": "(Pinter et al., 2017)", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 821, |
| "end": 840, |
| "text": "(Zhao et al., 2018)", |
| "ref_id": "BIBREF20" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Word", |
| "sec_num": null |
| }, |
| { |
| "text": "In the following sections we evaluate the proposed framework on several different challenges. First, we compare IM to baselines on tasks of word similarity. Then, we consider job title normalization, a critical task in e-recruiting domain. We evaluate the method on a real-world, large-scale data set obtained from a major professional network.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Word", |
| "sec_num": null |
| }, |
| { |
| "text": "We first perform intrinsic evaluation of embedding models on word similarity tasks. Given word pairs and the word similarity judgements by human labelers, the quality of embedding models is measured as the correlation between the human judgment and the cosine similarity of word embeddings.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Word Similarity", |
| "sec_num": "4" |
| }, |
| { |
| "text": "Following the related work (Faruqui et al., 2016) , we used five standard word similarity data sets for English language: RG-65, Simlex (SL), WordSim-353 (WS), Stanford's RareWords (RW) and MEN-3000.", |
| "cite_spans": [ |
| { |
| "start": 27, |
| "end": 49, |
| "text": "(Faruqui et al., 2016)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "We compared the following embedding models: (1) FastText. Embedding of a word is averaged embedding of the word's n-grams. (2) Mimick. We implemented the original Mimick algorithm by using the same char-BiLSTM architecture as in the original paper (Pinter et al., 2017) , except that we set the hidden dimension in the char-BiLSTM to 300. (3) Mimick+IM. We used the same char-BiLSTM as in Mimick, but updated it with the proposed IM mechanism. (4) GWR. We implemented the original GWR algorithm and used the same architecture for char-CNN as in the original paper (Kim et al., 2018) . (5) GWR+IM. We used the same char-CNN as in GWR, but updated it with the proposed IM mechanism.", |
| "cite_spans": [ |
| { |
| "start": 248, |
| "end": 269, |
| "text": "(Pinter et al., 2017)", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 564, |
| "end": 582, |
| "text": "(Kim et al., 2018)", |
| "ref_id": "BIBREF5" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "Note that an alternative to the (Iterative) Mimicking models is to simply train a character-level neural network directly on the corpus in a Skip-Gram Word2Vec fashion (skipping W altogether). However, in our experiments on both NLP and the career data sets, we find that the character-level neural network when trained this way is very unstable. Without the help of the word-level information the character-level model is barely able to learn any word semantics on its own, it mostly picks up the word-form similarities. Furthermore, it is prone to being collapsed into a single point, where it would produce very similar vectors for any arbitrary input. For that reason we excluded this baseline from the analysis.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "To train FastText and the word embedding model W in the four mimicking models we used two different data sets: (1) Text8 1 , which contains the first 100 billion bytes of Wikipedia; (2) Twitter set , which contains 4 million tweets about different topics. Twitter corpus is used to evaluate the effect of training on informal and noisy sentences. Once a model is trained we generate embeddings for both words in a word-pair, and then calculate cosine similarity between the two embeddings. Finally, we calculated the Pearson correlation between cosine similarities and similarity scores provided by human annotators. We repeated each experiment 3 times. The averaged correlation score is reported.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "Hyperparameters: All models were trained from scratch. We set the dimensionality of embeddings to 100 for all five models. For FastText, we choose n-grams with n ranging from 2 to 5 so that we can assign vectors to any input. We instantiated the word-level model W as SkipGram in models (2)-(5). For both FastText and SkipGram we set the context window to 5. We only trained on words occurring more than 5 times. We ran FastText for 10 epochs. In Mimick and GWR, we trained SkipGram for 10 epochs, followed by 100 training epochs of character-level model G. For IM models we ran N = 5 iterations, during each we trained G for 20 epochs and W for 2 epochs. Thus, all models were trained for an equal number of epochs to ensure fair comparison. Table 1 shows the Pearson correlation for the 5 models on the two data sets. Most models performed better when trained on the Text8 corpus, due to its more diverse and formal vocabulary. We can observe that GWR outperformed Mimick on all data sets, showing that character-level CNN is superior to LSTM both in performance and training time. Both Mimick and GWR saw significant improvements through the proposed iterative process on most data sets, confirming our hypothesis that iteratively retrofitting the word-and the character-level models does improve the embedding quality.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 743, |
| "end": 750, |
| "text": "Table 1", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "We also performed qualitative analysis, where we compared the neighbors of various word embeddings trained on the Twitter corpus, including both common and OOV words. As seen in Table 2 , vanilla Mimick relies mainly on similar spelling to produce embeddings, with limited semantic capabilities. While this may be helpful in rare examples such as cheeseball, where the neighbors in word2vec are mostly noisy, examples such as seven and manhattan show that G may often disturb good relative positions between words. When trained in an IM fashion, the model was able to bring more semantically similar words with different spellings into the neighborhood, such as midtown and dumbo for word manhattan. In addition, it also restored the semantic neighbors of seven. Results of the Mimick+IM approach show that the model can infer high-quality embeddings for OOV words. For example, for prelecture the only relevant neighbor for Mimick is lecturing, while Mimick+IM mapped more semantically similar words such as lecturer, advising, and discussion.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 178, |
| "end": 185, |
| "text": "Table 2", |
| "ref_id": "TABREF2" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "We dedicate the rest of the paper to the task of job title normalization, an important problem in online recruiting industry worth astounding $400B (Cohan, 2018) . The unstructured nature of job titles and occupations makes job search on these online platforms difficult, as potential matches can be missed due to large variability. For example, although sw eng. and programmer refer to the same occupation, NLP models may fail to automatically match these two very different strings. This problem is further exacerbated for rare titles, which are even more difficult to model due to their low counts. As seen in Figure 4 , titles observed less than 10 times in our data set cover as much as 70% of the total corpus, making handling of rare titles a problem of very significant importance in the e-recruiting domain. To the best of our knowledge, this is the first work to utilize mimicking-based approaches to address the problem of job title normalization. We formally describe the problem of job title normalization as follows. We are given a data set", |
| "cite_spans": [ |
| { |
| "start": 148, |
| "end": 161, |
| "text": "(Cohan, 2018)", |
| "ref_id": "BIBREF1" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 613, |
| "end": 621, |
| "text": "Figure 4", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Job Title Normalization", |
| "sec_num": "5" |
| }, |
| { |
| "text": "D = {(t i , d i )|i = 1, ..., N },", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Job Title Normalization", |
| "sec_num": "5" |
| }, |
| { |
| "text": "where t i is job title and d i is job description. Both are free-form text entered by a user of a professional network such as LinkedIn or Indeed. Let us denote the vocabulary of job titles as T , and the vocabulary of words in job descriptions as V. Both T and V are infinite sets. Let us also suppose there is a job title taxonomy O = {o 1 , . . . , o m }, which is a finite set denoting m distinct job categories. An example of such a taxonomy is the Standard Occupational Classification (SOC), whose O*NET-SOC 2010 release contains 1,100 job titles (Elias et al., 2010 ). Then, the task is to match (or normalize) job title t \u2208 T to one job category o \u2208 O from the taxonomy. We note that this definition of job normalization corresponds to entity linking (Yamada et al., 2016; Moreno et al., 2017) . In our experiments we will evaluate results according to this definition. We also note that an alternative information retrieval definition of job normalization is to find job titles that are most similar to the query job title. We do not show experiments according to this definition.", |
| "cite_spans": [ |
| { |
| "start": 553, |
| "end": 572, |
| "text": "(Elias et al., 2010", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 759, |
| "end": 780, |
| "text": "(Yamada et al., 2016;", |
| "ref_id": "BIBREF18" |
| }, |
| { |
| "start": 781, |
| "end": 801, |
| "text": "Moreno et al., 2017)", |
| "ref_id": "BIBREF8" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Job Title Normalization", |
| "sec_num": "5" |
| }, |
| { |
| "text": "To classify a job title into a category, we first learn how to embed an input string representing a job title into a vector space using the character-level model G. Using the same model we can map all job categories into the same vector space by assigning each category a vector. 2 Then, given a particular job title, we match it to the closest job category in the vector space. Due to the large variety of ways one can write a job title, models that are able to generate high-quality embeddings for rare or OOV titles are preferable. We note that this approach does not require manually labeled training data, unlike the method proposed in (Neculoiu et al., 2016) . All that is required is a corpus of (job titles, job description) pairs to train the embedding models.", |
| "cite_spans": [ |
| { |
| "start": 641, |
| "end": 664, |
| "text": "(Neculoiu et al., 2016)", |
| "ref_id": "BIBREF9" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Job Title Normalization", |
| "sec_num": "5" |
| }, |
| { |
| "text": "We obtained a list of 1.1 million (job title, job description) pairs from a large professional social network. An example of such pairs is listed in Table 3 . The job titles in the data set encompass a broad range of Number of job titles Figure 4 : Distribution of job title frequencies (x-axis is rounded logarithm of job title frequencies, while y-axis is number of unique job titles with the corresponding frequency in log-scale industries and occupations. We process the job titles by replacing the white spaces with underscores and add a # character at the beginning of a job title to distinguish a job title from a word in job descriptions. We remove punctuation and lowercase all job titles and words in the data set. The number of unique job titles is 630,000 and the number of unique words in job descriptions is 920,000. We plot the distribution of job title frequencies in rounded logarithm scale in Figure 4 . As we can see, most of the job titles appear only once in D (around 300,000), accounting for nearly 50% of the data set. Word embedding model W: We preprocess our data set D in order to learn word embedding model W for tokens in both T and V. We insert each job title t i into the job description d i at n random positions where n = length(d i )", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 149, |
| "end": 156, |
| "text": "Table 3", |
| "ref_id": "TABREF3" |
| }, |
| { |
| "start": 238, |
| "end": 246, |
| "text": "Figure 4", |
| "ref_id": null |
| }, |
| { |
| "start": 911, |
| "end": 919, |
| "text": "Figure 4", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": ". Thus, we form a new data set S = {d i |i = 1, ..., N }, where d i is obtained by adding t i to d i . We then feed the sequences S to SkipGram Word2Vec algorithm. As a result, job titles and words in job descriptions are in the same vector space. We note that this job title insertion process results in fundamentally the same embedding as if we applied a joint embedding algorithm such as StarSpace (Wu et al., 2018) on the original (job title, job description) pairs.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "Test job titles: We selected 1,000 testing job titles ranging widely in frequencies. Specifically, we sampled 125 job titles randomly from a frequency range [2 r , 2 r+1 ), where r is selected from the set {4, 5, 6, 7, 8, 9}, resulting in 750 job titles. Another 125 job titles were randomly sampled from range [1, 2 4 ) and 125 random job titles from range [2 10 , \u221e). Let us denote the testing job titles from the 8 different ranges as T 1 , T 2 , ..., T 8 , where T 1 contains the rarest job titles and T 8 contains the most frequent job titles.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "Baselines: We compare the performance of FastText, Mimick, Mimick+IM, and GWR+IM, in addition to AutoCoder, which is a commercial software 3 . It implements a keyword search algorithm, capable of mapping any job title to the O*Net-SOC taxonomy. The software was originally developed for the U.S. Department of Labor. We note that due to the expensive and manual nature of our evaluation process, we decided to only include the original Mimick as a representative of the vanilla mimicking. Difference between Mimick and Mimick+IM should indicate the impact of IM, while comparison of Mimick+IM and GWR+IM should indicate the difference between Mimick and GWR.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "Hyperparameters: We set the embedding dimension as 100 for all embedding models. We selected job titles and words with frequency larger than 2 3 to train FastText and SkipGram models. This resulted in a corpus comprising around 80,000 unique job titles and 71,000 unique regular words, used to train the embedding models. Hyperparameters for SkipGram, Mimick, and the IM models were set as in Section 4.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "Evaluating job title normalization: We asked 6 human evaluators to judge the job title normalization quality of the 5 competing models. All human judgers are computer science graduate students who have broad knowledge about occupation titles and the job market. We designed our evaluation scheme similarly to (Liu et al., 2015) . For each query job title, we listed randomly shuffled best matches from O*NET-SOC taxonomy produced by each model. Then, human evaluators were asked to choose the best match. If a model produced the winning category it received 1 point, otherwise it received 0 points. If multiple models produced the winning category all of them received 1 point. The normalization quality of a model is the sum of the points divided by 1000, which is a size of the test set. The evaluation process is manual and very labor intensive, and it took more than 5 days to complete.", |
| "cite_spans": [ |
| { |
| "start": 309, |
| "end": 327, |
| "text": "(Liu et al., 2015)", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation Metrics", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "We note that there are cases when it is difficult for human evaluators to pick the most related category from the list, especially for rare titles, when all models produce different but similarly good results. For example, job titles can be blended such as engineer and statistician. Some models may normalize the job title to engineers and others to statisticians. Rare job titles may also be ambiguous, such as energy healing and body work for women. For such titles, human evaluators were allowed to search on Google to understand their meaning. We also observed that the categories in the O*NET-SOC taxonomy can be very similar. For instance, acrobat software engineer was normalized to software developers-application, software developers-systems software, computer systems engineers/architects by different models, all of which are equally acceptable. In such cases, human evaluators were also allowed to choose more than one category as co-winners. Table 4 shows the scores given by 6 human evaluators. Five out of 6 human evaluators rated our IM models superior when it comes to normalizing job titles, with GWR+IM being the best model. Experimental results also show that by applying IM to the Mimick LSTM model, the quality of the normalization significantly improved, nearly 25% on average. We also report the average score by the 6 evaluators for each of the frequency ranges in Table 5 . As expected, all models performed well on the more frequent job titles. When compared to the commercial AutoCoder software, we can see that our best model is comparable on the frequent job titles. AutoCoder outperforms our model on T 6 and T 7 and our model is better on the most frequent group T 8 . However, for the less frequent job titles covering groups T 1 to T 5 , our approach is significantly more accurate than AutoCoder. This is an impressive result considering that our model is trained in less than an hour on an unsupervised document corpus with minimal manual human efforts aside from evaluations, while AutoCoder is based on multiple years of painstaking tuning and updates. Examples of job title normalization can be found in Table 6 . We list raw job titles within different frequency ranges, from rare to frequent job titles. We can see that both Mimick+IM and GWR+IM improve the normalization results compared to the baselines in a number of cases across the frequency ranges. For example, for rare titles like econometrics intern, the commercial software AutoCoder fails to classify it to any category, while the proposed iterative mimicking models are able to assign a financerelated category for the title. For the title consultantowner, GWR+IM is the only model that recognizes owner and thus normalizes it to the most relevant category Chief Executives. Another interesting example is for the title founding board member, which appears in group T 4 . The IM-based methods assigned Chief Executives category, which is arguably more related to the raw job title than Electrical And Electric Equipment Assemblers inferred by AutoCoder or Fundraisers by Mimick and FastText approaches.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 956, |
| "end": 963, |
| "text": "Table 4", |
| "ref_id": "TABREF4" |
| }, |
| { |
| "start": 1391, |
| "end": 1398, |
| "text": "Table 5", |
| "ref_id": "TABREF5" |
| }, |
| { |
| "start": 2144, |
| "end": 2151, |
| "text": "Table 6", |
| "ref_id": "TABREF6" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation Metrics", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "Frequency T 1 T 2 T 3 T 4 T 5 T 6 T 7 T 8", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "5.3" |
| }, |
| { |
| "text": "Finally, we performed a qualitative analysis of the job title embeddings to better understand differences between vanilla Mimick and Iterative Mimick. We list the top 5 nearest neighbors of example job titles based on the embeddings obtained from 3 models, shown in Table 7 . As can be seen, although Mimick is able to mimic the nearest neighbors of Word2Vec to some extent, it relies too much on the surface form of words in job titles. By retrofitting Word2Vec and Char-BiLSTM, our proposed Iterative Mimicking was able to generate nearest neighbors with better overall quality than the competing approaches. For example, neighbors of waitress inferred by Mimick+IM closely resemble those produced by Word2Vec, and significantly outperform those produced by Mimick. When it comes to OOV titles that Word2Vec cannot handle, for sofftware engineeeeeer the proposed method provided much better neighbors than Mimick. When it comes to teaching assistant for principles of data science, we can see that neighbors produced by Mimick are reasonable, yet those in Mimick+IM are more fine-grained as they are all instructional positions in the field of data science.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 266, |
| "end": 273, |
| "text": "Table 7", |
| "ref_id": "TABREF7" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "5.3" |
| }, |
| { |
| "text": "In this paper we introduced a lightweight framework that enhances the existing mimicking models by iteratively retrofitting a word-level and a character-level embedding neural networks. We showed that the proposed algorithm can be successfully applied to the NLP task of word similarity, as well as the task of job title normalization, a challenging and very important problem in the e-recruitment domain.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "6" |
| }, |
| { |
| "text": "http://mattmahoney.net/dc/textdata.html, last accessed June 2020.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "The BLS releases a Direct Match Titles file as a part of the SOC taxonomy package, which can be found on https://www.bls.gov/soc/2010/classification. Each category in the taxonomy contains a few Direct Match example titles. In order to strengthen the quality of the category vectors, we assign each Direct Match title a vector using the character-level model and average them to get the final vector for each category in the taxonomy.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "https://www.onetsocautocoder.com/plus/onetmatch, last accessed June 2020.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "Enriching word vectors with subword information", |
| "authors": [ |
| { |
| "first": "Piotr", |
| "middle": [], |
| "last": "Bojanowski", |
| "suffix": "" |
| }, |
| { |
| "first": "Edouard", |
| "middle": [], |
| "last": "Grave", |
| "suffix": "" |
| }, |
| { |
| "first": "Armand", |
| "middle": [], |
| "last": "Joulin", |
| "suffix": "" |
| }, |
| { |
| "first": "Tomas", |
| "middle": [], |
| "last": "Mikolov", |
| "suffix": "" |
| } |
| ], |
| "year": 2016, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": { |
| "arXiv": [ |
| "arXiv:1607.04606" |
| ] |
| }, |
| "num": null, |
| "urls": [], |
| "raw_text": "Piotr Bojanowski, Edouard Grave, Armand Joulin, and Tomas Mikolov. 2016. Enriching word vectors with subword information. arXiv preprint arXiv:1607.04606.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Hired challenges linkedin in $400b market for talent recruiting", |
| "authors": [ |
| { |
| "first": "Peter", |
| "middle": [], |
| "last": "Cohan", |
| "suffix": "" |
| } |
| ], |
| "year": 2018, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Peter Cohan. 2018. Hired challenges linkedin in $400b market for talent recruiting.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Soc2010: revision of the standard occupational classification", |
| "authors": [ |
| { |
| "first": "Peter", |
| "middle": [], |
| "last": "Elias", |
| "suffix": "" |
| }, |
| { |
| "first": "Margaret", |
| "middle": [], |
| "last": "Birch", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Economic & Labour Market Review", |
| "volume": "4", |
| "issue": "7", |
| "pages": "48--55", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Peter Elias, Margaret Birch, et al. 2010. Soc2010: revision of the standard occupational classification. Economic & Labour Market Review, 4(7):48-55.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Problems with evaluation of word embeddings using word similarity tasks", |
| "authors": [ |
| { |
| "first": "Manaal", |
| "middle": [], |
| "last": "Faruqui", |
| "suffix": "" |
| }, |
| { |
| "first": "Yulia", |
| "middle": [], |
| "last": "Tsvetkov", |
| "suffix": "" |
| }, |
| { |
| "first": "Pushpendre", |
| "middle": [], |
| "last": "Rastogi", |
| "suffix": "" |
| }, |
| { |
| "first": "Chris", |
| "middle": [], |
| "last": "Dyer", |
| "suffix": "" |
| } |
| ], |
| "year": 2016, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": { |
| "arXiv": [ |
| "arXiv:1605.02276" |
| ] |
| }, |
| "num": null, |
| "urls": [], |
| "raw_text": "Manaal Faruqui, Yulia Tsvetkov, Pushpendre Rastogi, and Chris Dyer. 2016. Problems with evaluation of word embeddings using word similarity tasks. arXiv preprint arXiv:1605.02276.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Character-aware neural language models", |
| "authors": [ |
| { |
| "first": "Yoon", |
| "middle": [], |
| "last": "Kim", |
| "suffix": "" |
| }, |
| { |
| "first": "Yacine", |
| "middle": [], |
| "last": "Jernite", |
| "suffix": "" |
| }, |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Sontag", |
| "suffix": "" |
| }, |
| { |
| "first": "Alexander M", |
| "middle": [], |
| "last": "Rush", |
| "suffix": "" |
| } |
| ], |
| "year": 2016, |
| "venue": "AAAI", |
| "volume": "", |
| "issue": "", |
| "pages": "2741--2749", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Yoon Kim, Yacine Jernite, David Sontag, and Alexander M Rush. 2016. Character-aware neural language models. In AAAI, pages 2741-2749.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Learning to generate word representations using subword information", |
| "authors": [ |
| { |
| "first": "Yeachan", |
| "middle": [], |
| "last": "Kim", |
| "suffix": "" |
| }, |
| { |
| "first": "Kang-Min", |
| "middle": [], |
| "last": "Kim", |
| "suffix": "" |
| }, |
| { |
| "first": "Ji-Min", |
| "middle": [], |
| "last": "Lee", |
| "suffix": "" |
| }, |
| { |
| "first": "Sangkeun", |
| "middle": [], |
| "last": "Lee", |
| "suffix": "" |
| } |
| ], |
| "year": 2018, |
| "venue": "Proceedings of the 27th International Conference on Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "2551--2561", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Yeachan Kim, Kang-Min Kim, Ji-Min Lee, and SangKeun Lee. 2018. Learning to generate word representations using subword information. In Proceedings of the 27th International Conference on Computational Linguistics, pages 2551-2561, Santa Fe, New Mexico, USA, August. Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Representation learning using multi-task deep neural networks for semantic classification and information retrieval", |
| "authors": [ |
| { |
| "first": "Xiaodong", |
| "middle": [], |
| "last": "Liu", |
| "suffix": "" |
| }, |
| { |
| "first": "Jianfeng", |
| "middle": [], |
| "last": "Gao", |
| "suffix": "" |
| }, |
| { |
| "first": "Xiaodong", |
| "middle": [], |
| "last": "He", |
| "suffix": "" |
| }, |
| { |
| "first": "Li", |
| "middle": [], |
| "last": "Deng", |
| "suffix": "" |
| }, |
| { |
| "first": "Kevin", |
| "middle": [], |
| "last": "Duh", |
| "suffix": "" |
| }, |
| { |
| "first": "Ye-Yi", |
| "middle": [], |
| "last": "Wang", |
| "suffix": "" |
| } |
| ], |
| "year": 2015, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Xiaodong Liu, Jianfeng Gao, Xiaodong He, Li Deng, Kevin Duh, and Ye-Yi Wang. 2015. Representation learning using multi-task deep neural networks for semantic classification and information retrieval.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Achieving open vocabulary neural machine translation with hybrid word-character models", |
| "authors": [ |
| { |
| "first": "Minh-Thang", |
| "middle": [], |
| "last": "Luong", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher D", |
| "middle": [], |
| "last": "Manning", |
| "suffix": "" |
| } |
| ], |
| "year": 2016, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": { |
| "arXiv": [ |
| "arXiv:1604.00788" |
| ] |
| }, |
| "num": null, |
| "urls": [], |
| "raw_text": "Minh-Thang Luong and Christopher D Manning. 2016. Achieving open vocabulary neural machine translation with hybrid word-character models. arXiv preprint arXiv:1604.00788.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Combining word and entity embeddings for entity linking. extended semantic web conference", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Moreno", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Besan\u00e7on", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Beaumont", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [ |
| "L" |
| ], |
| "last": "Ligozat", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Rosset", |
| "suffix": "" |
| }, |
| { |
| "first": "X", |
| "middle": [], |
| "last": "Tannier", |
| "suffix": "" |
| }, |
| { |
| "first": "B", |
| "middle": [], |
| "last": "Grau", |
| "suffix": "" |
| } |
| ], |
| "year": 2017, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Moreno, R. Besan\u00e7on, R. Beaumont, E. D'hondt, A. L. Ligozat, S. Rosset, X. Tannier, and B. Grau. 2017. Com- bining word and entity embeddings for entity linking. extended semantic web conference. Portoroz, Slovenia, Jan. Extended Semantic Web Conference, Springer.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Learning text similarity with siamese recurrent networks", |
| "authors": [ |
| { |
| "first": "Paul", |
| "middle": [], |
| "last": "Neculoiu", |
| "suffix": "" |
| }, |
| { |
| "first": "Maarten", |
| "middle": [], |
| "last": "Versteegh", |
| "suffix": "" |
| }, |
| { |
| "first": "Mihai", |
| "middle": [], |
| "last": "Rotaru", |
| "suffix": "" |
| } |
| ], |
| "year": 2016, |
| "venue": "Proceedings of the 1st Workshop on Representation Learning for NLP", |
| "volume": "", |
| "issue": "", |
| "pages": "148--157", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Paul Neculoiu, Maarten Versteegh, and Mihai Rotaru. 2016. Learning text similarity with siamese recurrent networks. In Proceedings of the 1st Workshop on Representation Learning for NLP, pages 148-157.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "Deep contextualized word representations", |
| "authors": [ |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Matthew", |
| "suffix": "" |
| }, |
| { |
| "first": "Mark", |
| "middle": [], |
| "last": "Peters", |
| "suffix": "" |
| }, |
| { |
| "first": "Mohit", |
| "middle": [], |
| "last": "Neumann", |
| "suffix": "" |
| }, |
| { |
| "first": "Matt", |
| "middle": [], |
| "last": "Iyyer", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher", |
| "middle": [], |
| "last": "Gardner", |
| "suffix": "" |
| }, |
| { |
| "first": "Kenton", |
| "middle": [], |
| "last": "Clark", |
| "suffix": "" |
| }, |
| { |
| "first": "Luke", |
| "middle": [], |
| "last": "Lee", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Zettlemoyer", |
| "suffix": "" |
| } |
| ], |
| "year": 2018, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": { |
| "arXiv": [ |
| "arXiv:1802.05365" |
| ] |
| }, |
| "num": null, |
| "urls": [], |
| "raw_text": "Matthew E Peters, Mark Neumann, Mohit Iyyer, Matt Gardner, Christopher Clark, Kenton Lee, and Luke Zettle- moyer. 2018. Deep contextualized word representations. arXiv preprint arXiv:1802.05365.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Mimicking word embeddings using subword rnns", |
| "authors": [ |
| { |
| "first": "Yuval", |
| "middle": [], |
| "last": "Pinter", |
| "suffix": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Guthrie", |
| "suffix": "" |
| }, |
| { |
| "first": "Jacob", |
| "middle": [], |
| "last": "Eisenstein", |
| "suffix": "" |
| } |
| ], |
| "year": 2017, |
| "venue": "Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "102--112", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Yuval Pinter, Robert Guthrie, and Jacob Eisenstein. 2017. Mimicking word embeddings using subword rnns. In Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing, pages 102-112.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Co-learning of word representations and morpheme representations", |
| "authors": [ |
| { |
| "first": "Siyu", |
| "middle": [], |
| "last": "Qiu", |
| "suffix": "" |
| }, |
| { |
| "first": "Qing", |
| "middle": [], |
| "last": "Cui", |
| "suffix": "" |
| }, |
| { |
| "first": "Jiang", |
| "middle": [], |
| "last": "Bian", |
| "suffix": "" |
| }, |
| { |
| "first": "Bin", |
| "middle": [], |
| "last": "Gao", |
| "suffix": "" |
| }, |
| { |
| "first": "Tie-Yan", |
| "middle": [], |
| "last": "Liu", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of COLING 2014, the 25th International Conference on Computational Linguistics: Technical Papers", |
| "volume": "", |
| "issue": "", |
| "pages": "141--150", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Siyu Qiu, Qing Cui, Jiang Bian, Bin Gao, and Tie-Yan Liu. 2014. Co-learning of word representations and mor- pheme representations. In Proceedings of COLING 2014, the 25th International Conference on Computational Linguistics: Technical Papers, pages 141-150.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Learning character-level representations for part-of-speech tagging", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Cicero", |
| "suffix": "" |
| }, |
| { |
| "first": "Bianca", |
| "middle": [], |
| "last": "Santos", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Zadrozny", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the 31st International Conference on Machine Learning (ICML-14)", |
| "volume": "", |
| "issue": "", |
| "pages": "1818--1826", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Cicero D Santos and Bianca Zadrozny. 2014. Learning character-level representations for part-of-speech tagging. In Proceedings of the 31st International Conference on Machine Learning (ICML-14), pages 1818-1826.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Attentive mimicking: Better word embeddings by attending to informative contexts", |
| "authors": [ |
| { |
| "first": "Timo", |
| "middle": [], |
| "last": "Schick", |
| "suffix": "" |
| }, |
| { |
| "first": "Hinrich", |
| "middle": [], |
| "last": "Sch\u00fctze", |
| "suffix": "" |
| } |
| ], |
| "year": 2019, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": { |
| "arXiv": [ |
| "arXiv:1904.01617" |
| ] |
| }, |
| "num": null, |
| "urls": [], |
| "raw_text": "Timo Schick and Hinrich Sch\u00fctze. 2019. Attentive mimicking: Better word embeddings by attending to informa- tive contexts. arXiv preprint arXiv:1904.01617.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "The hurricane sandy twitter corpus", |
| "authors": [ |
| { |
| "first": "Haoyu", |
| "middle": [], |
| "last": "Wang", |
| "suffix": "" |
| }, |
| { |
| "first": "Eduard", |
| "middle": [], |
| "last": "Hovy", |
| "suffix": "" |
| }, |
| { |
| "first": "Mark", |
| "middle": [], |
| "last": "Dredze", |
| "suffix": "" |
| } |
| ], |
| "year": 2015, |
| "venue": "Workshops at the twenty-ninth AAAI conference on artificial intelligence", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Haoyu Wang, Eduard Hovy, and Mark Dredze. 2015. The hurricane sandy twitter corpus. In Workshops at the twenty-ninth AAAI conference on artificial intelligence.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "Charagram: Embedding words and sentences via character n-grams", |
| "authors": [ |
| { |
| "first": "John", |
| "middle": [], |
| "last": "Wieting", |
| "suffix": "" |
| }, |
| { |
| "first": "Mohit", |
| "middle": [], |
| "last": "Bansal", |
| "suffix": "" |
| }, |
| { |
| "first": "Kevin", |
| "middle": [], |
| "last": "Gimpel", |
| "suffix": "" |
| }, |
| { |
| "first": "Karen", |
| "middle": [], |
| "last": "Livescu", |
| "suffix": "" |
| } |
| ], |
| "year": 2016, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": { |
| "arXiv": [ |
| "arXiv:1607.02789" |
| ] |
| }, |
| "num": null, |
| "urls": [], |
| "raw_text": "John Wieting, Mohit Bansal, Kevin Gimpel, and Karen Livescu. 2016. Charagram: Embedding words and sen- tences via character n-grams. arXiv preprint arXiv:1607.02789.", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Starspace: Embed all the things! In Thirty-Second AAAI Conference on Artificial Intelligence", |
| "authors": [ |
| { |
| "first": "Yu", |
| "middle": [], |
| "last": "Ledell", |
| "suffix": "" |
| }, |
| { |
| "first": "Adam", |
| "middle": [], |
| "last": "Wu", |
| "suffix": "" |
| }, |
| { |
| "first": "Sumit", |
| "middle": [], |
| "last": "Fisch", |
| "suffix": "" |
| }, |
| { |
| "first": "Keith", |
| "middle": [], |
| "last": "Chopra", |
| "suffix": "" |
| }, |
| { |
| "first": "Antoine", |
| "middle": [], |
| "last": "Adams", |
| "suffix": "" |
| }, |
| { |
| "first": "Jason", |
| "middle": [], |
| "last": "Bordes", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Weston", |
| "suffix": "" |
| } |
| ], |
| "year": 2018, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ledell Yu Wu, Adam Fisch, Sumit Chopra, Keith Adams, Antoine Bordes, and Jason Weston. 2018. Starspace: Embed all the things! In Thirty-Second AAAI Conference on Artificial Intelligence.", |
| "links": null |
| }, |
| "BIBREF18": { |
| "ref_id": "b18", |
| "title": "Joint learning of the embedding of words and entities for named entity disambiguation", |
| "authors": [ |
| { |
| "first": "Ikuya", |
| "middle": [], |
| "last": "Yamada", |
| "suffix": "" |
| }, |
| { |
| "first": "Hiroyuki", |
| "middle": [], |
| "last": "Shindo", |
| "suffix": "" |
| }, |
| { |
| "first": "Hideaki", |
| "middle": [], |
| "last": "Takeda", |
| "suffix": "" |
| }, |
| { |
| "first": "Yoshiyasu", |
| "middle": [], |
| "last": "Takefuji", |
| "suffix": "" |
| } |
| ], |
| "year": 2016, |
| "venue": "Proceedings of The 20th SIGNLL Conference on Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "250--259", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ikuya Yamada, Hiroyuki Shindo, Hideaki Takeda, and Yoshiyasu Takefuji. 2016. Joint learning of the embedding of words and entities for named entity disambiguation. In Proceedings of The 20th SIGNLL Conference on Computational Natural Language Learning, pages 250-259, Berlin, Germany, August. Association for Compu- tational Linguistics.", |
| "links": null |
| }, |
| "BIBREF19": { |
| "ref_id": "b19", |
| "title": "Character-level convolutional networks for text classification", |
| "authors": [ |
| { |
| "first": "Xiang", |
| "middle": [], |
| "last": "Zhang", |
| "suffix": "" |
| }, |
| { |
| "first": "Junbo", |
| "middle": [], |
| "last": "Zhao", |
| "suffix": "" |
| }, |
| { |
| "first": "Yann", |
| "middle": [], |
| "last": "Lecun", |
| "suffix": "" |
| } |
| ], |
| "year": 2015, |
| "venue": "Advances in neural information processing systems", |
| "volume": "", |
| "issue": "", |
| "pages": "649--657", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Xiang Zhang, Junbo Zhao, and Yann LeCun. 2015. Character-level convolutional networks for text classification. In Advances in neural information processing systems, pages 649-657.", |
| "links": null |
| }, |
| "BIBREF20": { |
| "ref_id": "b20", |
| "title": "Generalizing word embeddings using bag of subwords", |
| "authors": [ |
| { |
| "first": "Jinman", |
| "middle": [], |
| "last": "Zhao", |
| "suffix": "" |
| }, |
| { |
| "first": "Sidharth", |
| "middle": [], |
| "last": "Mudgal", |
| "suffix": "" |
| }, |
| { |
| "first": "Yingyu", |
| "middle": [], |
| "last": "Liang", |
| "suffix": "" |
| } |
| ], |
| "year": 2018, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": { |
| "arXiv": [ |
| "arXiv:1809.04259" |
| ] |
| }, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jinman Zhao, Sidharth Mudgal, and Yingyu Liang. 2018. Generalizing word embeddings using bag of subwords. arXiv preprint arXiv:1809.04259.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "uris": null, |
| "num": null, |
| "text": "Figure 1: General Mimicking Framework", |
| "type_str": "figure" |
| }, |
| "FIGREF1": { |
| "uris": null, |
| "num": null, |
| "text": "Different architectures for character-level models G", |
| "type_str": "figure" |
| }, |
| "FIGREF2": { |
| "uris": null, |
| "num": null, |
| "text": "0.623 0.658 0.668 0.746 0.718 0.756 0.792", |
| "type_str": "figure" |
| }, |
| "TABREF1": { |
| "num": null, |
| "content": "<table><tr><td>Corpus</td><td>Model</td><td>RG65</td><td>SL</td><td>WS</td><td>RW</td><td>MEN</td></tr><tr><td/><td>FastText</td><td colspan=\"5\">0.551 0.273 0.621 0.422 0.613</td></tr><tr><td/><td>Mimick</td><td colspan=\"5\">0.418 0.142 0.439 0.206 0.390</td></tr><tr><td>Text8 Text8</td><td colspan=\"6\">Mimick+IM 0.463 0.238 0.512 0.282 0.474</td></tr><tr><td/><td>GWR</td><td colspan=\"5\">0.572 0.270 0.627 0.276 0.624</td></tr><tr><td/><td>GWR+IM</td><td colspan=\"5\">0.643 0.294 0.673 0.317 0.664</td></tr><tr><td/><td>FastText</td><td colspan=\"5\">0.662 0.196 0.415 0.277 0.628</td></tr><tr><td/><td>Mimick</td><td colspan=\"5\">0.312 0.061 0.204 0.102 0.316</td></tr><tr><td>Twitter</td><td colspan=\"6\">Mimick+IM 0.355 0.092 0.242 0.118 0.385</td></tr><tr><td/><td>GWR</td><td colspan=\"5\">0.560 0.202 0.403 0.161 0.578</td></tr><tr><td/><td>GWR+IM</td><td colspan=\"5\">0.683 0.221 0.467 0.189 0.612</td></tr></table>", |
| "text": "Pearson correlation on 5 word similarity tasks", |
| "html": null, |
| "type_str": "table" |
| }, |
| "TABREF2": { |
| "num": null, |
| "content": "<table><tr><td>Word</td><td>Word2Vec</td><td>Mimick</td><td>Mimick+IM</td></tr><tr><td>manhattan</td><td>nyc, queens, midtown, dumbo, williamsburgbridge</td><td>manhattans, manhatan, cmanhattan, nyc, manhatten</td><td>manhattans, midtown, aftersandy, nyc, dumbo, cmanhattan</td></tr><tr><td>seven</td><td>four, eight, three, five, six</td><td>server, severe, sevens, deven, tern</td><td>eight, four, sevens, seventy, three</td></tr><tr><td>cheeseball</td><td>eatbar, taboon, india, hahahaha, wildflowers</td><td>cheeseballs, cheeseboy, cheesehead, cheeses, cheese</td><td>cheeseballs, cheeseboy, cheesehead, tomato, cheeseburger</td></tr><tr><td>prelecture (OOV)</td><td>-</td><td>lecturing, innocence, liban, humanist, preparados</td><td>lecturer, lecturing, advising, philosophy, discussion</td></tr><tr><td>fishering (OOV)</td><td>-</td><td>fishermen, craftbeer, slobbering, gathering, farms</td><td>fisherman, fishers, fishery, fishes, water, nord</td></tr></table>", |
| "text": "Nearest Neighbors of different embedding models for the Twitter data set", |
| "html": null, |
| "type_str": "table" |
| }, |
| "TABREF3": { |
| "num": null, |
| "content": "<table><tr><td/><td>10 5</td><td/><td/><td/></tr><tr><td/><td>10 4</td><td/><td/><td/></tr><tr><td>title: software engineer</td><td/><td/><td/><td/></tr><tr><td>description: I'm a python developer building</td><td>10 3</td><td/><td/><td/></tr><tr><td>a Web application for job recruiters to search multiple job boards at once like Kayak.com.</td><td>0</td><td>1</td><td>2 Frequency (log2 scale) 3 4 5 6 7 8</td><td>9 10+</td></tr><tr><td>For recruiters, it's a highly concurrent applica-</td><td/><td/><td/><td/></tr><tr><td>tion using MongoDB for the backend.</td><td/><td/><td/><td/></tr></table>", |
| "text": "Example of job title and description", |
| "html": null, |
| "type_str": "table" |
| }, |
| "TABREF4": { |
| "num": null, |
| "content": "<table><tr><td>Judger</td><td>#1</td><td>#2</td><td>#3</td><td>#4</td><td>#5</td><td>#6</td><td>Avg.</td></tr><tr><td>AutoCoder</td><td colspan=\"7\">0.636 0.679 0.546 0.628 0.540 0.698 0.621</td></tr><tr><td>FastText</td><td colspan=\"7\">0.552 0.581 0.476 0.518 0.511 0.503 0.524</td></tr><tr><td>Mimick</td><td colspan=\"7\">0.501 0.527 0.485 0.571 0.437 0.554 0.513</td></tr><tr><td colspan=\"8\">Mimick+IM 0.673 0.672 0.583 0.631 0.646 0.646 0.642</td></tr><tr><td>GWR+IM</td><td colspan=\"7\">0.758 0.767 0.647 0.719 0.587 0.685 0.694</td></tr></table>", |
| "text": "Avg. testing scores of models by different human judgers", |
| "html": null, |
| "type_str": "table" |
| }, |
| "TABREF5": { |
| "num": null, |
| "content": "<table/>", |
| "text": "Avg. testing scores of models in different frequency ranges", |
| "html": null, |
| "type_str": "table" |
| }, |
| "TABREF6": { |
| "num": null, |
| "content": "<table><tr><td colspan=\"2\">Raw title Freq</td><td>AutoCoder</td><td>FastText</td><td>Mimic</td><td>Mimic+IM</td><td>GWR+IM</td></tr><tr><td>art teacher</td><td/><td>Art, Drama, And</td><td>Kindergarten</td><td>Education</td><td>Art, Drama, And</td><td>Art, Drama, And</td></tr><tr><td>cochair sdh art</td><td>T1</td><td>Music Teachers,</td><td>Teachers, Except</td><td>Teachers,</td><td>Music Teachers,</td><td>Music Teachers,</td></tr><tr><td>dept</td><td/><td>Postsecondary</td><td>Special Educations</td><td>Postsecondary</td><td>Postsecondary</td><td>Postsecondary</td></tr><tr><td>econometrics intern</td><td>T2</td><td>Not Classified</td><td>Economists</td><td>Social Sicence Research Assistants</td><td>Financial Analysts Quantitative</td><td>Economists</td></tr><tr><td>consultantowner</td><td>T3</td><td>Rehabilitation Counselors</td><td>Industrial-Organizational Psychologists</td><td>Wine Energy Project Managers</td><td colspan=\"2\">Logistics Managers Chief Executives</td></tr><tr><td>founding board member</td><td>T4</td><td>Electrical And Assemblers Electronic Equipment</td><td>Fundraisers</td><td>Fundraisers</td><td colspan=\"2\">Chief Executives Chief Executives</td></tr><tr><td>social media intern</td><td>T7</td><td>Public Relations Specialists</td><td>Public Relations Specialists</td><td>Advertising And Promotions Managers</td><td>Public Relations Specialists</td><td>Public Relations Specialists</td></tr></table>", |
| "text": "Example of job title normalization results from 5 competing models", |
| "html": null, |
| "type_str": "table" |
| }, |
| "TABREF7": { |
| "num": null, |
| "content": "<table><tr><td>Job titles</td><td>Word2Vec</td><td>Mimick</td><td>Mimick+IM</td></tr><tr><td/><td>chief technology officer</td><td>tco</td><td>ceo</td></tr><tr><td/><td>founder ceo</td><td>ceo</td><td>partner</td></tr><tr><td>cto</td><td>ceo</td><td>ctocoo</td><td>founder</td></tr><tr><td/><td>technical director</td><td>vp ctp</td><td>chief technology officer</td></tr><tr><td/><td>founder and cto</td><td>acting cto</td><td>coo</td></tr><tr><td/><td>waiter</td><td>assistant to the mayor</td><td>barman</td></tr><tr><td/><td>bartender</td><td>media relations assistant</td><td>waiter</td></tr><tr><td>waitress</td><td>hostess</td><td>assistant to head officer of public relations</td><td>front desk runner</td></tr><tr><td/><td>server</td><td>catman assistant</td><td>catering assistant</td></tr><tr><td/><td>barman</td><td>welders assistant</td><td>food server</td></tr><tr><td/><td/><td>research member senior software engineer</td><td>c software engineer</td></tr><tr><td>sofftware engineeeeeer (OOV)</td><td>-</td><td>researchersoftware engineer researcher software engineer external rd software engineeer</td><td>sr software engineer software rd engineer staff software developer</td></tr><tr><td/><td/><td>researcher software engineering unit</td><td>engineer developer</td></tr><tr><td>teaching assistant for principles of data science (OOV)</td><td>-</td><td>teaching assistant computer science teaching assistant data analyst teaching assistant computer science dept teaching assistant cs teaching assistant dept of computer science</td><td>teaching assistant big data mining data science instructor instructor data scientist in residence teaching assistant dept of computer science research associate data science lecturer</td></tr></table>", |
| "text": "Nearest job titles of different embedding models", |
| "html": null, |
| "type_str": "table" |
| } |
| } |
| } |
| } |