| { |
| "paper_id": "S10-1029", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T15:27:32.450254Z" |
| }, |
| "title": "273. Task 5. Keyphrase Extraction Based on Core Word Identification and Word Expansion", |
| "authors": [ |
| { |
| "first": "You", |
| "middle": [], |
| "last": "Ouyang", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "The Hong Kong Polytechnic University", |
| "location": {} |
| }, |
| "email": "csyouyang@comp.polyu.edu.hk" |
| }, |
| { |
| "first": "Wenjie", |
| "middle": [], |
| "last": "Li", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "The Hong Kong Polytechnic University", |
| "location": {} |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Renxian", |
| "middle": [], |
| "last": "Zhang", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "The Hong Kong Polytechnic University", |
| "location": {} |
| }, |
| "email": "csrzhang@comp.polyu.edu.hk" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "This paper provides a description of the Hong Kong Polytechnic University (PolyU) System that participated in the task #5 of SemEval-2, i.e., the Automatic Keyphrase Extraction from Scientific Articles task. We followed a novel framework to develop our keyphrase extraction system, motivated by differentiating the roles of the words in a keyphrase. We first identified the core words which are defined as the most essential words in the article, and then expanded the identified core words to the target keyphrases by a word expansion approach.", |
| "pdf_parse": { |
| "paper_id": "S10-1029", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "This paper provides a description of the Hong Kong Polytechnic University (PolyU) System that participated in the task #5 of SemEval-2, i.e., the Automatic Keyphrase Extraction from Scientific Articles task. We followed a novel framework to develop our keyphrase extraction system, motivated by differentiating the roles of the words in a keyphrase. We first identified the core words which are defined as the most essential words in the article, and then expanded the identified core words to the target keyphrases by a word expansion approach.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "The task #5 in SemEval-2 requires extracting the keyphrases for scientific articles. According to the task definition, keyphrases are the words that capture the main topic of the given document. Currently, keyphrase extraction is usually carried out by a two-stage process, including candidate phrase identification and key phrase selection. The first stage is to identify the candidate phrases that are potential keyphrases. Usually, it is implemented as a process that filters out the obviously unimportant phrases. After the candidate identification stage, the target keyphrases can then be selected from the candidates according to their importance scores, which are usually estimated by some features, such as word frequencies, phrase frequencies, POS-tags, etc.. The features can be combined either by heuristics or by learning models to obtain the final selection strategy.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In most existing keyphrase extraction methods, the importance of a phrase is estimated by a composite score of the features. Different features indicate preferences to phrases with specific characteristics. As to the common features, the phrases that consist of important and correlated words are usually preferred. Moreover, it is indeed implied in these features that the words are uniform in the phrase, that is, their degrees of importance are evaluated by the same criteria. However, we think that this may not always be true. For example, in the phrase \"video encoding/decoding\", the word \"video\" appears frequently in the article and thus can be easily identified by simple features, while the word \"encoding/decoding\" is very rare and thus is very hard to discover. Therefore, a uniform view on the words is not able to discover this kind of keyphrases. On the other hand, we observe that there is usually at least one word in a keyphrase which is very important to the article, such as the word \"video\" in the above example. In this paper, we call this kind of words core words. For each phrase, there may be one or more core words in it, which serve as the core component of the phrase. Moreover, the phrase may contain some words that support the core words, such as \"encoding/decoding\" in the above example. These words may be less important to the article, but they are highly correlated with the core word and are able to form an integrated concept with the core words. Motivated by this, we consider a new keyphrase extraction framework, which includes two stages: identifying the core words and expanding the core words to keyphrases. The methodology of the proposed approaches and the performance of the resulting system are introduced below. We also provide further discussions and modifications.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "According to our motivation, our extraction framework consists of three processes, including (1) The pre-processing to obtain the necessary information for the following processes; (2) The core word identification process to discover the core words to be expanded; (3) The word expansion process to generate the final keyphrases. In the pre-processing, we first identify the text fields for each scientific article, including its title, abstract and main text (defined as all the section titles and section contents). The texts are then processed by the language toolkit GATE 1 to carry out sentence segmentation, word stemming and POS (part-of-speech) tagging. Stop-words are not considered to be parts of the target keyphrases.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Methodology", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Core words are the words that represent the dominant concepts in the article. To identify the core words, we consider the features below. Frequencies: In a science article, the words with higher frequencies are usually more important. To differentiate the text fields, in our system we consider three frequency-based features, i.e., Title-Frequency (TF), Abstract-Frequency (AF) and MainText-Frequency (MF), to represent the frequencies of one word in different text fields. For a word w in an article t, the frequencies are denoted by TF(w) = Frequency of w in the title of t; AF(w) = Frequency of w in the abstract of t; MF(w) = Frequency of w in the main text of t. POS tag: The part-of-speech tag of a word is a good indicator of core words. Here we adopt a simple constraint, i.e., only nouns or adjectives can be potential core words.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Identification", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "In our system, we use a progressive algorithm to identify all the core words. The effects of different text fields are considered to improve the accuracy of the identification result. First of all, for each word w in the title, it is identified to be a core word when satisfying { TF(w)> 0 \u2227 AF(w) > 0 } Since the abstract is usually less indicative than the title, we use stricter conditions for the words in the abstract by considering their cooccurrence with the already-identified core words in the title. For a word w in the abstract, a co-occurrence-based feature CO T (w) is defined as |S(w)|, where S(w) is the set of sentences which contain both w and at least one title core word. For a word w in the abstract, it is identified as an abstract core word when satisfying", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Identification", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "{ AF(w)> 0 \u2227 MF(w) > \u03b1 1 \u2227 CO T (w) > \u03b1 2 }", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Identification", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "Similarly, for a word w in the main text, it is identified as a general core word when satisfying { MF(w) > \u03b2 1 \u2227 CO TA (w) >\u03b2 2 } where CO TA (w) = |S'(w)| and S'(w) is the set of sentences which contain both w and at least one identified title core word or abstract core word.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Identification", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "With this progressive algorithm, new core words can be more accurately identified with the previously identified core words. In the above heuristics, the parameters \u03b1 and \u03b2 are pre-defined thresholds, which are manually assigned 2 .", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Identification", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "2 (\u03b1 1 , \u03b1 2 , \u03b2 1 , \u03b2 2 ) = (10, 5, 20, 10) in the system As a matter of fact, this heuristic-based identification approach is simple and preliminary. More sophisticated approaches, such as training machine learning models to classify the words, can be applied for better performance. Moreover, more useful features can also be considered. Nevertheless, we adopted the heuristic-based implementation to test the applicability of the framework as an initial study.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Identification", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "An example of the identified core words is illustrated in Table 1 ", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 58, |
| "end": 65, |
| "text": "Table 1", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Core Word Identification", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "Given the identified core words, the keyphrases can then be generated by expanding the core words. An example of the expansion process is illustrated below as grid \uf0e8 grid service \uf0e8 grid service discovery \uf0e8 scalable grid service discovery For a core word, each appearance of it can be viewed as a potential expanding point. For each expanding point of the word, we need to judge if the context words can form a keyphrase along with it. Formally, for a candidate word w and the current phrase e (here we assume that w is the previous word, the case for the next word is similar), we consider the following features to judge if e should be expanded to w+e. Frequencies: the frequency of w (denoted by Freq(w)) and the frequency of the combination of w and e (denoted by phraseFreq(w, e)) which reflects the degree of w and e forming an integrated phrase. POS pattern: The part-of-speech tag of the word w is also considered here, i.e., we only try to expand w to w+e when w is a noun, an adjective or the specific conjunction \"of\".", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Expansion", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "A heuristic-based approach is adopted here again. We intend to define some loose heuristics, which prefer long keyphrases. The heuristics include (1) If w and e are in the title or abstract, expand e to e+w when w satisfies the POS constraint and Freq(w) > 1; (2) If w and e are in the main text, expand e to e+w when w satisfies the POS constraint and phraseFreq(w, e) >1.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Expansion", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "More examples are provided in Table 2 To generate exactly 15 keyphrases with the framework, we expand the core words in the title, abstract and main text in turn. Moreover, the core words in one fixed field are expanded following the descending order of frequency. When 15 keyphrases are obtained, the process is stopped.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 30, |
| "end": 37, |
| "text": "Table 2", |
| "ref_id": "TABREF3" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Core Word Expansion", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "For each new phrase, a redundancy check is also conducted to make sure that the final 15 keyphrases can best cover the core concepts of the article, i.e., (1) the new keyphrase should contain at least one word that is not included in any of the selected keyphrases;", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Expansion", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "(2) if a selected keyphrase is totally covered by the new keyphrase, the covered keyphrase will be substituted by the new keyphrase.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Expansion", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "The resulting system based on the above method is the one we submitted to SemEval-2.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Core Word Expansion", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "Initially, we intend to use just the proposed framework to develop our system, i.e., using the expanded phrases as the keyphrases. However, we find out later that it must be adjusted to suit the requirement of the SemEval-2 task. In our subsequent study, we consider two adjustments, i.e., phrase filtering and phrase ranking.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Phrase Filtering and Ranking", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "In SemEval-2, the evaluation criteria require exact match between the phrases. A phrase that covers a reference keyphrase but is not equal to it will not be counted as a successful match. For example, the candidate phrase \"scalable grid service discovery\" is not counted as a match when compared to the reference keyphrase \"grid service discovery\". We call this the \"partial matching problem\". In our original framework, we followed the idea of \"expanding the phrase as much as possible\" and adopted loose conditions. Consequently, the partial matching problem is indeed very serious. This unavoidably affects its performance under the criteria in SemEval-2 that requires exact matches. Therefore, we consider a simple filtering strategy here, i.e., filtering any keyphrase which only appears once in the article.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Phrase Filtering and Ranking", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "Another issue is that the given task requires a total of exactly 15 keyphrases. Naturally we need a selection process to handle this. As to our framework, a keyphrase ranking process is necessary for discovering the best 15 keyphrases, not the best 15 core words. For this reason, we also try a simple method that re-ranks the expanded phrases by their frequencies. The top 15 phrases are then selected finally. Table 3 below shows the precision, recall and Fvalue of our submitted system (PolyU), the best and worst systems submitted to SemEval-2 and the baseline system that uses simple TF-IDF statistics to select keyphrases.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 412, |
| "end": 419, |
| "text": "Table 3", |
| "ref_id": "TABREF5" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Phrase Filtering and Ranking", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "On the SemEval-2 test data, the performance of the PolyU system was not good, just a little better than the baseline. A reason is that we just developed the PolyU system with our past experiences but did not adjust it much for better performance (since we were focusing on designing the new framework). After the competition, we examined two refined systems with the methods introduced in section 3.2.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "3.3" |
| }, |
| { |
| "text": "First, the PolyU system is adapted with the phrase filtering method. The performance of the resulting system (denoted by PolyU+) is given in Table 4 . As shown in Table 4 , the performance is much better just with this simple refinement to meet the requirement on extract matches for the evaluation criteria. Then, the phrase ranking method is also incorporated into the system. The performance of the resulting system (denoted by PolyU++) is also provided in Table 4 . The performance is again much improved with the phrase ranking process.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 141, |
| "end": 148, |
| "text": "Table 4", |
| "ref_id": "TABREF6" |
| }, |
| { |
| "start": 163, |
| "end": 170, |
| "text": "Table 4", |
| "ref_id": "TABREF6" |
| }, |
| { |
| "start": 460, |
| "end": 467, |
| "text": "Table 4", |
| "ref_id": "TABREF6" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "3.3" |
| }, |
| { |
| "text": "In our participation in SemEval-2, we submitted the PolyU system with the proposed extraction framework, which is based on expanding the core words to keyphrases. However, the PolyU system did not perform well in SemEval-2. However, we also showed later that the framework can be much improved after some Simple but necessary refinements are made according to the given task. The final PolyU++ system with two simple refinements is much better. These refinements, including phrase filtering and ranking, are similar to traditional techniques. So it seems that our expansion-based framework is more applicable along with some traditional techniques. Though this conflicts our initial objective to develop a totally novel framework, the framework shows its ability of finding those keyphrases which contain different types of words. As to the PolyU++ system, when adapted with just two very simple postprocessing methods, the extracted candidate phrases can already perform quite well in SemEval-2. This may suggest that the framework can be considered as a new way for candidate keyphrase identification for the traditional extraction process.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Discussion", |
| "sec_num": "3.4" |
| }, |
| { |
| "text": "In this paper, we introduced our system in our participation in SemEval-2. We proposed a new framework for the keyphrase extraction task, which is based on expanding core words to keyphrases. Heuristic approaches are developed to implement the framework. We also analyzed the errors of the system in SemEval-2 and conducted some refinements. Finally, we concluded that the framework is indeed appropriate as a candidate phrase identification method. Another issue is that we just consider some simple information such as frequency or POS tag in this initial study. This indeed limits the power of the resulting systems. In future work, we'd like to develop more sophisticated implementations to testify the effectiveness of the framework. More syntactic and semantic features should be considered. Also, learning models can be applied to improve both the core word identification approach and the word expansion approach. ", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion and future work", |
| "sec_num": "4" |
| }, |
| { |
| "text": "Publicly available at http://gate.ac.uk/gate", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [ |
| { |
| "text": "The work described in this paper is supported by Hong Kong RGC Projects (PolyU5217/07E and PolyU5230/08E).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Acknowledgments", |
| "sec_num": null |
| } |
| ], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "Domain Specific Keyphrase Extraction", |
| "authors": [ |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Frank", |
| "suffix": "" |
| }, |
| { |
| "first": "G", |
| "middle": [ |
| "W" |
| ], |
| "last": "Paynter", |
| "suffix": "" |
| }, |
| { |
| "first": "I", |
| "middle": [], |
| "last": "Witten", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [], |
| "last": "Gutwin", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [ |
| "G" |
| ], |
| "last": "Nevill-Manning", |
| "suffix": "" |
| } |
| ], |
| "year": 1999, |
| "venue": "Proceedings of the IJCAI 1999", |
| "volume": "", |
| "issue": "", |
| "pages": "668--673", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Frank, E., Paynter, G.W., Witten, I., Gutwin, C. and Nevill-Manning, C.G.. 1999. Domain Specific Keyphrase Extraction. Proceedings of the IJCAI 1999, pp.668--673.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Thesaurus based automatic keyphrase indexing", |
| "authors": [ |
| { |
| "first": "O", |
| "middle": [], |
| "last": "Medelyan", |
| "suffix": "" |
| }, |
| { |
| "first": "I", |
| "middle": [ |
| "H" |
| ], |
| "last": "Witten", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proceedings of the JCDL 2006", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Medelyan, O. and Witten, I. H.. 2006. Thesaurus based automatic keyphrase indexing. Proceedings of the JCDL 2006, Chapel Hill, NC, USA.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Domain independent automatic keyphrase indexing with small training sets", |
| "authors": [ |
| { |
| "first": "O", |
| "middle": [], |
| "last": "Medelyan", |
| "suffix": "" |
| }, |
| { |
| "first": "I", |
| "middle": [ |
| "H" |
| ], |
| "last": "Witten", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Journal of American Society for Information Science and Technology", |
| "volume": "59", |
| "issue": "7", |
| "pages": "1026--1040", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Medelyan, O. and Witten, I. H.. 2008. Domain independent automatic keyphrase indexing with small training sets. Journal of American Society for Information Science and Technology. Vol. 59 (7), pp. 1026-1040", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Learning to Extract Keyphrases from Text. National Research Council, Institute for Information Technology", |
| "authors": [ |
| { |
| "first": "P", |
| "middle": [], |
| "last": "Turney", |
| "suffix": "" |
| } |
| ], |
| "year": 1999, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Turney, P.. 1999. Learning to Extract Keyphrases from Text. National Research Council, Institute for Information Technology, Technical Report ERB- 1057. (NRC \\#41622), 1999.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Single document keyphrase extraction using neighborhood knowledge", |
| "authors": [ |
| { |
| "first": "X", |
| "middle": [], |
| "last": "Wan", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Xiao", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Proceedings of AAAI 2008", |
| "volume": "", |
| "issue": "", |
| "pages": "885--860", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Wan, X. Xiao, J.. 2008. Single document keyphrase extraction using neighborhood knowledge. In Proceedings of AAAI 2008, pp 885-860.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "TABREF1": { |
| "html": null, |
| "content": "<table/>", |
| "num": null, |
| "type_str": "table", |
| "text": "" |
| }, |
| "TABREF2": { |
| "html": null, |
| "content": "<table><tr><td>Core Word</td><td>Expanded Key Phrase</td></tr><tr><td>grid</td><td>scalable grid service discovery,</td></tr><tr><td/><td>grid computing</td></tr><tr><td>UDDI</td><td>UDDI registry, UDDI key</td></tr><tr><td>web</td><td>web service,</td></tr><tr><td>scalability</td><td>Scalability issue</td></tr><tr><td>DHT</td><td>DHT node</td></tr></table>", |
| "num": null, |
| "type_str": "table", |
| "text": "below." |
| }, |
| "TABREF3": { |
| "html": null, |
| "content": "<table><tr><td>3 Results</td></tr><tr><td>3.1 The Initial PolyU System in SemEval-2</td></tr><tr><td>In the Semeval-2 test set, a total of 100 articles</td></tr><tr><td>are provided. Systems are required to generate 15</td></tr><tr><td>keyphrases for each article. Also, 15 keyphrases</td></tr><tr><td>are generated by human readers as standard</td></tr><tr><td>answers. Precision, recall and F-value are used to</td></tr><tr><td>evaluate the performance.</td></tr></table>", |
| "num": null, |
| "type_str": "table", |
| "text": "Core words and corresponding key phrases" |
| }, |
| "TABREF4": { |
| "html": null, |
| "content": "<table><tr><td/><td colspan=\"3\">5 Keyphrases</td><td colspan=\"3\">10 Keyphrases</td><td colspan=\"3\">15 Keyphrases</td></tr><tr><td/><td>P</td><td>R</td><td>F</td><td>P</td><td>R</td><td>F</td><td>P</td><td>R</td><td>F</td></tr><tr><td colspan=\"2\">Best 34.Worst 8.2%</td><td>3.4%</td><td>4.8%</td><td>5.3%</td><td>4.4%</td><td>4.8%</td><td>4.7%</td><td>5.8%</td><td>5.2%</td></tr><tr><td>PolyU</td><td>13.</td><td/><td/><td/><td/><td/><td/><td/></tr></table>", |
| "num": null, |
| "type_str": "table", |
| "text": "6% 14.4% 20.3% 26.1% 21.7% 23.7% 21.5% 26.7% 23.8% 6% 5.65% 7.98% 12.6% 10.5% 11.4% 12.0% 15.0% 13.3% Baseline 17.8% 7.4% 10.4% 13.9% 11.5% 12.6% 11.6% 14.5% 12.9%" |
| }, |
| "TABREF5": { |
| "html": null, |
| "content": "<table><tr><td>System</td><td>P</td><td>5 Keyphrases R</td><td>F</td><td>P</td><td>10 Keyphrases R</td><td>F</td><td>P</td><td>15 Keyphrases R</td><td>F</td></tr><tr><td>PolyU</td><td colspan=\"2\">13.6% 5.</td><td/><td/><td/><td/><td/><td/><td/></tr></table>", |
| "num": null, |
| "type_str": "table", |
| "text": "Results from SemEval-2 65% 7.98% 12.6% 10.5% 11.4% 12.0% 15.0% 13.3% PolyU+ 21.2% 8.8% 12.4% 16.9% 14.0% 15.3% 13.9% 17.3% 15.4% PolyU++ 31.2% 13.0% 18.3% 22.1% 18.4% 20.1% 20.3% 20.6% 20.5%" |
| }, |
| "TABREF6": { |
| "html": null, |
| "content": "<table/>", |
| "num": null, |
| "type_str": "table", |
| "text": "The performance of the refined systems" |
| } |
| } |
| } |
| } |