| { |
| "paper_id": "S10-1031", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T15:27:52.184331Z" |
| }, |
| "title": "DFKI KeyWE: Ranking keyphrases extracted from scientific articles", |
| "authors": [ |
| { |
| "first": "Kathrin", |
| "middle": [], |
| "last": "Eichler", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "DFKI -Language Technology Berlin", |
| "location": { |
| "country": "Germany" |
| } |
| }, |
| "email": "kathrin.eichler@dfki.de" |
| }, |
| { |
| "first": "G\u00fcnter", |
| "middle": [], |
| "last": "Neumann", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "neumann@dfki.de" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "A central issue for making the content of a scientific document quickly accessible to a potential reader is the extraction of keyphrases, which capture the main topic of the document. Keyphrases can be extracted automatically by generating a list of keyphrase candidates, ranking these candidates, and selecting the top-ranked candidates as keyphrases. We present the KeyWE system, which uses an adapted nominal group chunker for candidate extraction and a supervised ranking algorithm based on support vector machines for ranking the extracted candidates. The system was evaluated on data provided for the SemEval 2010 Shared Task on Keyphrase Extraction.", |
| "pdf_parse": { |
| "paper_id": "S10-1031", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "A central issue for making the content of a scientific document quickly accessible to a potential reader is the extraction of keyphrases, which capture the main topic of the document. Keyphrases can be extracted automatically by generating a list of keyphrase candidates, ranking these candidates, and selecting the top-ranked candidates as keyphrases. We present the KeyWE system, which uses an adapted nominal group chunker for candidate extraction and a supervised ranking algorithm based on support vector machines for ranking the extracted candidates. The system was evaluated on data provided for the SemEval 2010 Shared Task on Keyphrase Extraction.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Keyphrases capture the main topic of the document in which they appear and can be useful for making the content of a document quickly accessible to a potential reader. They can be presented to the reader directly, in order to provide a short overview of the document, but can also be processed further, e.g. for text summarization, document clustering, question-answering or relation extraction. The task of extracting keyphrases automatically can be performed by generating a list of keyphrase candidates, ranking these candidates, and selecting the top-ranked candidates as keyphrases. In the KeyWE system, candidates are generated based on an adapted nominal group chunker described in section 3 and ranked using the SVM rank algorithm (Joachims, 2006) , as described in section 4. The used features are specified in section 5. In section 6, we present the results achieved on the test data provided for the SemEval 2010 Shared Task on Keyphrase Extrac-tion 1 by selecting as keyphrases the top 5, 10, and 15 top-ranked candidates, respectively.", |
| "cite_spans": [ |
| { |
| "start": 739, |
| "end": 755, |
| "text": "(Joachims, 2006)", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "The task of keyphrase extraction came up in the 1990s and was first treated as a supervised learning problem in the GenEx system (Turney, 1999) . Since then, the task has evolved and various new approaches have been proposed. The task is usually performed in two steps: 1. candidate extraction (or generation) and 2. keyphrase selection. The most common approach towards candidate extraction is to generate all n-grams up to a particular length and filter them using stopword lists. Lately, more sophisticated candidate extraction methods, usually based on additional linguistic information (e.g. POS tags), have been proposed and shown to produce better results (e.g. Hulth (2004) ). Liu et al. (2009) restrict their candidate list to verb, noun and adjective words. Kim and Kan (2009) generate regular expression rules to extract simplex nouns and nominal phrases. As the majority of technical terms is in nominal group positions 2 , we assume that the same holds true for keyphrases and apply an adapted nominal group chunker to extract keyphrase candidates. The selection process is usually based on some supervised learning algorithm, e.g. Naive Bayes (Frank et al., 1999) , genetic algorithms (Turney, 1999) , neural networks (Wang et al., 2005) or decision trees (Medelyan et al., 2009) . Unsupervised approaches have also been proposed, e.g. by Mihalcea and Tarau (2004) and Liu et al. (2009) . However, as for the shared task, annotated training data was available, we opted for an approach based on supervised learning.", |
| "cite_spans": [ |
| { |
| "start": 129, |
| "end": 143, |
| "text": "(Turney, 1999)", |
| "ref_id": "BIBREF15" |
| }, |
| { |
| "start": 669, |
| "end": 681, |
| "text": "Hulth (2004)", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 685, |
| "end": 702, |
| "text": "Liu et al. (2009)", |
| "ref_id": "BIBREF8" |
| }, |
| { |
| "start": 768, |
| "end": 786, |
| "text": "Kim and Kan (2009)", |
| "ref_id": "BIBREF7" |
| }, |
| { |
| "start": 1157, |
| "end": 1177, |
| "text": "(Frank et al., 1999)", |
| "ref_id": "BIBREF3" |
| }, |
| { |
| "start": 1199, |
| "end": 1213, |
| "text": "(Turney, 1999)", |
| "ref_id": "BIBREF15" |
| }, |
| { |
| "start": 1232, |
| "end": 1251, |
| "text": "(Wang et al., 2005)", |
| "ref_id": "BIBREF17" |
| }, |
| { |
| "start": 1270, |
| "end": 1293, |
| "text": "(Medelyan et al., 2009)", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 1353, |
| "end": 1378, |
| "text": "Mihalcea and Tarau (2004)", |
| "ref_id": "BIBREF10" |
| }, |
| { |
| "start": 1383, |
| "end": 1400, |
| "text": "Liu et al. (2009)", |
| "ref_id": "BIBREF8" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Rather than extracting candidates from the full text of the article, we restrict our search for candidates to the first 2000 characters starting with the abstract 3 . We also extract title and general terms for use in the feature construction process. From the reduced input text, we extract keyphrase candidates based on the output of a nominal group chunker. This approach is inspired by findings from cognitive linguistics. Talmy (2000) divides the concepts expressed in language into two subsystems: the grammatical subsystem and the lexical subsystem. Concepts associated with the grammatical subsystem provide a structuring function and are expressed using so-called closed-class forms (function words, such as conjunctions, determiners, pronouns, and prepositions, but also suffixes such as plural markers and tense markers). Closed-class elements (CCEs) provide a scaffolding, across which concepts associated with the lexical subsystem (i.e. nouns, verbs, adjectives and adverbs) can be draped (Evans and Pourcel, 2009) . Spurk (2006) developed a nominal group (NG) chunker that makes use of this grammatical subsystem. Using a finite list of CCEs and learned word class models for identifying verbs and adverbs, a small set of linguistically motivated extraction patterns is stated to extract NGs. The rules are based on the following four types of occurrences of NGs in English: 1. at the sentence beginning, 2. within a determiner phrase, 3. following a preposition and 4. following a verb. Not being trained on a particular corpus, the chunker works in a domain-independent way. In addition, it scales well to large amounts of textual data. In order to use the chunker for keyphrase extraction, we manually analysed annotated keyphrases in scientific texts, and, based on the outcome of the evaluation, made some adaptations to the chunker, which take care of the fact that the boundaries of a keyphrase do not always coincide with the boundaries of a NG. In particular, we remove determiners, split NGs on conjunctions, and process text within parentheses separately from the main text. An evaluation on the provided training data showed that the adapted chunker extracts 80% of the reader-annotated keyphrases found in the text.", |
| "cite_spans": [ |
| { |
| "start": 427, |
| "end": 439, |
| "text": "Talmy (2000)", |
| "ref_id": "BIBREF14" |
| }, |
| { |
| "start": 1003, |
| "end": 1028, |
| "text": "(Evans and Pourcel, 2009)", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 1031, |
| "end": 1043, |
| "text": "Spurk (2006)", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Candidate extraction", |
| "sec_num": "3" |
| }, |
| { |
| "text": "The problem of ranking keyphrase candidates can be formalized as follows: For a document d and a collection of n keyword candidates C = c 1 ...c n , the goal is to compute a ranking r that orders the candidates in C according to their degree of keyphraseness in d. The problem can be transformed into an ordinal regression problem. In ordinal regression, the label assigned to an example indicates a rank (rather than a nominal class, as in classification problems). The ranking algorithm we use is SVM rank , developed by Joachims (2006) . This algorithm learns a linear ranking function and has shown to outperform classification algorithms in keyphrase extraction (Jiang et al., 2009) . The target (i.e. rank) value defines the order of the examples (i.e. keyphrase candidates). During training, the target values are used to generate pairwise preference constraints. A preference constraint is included for all pairs of examples in the training file, for which the target value differs. Two examples are considered for a pairwise preference constraint only if they appear within the same document. The model that is learned from the training data is then used to make predictions on the test examples. For each line in the test data, the model predicts a ranking score, from which the ranking of the test examples can be recovered via sorting. For ranking the candidates, they are transformed into vectors based on the features described in section 5. During training, the set of candidates is made up of the annotated reader and author keywords as well as all NG chunks extracted from the text. These candidates are mapped to three different ranking values: All annotated keywords are given a ranking value of 2; all extracted NG chunks that were annotated somewhere else in the training data are given a ranking value of 1; all other NG chunks are assigned a ranking value of 0. Giving a special ranking value to chunks annotated somewhere else in the corpus is a way of exploiting domain-specific information about keyphrases. Even though not annotated in this particular document, a candidate that has been annotated in some other document of the domain, is more likely to be a keyphrase than a candidate that has never been annotated before (cf. Frank et al. (1999) ).", |
| "cite_spans": [ |
| { |
| "start": 523, |
| "end": 538, |
| "text": "Joachims (2006)", |
| "ref_id": "BIBREF6" |
| }, |
| { |
| "start": 667, |
| "end": 687, |
| "text": "(Jiang et al., 2009)", |
| "ref_id": "BIBREF5" |
| }, |
| { |
| "start": 2255, |
| "end": 2274, |
| "text": "Frank et al. (1999)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Candidate ranking", |
| "sec_num": "4" |
| }, |
| { |
| "text": "We used two types of features: term-specific features and document-specific features. Termspecific features cover properties of the candidate term itself (e.g. term length). Document-specific features relate properties of the candidate to the text, in which it appears (e.g. frequency of the term in the document). Our term-specific features concern the following properties:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "\u2022 Term length refers to the length of a candidate in number of tokens. We express this property in terms of five boolean features: has1token, has2tokens, has3tokens, has4tokens, has5orMoreTokens. The advantage over expressing term length as a numeric value is that using binary features, we allow the algorithm to learn that candidates of medium lengths are more likely to be keyphrases than very short or very long candidates.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "\u2022 The MSN score of a candidate refers to the number of results retrieved when querying the candidate string using the MSN search engine 4 . The usefulness of MSN scores for technical term extraction has been shown by Eichler et al. (2009) . We normalize the MSN scores based on the number of digits of the score and store the normalized value in the feature normalizedMsn. We also use a binary feature isZeroMsn expressing whether querying the candidate returns no results at all.", |
| "cite_spans": [ |
| { |
| "start": 217, |
| "end": 238, |
| "text": "Eichler et al. (2009)", |
| "ref_id": "BIBREF1" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "\u2022 Special characters can indicate whether a candidate is (un)likely to be a keyphrase. We use two features concerning special characters: containsDigit and containsHyphen.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "\u2022 Wikipedia has shown to be a valuable source for extracting keywords (Medelyan et al., 2009) . We use a feature isWikipediaTerm, expressing whether the term candidate corresponds to an entry in Wikipedia.", |
| "cite_spans": [ |
| { |
| "start": 70, |
| "end": 93, |
| "text": "(Medelyan et al., 2009)", |
| "ref_id": "BIBREF9" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "In addition, we use the following documentspecific features:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "\u2022 TFIDF, a commonly used feature introduced by Salton and McGill (1983) , relates the frequency of a candidate in a document to its frequency in other documents of the corpus.", |
| "cite_spans": [ |
| { |
| "start": 47, |
| "end": 71, |
| "text": "Salton and McGill (1983)", |
| "ref_id": "BIBREF12" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "\u2022 Term position relates the position of the first appearance of the candidate in the document to the length of the document. In addition, our feature appearsInTitle covers the fact that candidates appearing in the document title are very likely to be keyphrases.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "\u2022 Average token count measures the average occurrence of the individual (lemmatized) tokens of the term in the document. Our assumption is that candidates with a high average token count are more likely to be keyphrases.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "\u2022 Point-wise mutual information (PMI, Church and Hanks (1989) ) is used to capture the semantic relatedness of the candidate to the topic of the document. A similar feature is introduced by Turney (2003) , who, in a first pass, ranks the candidates based on a base feature set, and then reranks them by calculating the statistical association between the given candidate and the top K candidates from the first pass. To avoid the two-pass method, rather than calculating inter-candidate association, we calculate the association of each candidate to the terms specified in the General Terms section of the paper. Like Turney, we calculate PMI based on web search results (in our case, using MSN). The feature maxPmi captures the maximum PMI score achieved with the lemmatized candidate and any of the general terms.", |
| "cite_spans": [ |
| { |
| "start": 38, |
| "end": 61, |
| "text": "Church and Hanks (1989)", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 190, |
| "end": 203, |
| "text": "Turney (2003)", |
| "ref_id": "BIBREF16" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "6 Results and critical evaluation Table 1 presents the results achieved by applying the KeyWE system on the data set of scientific articles provided by the organizers of the shared task along with two sets of manually assigned keyphrases for each article (reader-assigned and author-assigned keyphrases). Our model was trained on the trial and training data (144 articles) and evaluated on the test data set (100 articles). The evaluation is based on stemmed keyphrases, where stemming is performed using the Porter stemmer (Porter, 1980 Table 1 : Results on the two keyword sets: reader (reader-assigned keyphrases) and combined (reader-and author-assigned keyphrases) ranking. In our learned model, the four most important features (i.e. those with the highest absolute weight) were containsDigit (-1.17), isZe-roMsn (-1.12), normalizedMsn (-1.00), and avgTo-kenCount (+0.97). This result confirms that web frequencies can be used as a valuable source for ranking keyphrases. It also validates our assumption that a high average token count indicates a good keyphrase candidate. The maxPMI feature turned out to be of minor importance (-0.16 ). This may be due to the fact that we used the terms from the General Terms section of the paper to calculate the association scores, which may be too general for this purpose.", |
| "cite_spans": [ |
| { |
| "start": 524, |
| "end": 537, |
| "text": "(Porter, 1980", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 630, |
| "end": 669, |
| "text": "(reader-and author-assigned keyphrases)", |
| "ref_id": null |
| }, |
| { |
| "start": 1137, |
| "end": 1143, |
| "text": "(-0.16", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 34, |
| "end": 41, |
| "text": "Table 1", |
| "ref_id": null |
| }, |
| { |
| "start": 538, |
| "end": 545, |
| "text": "Table 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Features", |
| "sec_num": "5" |
| }, |
| { |
| "text": "http://semeval2.fbk.eu/semeval2.php?location=tasks#T6 2 Experiments on 100 manually annotated scientific abstracts from the biology domain showed that 94% of technical terms are in nominal group position(Eichler et al., 2009).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "This usually covers the introductory part of the article and is assumed to contain most of the keyphrases. Partial sentences at the end of this input are cut off.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "http://de.msn.com/", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [ |
| { |
| "text": "We thank Angela Schneider for her adaptations to the chunker and helpful evaluations. The research project DiLiA is co-funded by the European Regional Development Fund (ERDF) in the context of Investitionsbank Berlins ProFIT program under grant number 10140159. We gratefully acknowledge this support.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Acknowledgments", |
| "sec_num": null |
| } |
| ], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "Word association norms, mutual information and lexicography", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [ |
| "W" |
| ], |
| "last": "Church", |
| "suffix": "" |
| }, |
| { |
| "first": "P", |
| "middle": [], |
| "last": "Hanks", |
| "suffix": "" |
| } |
| ], |
| "year": 1989, |
| "venue": "Proceedings of the 27th Annual Conference of the Association of Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. W. Church and P. Hanks. 1989. Word associa- tion norms, mutual information and lexicography. In Proceedings of the 27th Annual Conference of the Association of Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Unsupervised and domain-independent extraction of technical terms from scientifc articles in digital libraries", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Eichler", |
| "suffix": "" |
| }, |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Hemsen", |
| "suffix": "" |
| }, |
| { |
| "first": "G", |
| "middle": [], |
| "last": "Neumann", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the LWA Information Retrieval Workshop", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. Eichler, H. Hemsen, and G. Neumann. 2009. Un- supervised and domain-independent extraction of technical terms from scientifc articles in digital li- braries. In Proceedings of the LWA Information Re- trieval Workshop, TU Darmstadt, Germany.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "New Directions in Cognitive Linguistics", |
| "authors": [ |
| { |
| "first": "V", |
| "middle": [], |
| "last": "Evans", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Pourcel", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "V. Evans and S. Pourcel. 2009. New Directions in Cog- nitive Linguistics. John Benjamins Publishing Com- pany.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Domain-specific keyphrase extraction", |
| "authors": [ |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Frank", |
| "suffix": "" |
| }, |
| { |
| "first": "G", |
| "middle": [ |
| "W" |
| ], |
| "last": "Paynter", |
| "suffix": "" |
| }, |
| { |
| "first": "I", |
| "middle": [ |
| "H" |
| ], |
| "last": "Witten", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [], |
| "last": "Gutwin", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [ |
| "G" |
| ], |
| "last": "Nevill-Manning", |
| "suffix": "" |
| } |
| ], |
| "year": 1999, |
| "venue": "Proceedings of the 16th International Joint Conference on Artificial Intelligence", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "E. Frank, G. W. Paynter, I. H. Witten, C. Gutwin, and C. G. Nevill-Manning. 1999. Domain-specific keyphrase extraction. In Proceedings of the 16th International Joint Conference on Artificial Intelli- gence.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Combining Machine Learning and Natural Language Processing for Automatic Keyword Extraction", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Hulth", |
| "suffix": "" |
| } |
| ], |
| "year": 2004, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "A. Hulth. 2004. Combining Machine Learning and Natural Language Processing for Automatic Key- word Extraction. Ph.D. thesis, Department of Com- puter and Systems Sciences, Stockholm University.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "A ranking approach to keyphrase extraction", |
| "authors": [ |
| { |
| "first": "X", |
| "middle": [], |
| "last": "Jiang", |
| "suffix": "" |
| }, |
| { |
| "first": "Y", |
| "middle": [], |
| "last": "Hu", |
| "suffix": "" |
| }, |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Li", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the 32nd Annual International ACM SIGIR Conference on Research and Development in Information Retrieval", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "X. Jiang, Y. Hu, and H. Li. 2009. A ranking ap- proach to keyphrase extraction. In Proceedings of the 32nd Annual International ACM SIGIR Confer- ence on Research and Development in Information Retrieval.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Training linear svms in linear time", |
| "authors": [ |
| { |
| "first": "T", |
| "middle": [], |
| "last": "Joachims", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proceedings of the ACM Conference on Knowledge Discovery and Data Mining", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "T. Joachims. 2006. Training linear svms in linear time. In Proceedings of the ACM Conference on Knowl- edge Discovery and Data Mining.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Re-examining automatic keyphrase extraction approaches in scientific articles", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [ |
| "N" |
| ], |
| "last": "Kim", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [ |
| "Y" |
| ], |
| "last": "Kan", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the ACL/IJCNLP Multiword Expressions Workshop", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. N. Kim and M. Y. Kan. 2009. Re-examining auto- matic keyphrase extraction approaches in scientific articles. In Proceedings of the ACL/IJCNLP Multi- word Expressions Workshop.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Unsupervised approaches for automatic keyword extraction using meeting transcripts", |
| "authors": [ |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Liu", |
| "suffix": "" |
| }, |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Pennell", |
| "suffix": "" |
| }, |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Liu", |
| "suffix": "" |
| }, |
| { |
| "first": "Y", |
| "middle": [], |
| "last": "Liu", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the Conference of the NAACL", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "F. Liu, D. Pennell, F. Liu, and Y. Liu. 2009. Unsu- pervised approaches for automatic keyword extrac- tion using meeting transcripts. In Proceedings of the Conference of the NAACL, HLT.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Human-competitive tagging using automatic keyphrase extraction", |
| "authors": [ |
| { |
| "first": "O", |
| "middle": [], |
| "last": "Medelyan", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Frank", |
| "suffix": "" |
| }, |
| { |
| "first": "I", |
| "middle": [ |
| "H" |
| ], |
| "last": "Witten", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the International Conference of Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "O. Medelyan, E. Frank, and I.H. Witten. 2009. Human-competitive tagging using automatic keyphrase extraction. In Proceedings of the Interna- tional Conference of Empirical Methods in Natural Language Processing (EMNLP).", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "TextRank: Bringing order into texts", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Mihalcea", |
| "suffix": "" |
| }, |
| { |
| "first": "P", |
| "middle": [], |
| "last": "Tarau", |
| "suffix": "" |
| } |
| ], |
| "year": 2004, |
| "venue": "Proceedings of the EMNLP", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. Mihalcea and P. Tarau. 2004. TextRank: Bringing order into texts. In Proceedings of the EMNLP.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "An algorithm for suffix stripping", |
| "authors": [ |
| { |
| "first": "M", |
| "middle": [ |
| "F" |
| ], |
| "last": "Porter", |
| "suffix": "" |
| } |
| ], |
| "year": 1980, |
| "venue": "", |
| "volume": "14", |
| "issue": "", |
| "pages": "130--137", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "M. F. Porter. 1980. An algorithm for suffix stripping. Program, 14(3):130-137.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Introduction to modern information retrieval", |
| "authors": [ |
| { |
| "first": "G", |
| "middle": [], |
| "last": "Salton", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [ |
| "J" |
| ], |
| "last": "Mcgill", |
| "suffix": "" |
| } |
| ], |
| "year": 1983, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "G. Salton and M. J. McGill. 1983. Introduction to modern information retrieval. McGraw-Hill.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Ein minimal\u00fcberwachtes Verfahren zur Erkennung generischer Eigennamen in freien Texten", |
| "authors": [ |
| { |
| "first": "C", |
| "middle": [], |
| "last": "Spurk", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "C. Spurk. 2006. Ein minimal\u00fcberwachtes Verfahren zur Erkennung generischer Eigennamen in freien Texten. Diplomarbeit, Saarland University, Ger- many.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Towards a cognitive semantics", |
| "authors": [ |
| { |
| "first": "L", |
| "middle": [], |
| "last": "Talmy", |
| "suffix": "" |
| } |
| ], |
| "year": 2000, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "L. Talmy. 2000. Towards a cognitive semantics. MIT Press, Cambridge, MA.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "Learning to extract keyphrases from text", |
| "authors": [ |
| { |
| "first": "P", |
| "middle": [ |
| "D" |
| ], |
| "last": "Turney", |
| "suffix": "" |
| } |
| ], |
| "year": 1999, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "P. D. Turney. 1999. Learning to extract keyphrases from text. Technical report, National Research Council, Institute for Information Technology.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "Coherent keyphrase extraction via web mining", |
| "authors": [ |
| { |
| "first": "P", |
| "middle": [ |
| "D" |
| ], |
| "last": "Turney", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "Proceedings of the Eighteenth International Joint Conference on Artificial Intelligence", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "P. D. Turney. 2003. Coherent keyphrase extraction via web mining. In Proceedings of the Eighteenth Inter- national Joint Conference on Artificial Intelligence.", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Automatic keyphrases extraction from document using backpropagation", |
| "authors": [ |
| { |
| "first": "J.-B", |
| "middle": [], |
| "last": "Wang", |
| "suffix": "" |
| }, |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Peng", |
| "suffix": "" |
| }, |
| { |
| "first": "J.-S", |
| "middle": [], |
| "last": "Hu", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proceedings of 2005 international conference on Machine Learning and Cybernetics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J.-B. Wang, H. Peng, and J.-S. Hu. 2005. Automatic keyphrases extraction from document using back- propagation. In Proceedings of 2005 international conference on Machine Learning and Cybernetics.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "TABREF0": { |
| "type_str": "table", |
| "text": "80% 16.45% 17.97% combined 23.30% 15.89% 18.89% 15 reader 17.40% 21.68% 19.31% combined 20.27% 20.74% 20.50%", |
| "html": null, |
| "num": null, |
| "content": "<table><tr><td colspan=\"2\">Top Set</td><td>P</td><td>R</td><td>F</td></tr><tr><td>5</td><td colspan=\"4\">reader combined 29.20% 24.40% 10.13% 14.32% 9.96% 14.85%</td></tr><tr><td>10</td><td>reader</td><td>19.</td><td/></tr><tr><td/><td/><td/><td/><td>).</td></tr><tr><td/><td/><td/><td/><td>Since SVM rank learns a linear function, one can</td></tr><tr><td/><td/><td/><td/><td>analyze the individual features by studying the</td></tr><tr><td/><td/><td/><td/><td>learned weights. Roughly speaking, a high pos-</td></tr><tr><td/><td/><td/><td/><td>itive (negative) weight indicates that candidates</td></tr><tr><td/><td/><td/><td/><td>with this feature should be higher (lower) in the</td></tr></table>" |
| } |
| } |
| } |
| } |