File size: 59,407 Bytes
6fa4bc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 |
{
"paper_id": "I05-1044",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T07:25:17.658994Z"
},
"title": "Answering Definition Questions Using Web Knowledge Bases",
"authors": [
{
"first": "Zhushuo",
"middle": [],
"last": "Zhang",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Fudan University",
"location": {
"postCode": "200433",
"settlement": "Shanghai",
"country": "China"
}
},
"email": "zs_zhang@fudan.edu.cn"
},
{
"first": "Yaqian",
"middle": [],
"last": "Zhou",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Fudan University",
"location": {
"postCode": "200433",
"settlement": "Shanghai",
"country": "China"
}
},
"email": "zhouyaqian@fudan.edu.cn"
},
{
"first": "Xuanjing",
"middle": [],
"last": "Huang",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Fudan University",
"location": {
"postCode": "200433",
"settlement": "Shanghai",
"country": "China"
}
},
"email": "xjhuang@fudan.edu.cn"
},
{
"first": "Lide",
"middle": [],
"last": "Wu",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Fudan University",
"location": {
"postCode": "200433",
"settlement": "Shanghai",
"country": "China"
}
},
"email": "ldwu@fudan.edu.cn"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "This paper presents a definition question answering approach, which is capable of mining textual definitions from large collections of documents. In order to automatically identify definition sentences from a large collection of documents, we utilize the existing definitions in the Web knowledge bases instead of hand-crafted rules or annotated corpus. Effective methods are adopted to make full use of Web knowledge bases, and they promise high quality response to definition questions. We applied our system in the TREC 2004 definition question-answering task and achieved an encouraging performance with the Fmeasure score of 0.404, which was ranked second among all the submitted runs.",
"pdf_parse": {
"paper_id": "I05-1044",
"_pdf_hash": "",
"abstract": [
{
"text": "This paper presents a definition question answering approach, which is capable of mining textual definitions from large collections of documents. In order to automatically identify definition sentences from a large collection of documents, we utilize the existing definitions in the Web knowledge bases instead of hand-crafted rules or annotated corpus. Effective methods are adopted to make full use of Web knowledge bases, and they promise high quality response to definition questions. We applied our system in the TREC 2004 definition question-answering task and achieved an encouraging performance with the Fmeasure score of 0.404, which was ranked second among all the submitted runs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "When people want to learn an unknown concept from a large collection of documents, the most commonly used tools are the search engines. They submit a query to a search engine system, and the search engine returns a number of pages related to the query terms. Usually, the pages returned are ranked mainly based on keywords matching rather than their relevance to the query terms. The users have to read a lot of returned pages to organize the information they wanted by themselves. This procedure is timeconsuming, and the information acquired is not concentrative. The research of Question Answering (QA) intends to resolve this problem by answering user's questions with exact answers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Questions like \"Who is Colin Powell?\" or \"What is mold?\" are definition questions [3] . Their relatively frequent occurrences in logs of Web search engines [2] indicate that they are an important type of question. The Text REtrieval Conference (TREC) provides an entire evaluation for definition question answering from TREC2003. A typical definition QA system extracts definition nuggets that contain the most descriptive information about the question target (the concept for which information is being sought is called the target term, or simply, the target) from multiple documents.",
"cite_spans": [
{
"start": 82,
"end": 85,
"text": "[3]",
"ref_id": "BIBREF2"
},
{
"start": 156,
"end": 159,
"text": "[2]",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Until recently, definition questions remained a largely unexplored area of question answering. Standard factoid question answering technology, designed to extract single answers, cannot be directly applied to this task. The solution to this interesting research challenge will involve the techniques in related fields such as information extraction, multi-document summarization, and answer fusion.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In order to extract definitional nuggets/sentences, most systems use various pattern matching approaches. Kouylekov et al. [10] relied on a set of hand-crafted rules to find definitional sentences. Sasha et al. [12] proposed to combine data-driven statistical method and machine learned rules to generate definitions. Cui et al. [7] used soft patterns, which were generated by unsupervised learning. Such methods require human labor to construct patterns or to annotate corpus more or less.",
"cite_spans": [
{
"start": 123,
"end": 127,
"text": "[10]",
"ref_id": "BIBREF9"
},
{
"start": 211,
"end": 215,
"text": "[12]",
"ref_id": "BIBREF11"
},
{
"start": 329,
"end": 332,
"text": "[7]",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Prager et al. [8] try to solve this problem through existing technology. They decompose a definition question into a series of factoid questions. The answers to the factoid questions are merged to form the answer to the original question. However, the performance of their system on the TREC definition QA task is unsatisfactory. They need a more proper framework to determine how to generate these follow-up questions [8] .",
"cite_spans": [
{
"start": 14,
"end": 17,
"text": "[8]",
"ref_id": "BIBREF7"
},
{
"start": 419,
"end": 422,
"text": "[8]",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Some systems [1] [7] [9] statistically rank the candidate answers based on the external knowledge. They all adopt a centroid-based ranking method. For each question, they form one centroid (i.e., vector of words and frequencies) of the information in the external knowledge, and then calculate the similarity between the candidate answer and this centroid. The ones that have large similarity are extracted as the answers to this question.",
"cite_spans": [
{
"start": 13,
"end": 16,
"text": "[1]",
"ref_id": "BIBREF0"
},
{
"start": 21,
"end": 24,
"text": "[9]",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Among the abundant information on the Web, Web knowledge bases (KBs) are one kind of most useful resource to acquire information. Dictionary definitions often supply knowledge that can be exploited directly. The information from them can model the interests of a typical user more reliably than other information. So we go further in identifying and selecting definition sentences from document collection using Web knowledge bases.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Our work differs from the above in that we make use of the Web knowledge bases in a novel and effective way. Instead of using centroid-based ranking, we try to find out more effective methods in ranking the candidate sentences. We consider the relationship and the difference between the definitions from different knowledge sources. In our first algorithm, we calculate the similarity scores between the candidate sentence and the definitions from different knowledge bases respectively, and merge these scores to generate the weight of this candidate sentence. In another algorithm, we first summarize the definitions from different KBs in order to eliminate the redundant information, and then use this summary to rank the candidate sentences. We have applied our approaches to the TREC 2004 definition question-answering task. The results reveal that these procedures can make better use of the knowledge in the Web KBs, and the extracted sentences contain the most descriptive information about the question target.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The remainder of the paper is organized as follows. In Section 2, we describe the system architecture. Then in Section 3 we give the details of our definition extraction methods. The evaluation of our system and the concluding remarks are given in Section 4 and Section 5 respectively.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We adopt a general architecture for definition QA. The system consists of five modules: question processing, document processing, Web knowledge acquisition, definition extraction, and an optional module corpus information acquisition. The process of answering a definition question is briefly described as follows.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "2"
},
{
"text": "Firstly, a definition question is input, and the question processing module identifies the question target from this question. The so called target or target term is a term for which information is being sought (e.g., the target of the question \"What is Hale Bopp comet?\" is \"Hale Bopp comet\".) The target term is the input for document processing module and knowledge acquisition module.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "2"
},
{
"text": "Secondly, the document processing module generates the candidate sentence set according to this target term. This module has three steps, document retrieval, relevant sentence extraction and redundancy removal. In the first step, the documents that relevant to the target are retrieved from the corpus. In the second step, the sentences that relevant to the target are extracted from these documents. We first cut the documents into sentences, and delete the irrelevant sentences by a few heuristic rules. In the third step, the redundant sentences are deleted by calculating the percentage of shared content words between sentences. After these three steps, we get the candidate sentence set. Thirdly, the Web knowledge acquisition module acquires the definitions of the target term from the Web knowledge base. If we can find definitions from these sources (the Web KBs we used will be described in Section 3.1), we use them to rank the candidate sentences set.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "2"
},
{
"text": "At last, the definition extraction module extracts the definition from the candidate sentence set based on the knowledge which is got from the Web knowledge base.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "2"
},
{
"text": "In very few situations, no definitions can be found from the Web KBs, and the module named \"corpus information acquisition\" is adopted to form the centroid of the candidate sentence set. We rank candidate sentences based on this centroid. The sentences that have high similarity with this centroid are extracted as the answers to the question. The assumption is that words co-occurring frequently with the target in the corpus are more important ones for answering the question.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "2"
},
{
"text": "The system architecture is illustrated in Fig.1 .",
"cite_spans": [],
"ref_spans": [
{
"start": 42,
"end": 47,
"text": "Fig.1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "2"
},
{
"text": "In this paper, we focus on how to make use of the Web KBs in extracting definition sentences, so we will describe the detail of the definition extraction module below.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "2"
},
{
"text": "There are lots of specific websites on the Web, such as online biography dictionaries or online cyclopaedias. We can get biography of a person, the profile of an organization or the definition of a generic term from them. We call this kind of website Web knowledge base (KB). The definitions from them often supply knowledge that can be exploited directly. So we answer definition questions by utilizing the existing definitions in the Web knowledge bases. The results of our system reveal that the Web knowledge bases are quite helpful to answering definition questions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Web Knowledge Base",
"sec_num": "3.1"
},
{
"text": "Usually, different knowledge bases may pay attention to different kind of concept, and they may have different kind of entries. For example, the biography dictionary (www.s9.com) is a dictionary that covers widely on biography of people, and other KBs may pay attention to other kinds of concept. We choose several authoritative KBs that cover different kinds of concept to achieve our goal.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Web Knowledge Base",
"sec_num": "3.1"
},
{
"text": "The Web knowledge bases we used are the Encyclopedia(www.encyclopedia.com), the Wikipedia(www.wikipedia.com), the Merriam-Webster dictionary (www.mw. com), the WordNetglossaries (www.cogsci.princeton.edu/cgi-bin/webwn) and a biographies dictionary (www.s9.com). These Web KBs can cover most of the target terms, and the definitions in them are exact and concise.This can be confirmed from the experiment on TREC's data set. Fig.2 gives our experiment results on the TREC 2003 and TREC 2004's definition question sets, which have 50 and 65 target terms respectively. The \"ency\", \"wiki\", \"mw\", \"wn\" and \"s9\" stand for the five online KBs we have used. Each column represents the percent of the target terms that can be found in the corresponding online knowledge base. The column marked \"all\" represents the percent of the target terms that can be found in at least one of these five online knowledge bases.",
"cite_spans": [],
"ref_spans": [
{
"start": 424,
"end": 429,
"text": "Fig.2",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Web Knowledge Base",
"sec_num": "3.1"
},
{
"text": "It is easy to see that a high coverage can be got by using these Web knowledge bases. In the Section 3.2 and Section 3.3 we will show how to use these KBs, and in Section 4 we can see that it boosts the performance of the system significantly.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Web Knowledge Base",
"sec_num": "3.1"
},
{
"text": "As mentioned above, we may get most of the submitted target terms' definitions by utilizing multiple Web KBs. One target may find its definitions in more than one knowledge base. Are all of them useful? The experimental data tells that, the different definitions belonging to one target differ from each other in some degree. They are short or long, concise or detailed.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS",
"sec_num": "3.2"
},
{
"text": "Considering the above factor, we try to utilize all of the definitions from different Web KBs to accomplish our task. For one target term, the definitions from all Web knowledge bases compose its \"general definition set\", which is abbreviated to GDS. Each element of this set is a definition from one Web knowledge base, so the number of the elements in this set is the same as the number of the Web KBs we used. When we cannot find its entry in a certain Web KB, its corresponding element will be an empty string.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS",
"sec_num": "3.2"
},
{
"text": "For each target, its candidate sentence set is expressed as S A = {A 1 , A 2 ,\u2026, A m }, where A k (k=1..m) is a candidate sentence in the set and m is the total number of the candidate sentences.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS",
"sec_num": "3.2"
},
{
"text": "GDS is expressed as S GD = {D 1 , D 2 ,..., D n }, where D k (k=1..n) is the definition of the target from the kth knowledge base, and n is the number of the knowledge bases. D k may be an empty string when the target has no definition in the knowledge base k. In this algorithm, we rank the candidate sentences set S A = {A 1 , A 2 ,\u2026, A m } using S GD .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS",
"sec_num": "3.2"
},
{
"text": "Let S ij be the similarity of A i and D j . The similarity is the tf.idf score, where the candidate sentence A i and the definition D j are all treated as a bag of words. The tf.idf function we used is described in [5] .",
"cite_spans": [
{
"start": 215,
"end": 218,
"text": "[5]",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS",
"sec_num": "3.2"
},
{
"text": "For each candidate sentence A i in the set S A , we calculate its score based on the GDS as follows: (1)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS",
"sec_num": "3.2"
},
{
"text": "The weights j w are fixed based on experiment, considering the authoritativeness of the knowledge base from which D j comes. The sentences of set S A are ranked based on this score, and the top ones are chosen as the definition of the target term.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS",
"sec_num": "3.2"
},
{
"text": "As we have seen, for a target term, different definitions in its \"general definition set\" may overlap in some degree. We intent to modify this set by merging its elements into one concise definition. We extract the essential information from the \"general definition set\" to form the \"essential definition set\", which is abbreviated to EDS.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on EDS",
"sec_num": "3.3"
},
{
"text": "EDS is expressed as S ED = {d 1 , d 2 ,\u2026, d l }, where each element d k (k=1..l) is an essential definition sentence about the target, and l is the number of the essential definition sentences. We hope that each element can tell one important aspect of the target term, and the whole \"essential definition set\" may contain as much information as GDS but no redundant information.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on EDS",
"sec_num": "3.3"
},
{
"text": "We try to use an automatic text summary technique [11] to get EDS. This technique is based on sentence's weight and similarity between sentences. Firstly, calculate the weights of all sentences and similarities between any two sentences, and then extract sentence based on these weights. After one sentence has been extracted, calculate the new weights of the remained sentences based on their similarities. Iterate the above procedure until the extracted sentences reach the required length. More detail of this technique can be found in [11] . In this section we will try to use the \"essential definition set\" to extract definitions from the candidate sentence set.",
"cite_spans": [
{
"start": 50,
"end": 54,
"text": "[11]",
"ref_id": "BIBREF10"
},
{
"start": 539,
"end": 543,
"text": "[11]",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on EDS",
"sec_num": "3.3"
},
{
"text": "1. Initially set the result set A={}, and i=1.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on EDS",
"sec_num": "3.3"
},
{
"text": "First get the similarity between d i and A j (j=1..m), which is expressed as S ij .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For the element d i in the set S ED :",
"sec_num": "2."
},
{
"text": "Then let } ,..., , max{",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For the element d i in the set S ED :",
"sec_num": "2."
},
{
"text": "2 1 im i i ik S S S S =",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For the element d i in the set S ED :",
"sec_num": "2."
},
{
"text": ". If S ik >minsim , then add A k to the set A and delete A k from the set S A . otherwise, i = i +1, go to step2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For the element d i in the set S ED :",
"sec_num": "2."
},
{
"text": "The algorithm was showed in Fig.3 . The candidate sentence set is also expressed as S A = {A 1 , A 2 ,\u2026, A m }, where A k (k=1..m) is a candidate sentence in the set and m is the total number of the candidate sentences. The similarity S ij is calculated as the same as in Section 3.",
"cite_spans": [],
"ref_spans": [
{
"start": 28,
"end": 33,
"text": "Fig.3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Fig. 3. Definition extraction using EDS",
"sec_num": null
},
{
"text": "2. ( ) k A L",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Fig. 3. Definition extraction using EDS",
"sec_num": null
},
{
"text": "represents the length of string A k in character and m ' is the number of elements in set A. The parameters max_length and minsim were empirically set based on TREC's definition question set. The last result is set A, where A={A 1 , A 2 ,\u2026, A m' }.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Fig. 3. Definition extraction using EDS",
"sec_num": null
},
{
"text": "In order to get comparable evaluation, we apply our approach to TREC2004 definition QA task. We can see that our approach is an effective one compared with peer systems in this competitive evaluation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4"
},
{
"text": "In this section we present the evaluation criterion and system performance on TREC task, and discuss the effectiveness of our approach.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4"
},
{
"text": "The TREC evaluation criterion [3] is summarized here for the purpose of discussing the evaluation results.",
"cite_spans": [
{
"start": 30,
"end": 33,
"text": "[3]",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Criterion",
"sec_num": "4.1"
},
{
"text": "For an individual definition question, there is a list of essential nuggets and acceptable nuggets provided by TREC. These given nuggets are used to score the definition generated by the system.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Criterion",
"sec_num": "4.1"
},
{
"text": "An individual definition question will be scored using nugget recall (R) and an approximation to nugget precision (P) based on length. In particular, R = # essential nuggets returned in response/# essential nuggets P is defined as: if length < allowance, P = 1 else P=1-[(length-allowance)/length] where allowance = 100*(# essential+acceptable nuggets returned) length = total # non-white-space characters in answer strings The F measure is:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Criterion",
"sec_num": "4.1"
},
{
"text": "R P \u03b2 PR \u03b2 + ) 1 + ( = F 2 2 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Criterion",
"sec_num": "4.1"
},
{
"text": "(2)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Criterion",
"sec_num": "4.1"
},
{
"text": "where \u03b2 value is fixed three in TREC 2004, and we also use three to get comparable result.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Criterion",
"sec_num": "4.1"
},
{
"text": "The score of a system is the arithmetic mean of F-measure scores of all the definition questions output by the system.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation Criterion",
"sec_num": "4.1"
},
{
"text": "To compare the effectiveness of the Web knowledge bases, we experimented on the TREC 2004 definition question set. The result can be seen in Table1. Table 1 shows the F-measure scores of our two algorithms and the baseline method. It also shows the median of the scores of all participating systems in TREC 2004. The baseline method is: for an input question, form the candidate sentence set by using the approach described in Section 2. Then put the sentence of this set into the answer set one by one until all the sentences in the candidate sentence set are considered or the answer length is greater than a pre-fixed length (we set the length 3000 characters in our experiment).",
"cite_spans": [],
"ref_spans": [
{
"start": 149,
"end": 156,
"text": "Table 1",
"ref_id": "TABREF0"
}
],
"eq_spans": [],
"section": "Effectiveness of Web Knowledge Bases",
"sec_num": "4.2"
},
{
"text": "We can see that our two algorithms all outperform the median and the baseline method which does not use Web knowledge bases. In conclusion, the Web knowledge bases are effective resources to definition question answering. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Effectiveness of Web Knowledge Bases",
"sec_num": "4.2"
},
{
"text": "As we have mentioned, we have tried two algorithms in the definition extraction module, which are based on GDS and EDS respectively. The performance of these algorithms is shown in Table 2 . We have submitted three runs in TREC2004, which were generated by using different algorithm in the definition extraction module. Run A and run B were generated by using GDS with slightly different weights in formula (1), and run C was generated by using EDS. All the 64 questions are divided into three classes based on the entity types of the targets, which are person, organization and other thing. Table 2 shows the three runs' F-measure scores on these three types and their overall score on the whole 64 questions.",
"cite_spans": [],
"ref_spans": [
{
"start": 181,
"end": 188,
"text": "Table 2",
"ref_id": "TABREF1"
},
{
"start": 592,
"end": 599,
"text": "Table 2",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Definition Extraction Based on GDS vs. Based on EDS",
"sec_num": "4.3"
},
{
"text": "Two algorithms' F-measure scores are all among the best of total 63 runs. Run C's score on the \"PERSON\", 0.404 is the highest of our three runs on this type. Run A does better on the types named \"ORG\" and \"THING\". We can say that these two algorithms contribute to different kinds of target terms. Dividing definition questions into different subclass and processing them with different methods could be a proper direction.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS vs. Based on EDS",
"sec_num": "4.3"
},
{
"text": "Considering the score on all the 64 questions, the former algorithm is slightly higher than the latter one. However, the result of the latter one is also encouraging. Since the \"essential definition set\" contain the important information and less redundancy, it has the potential to get the answers, which are not only concise but also have wide coverage about the target. We believe it is an appropriate way to extract the high quality definitions. A preliminary analysis shows that the major problem is how to improve the quality and the coverage of the essential definition set. We believe that the performance could be boosted through improving this technique.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS vs. Based on EDS",
"sec_num": "4.3"
},
{
"text": "In conclusion, we can say that our methods can make better use of the external knowledge in answering definition question.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Extraction Based on GDS vs. Based on EDS",
"sec_num": "4.3"
},
{
"text": "This paper proposes a definition QA approach, which makes use of Web knowledge bases and several complementary technology components. The experiments reveal that the Web knowledge bases are effective resources to definition question answering, and the presented method gives an appropriate framework for answering this kind of question. Our approach has achieved an encouraging performance with the F-measure score of 0.404, which is ranked second among all the submitted runs in TREC2004.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "5"
},
{
"text": "Since definitional patterns can not only filter out those statistically highly-ranked sentences that are not definitional, but also bring those definition sentences that are written in certain styles for definitions but are not statistically significant into the answer set. [6] In the future work, we will employ some pattern matching methods to reinforce our existing method.",
"cite_spans": [
{
"start": 275,
"end": 278,
"text": "[6]",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "5"
}
],
"back_matter": [
{
"text": "This research was partly supported by NSF (Beijing, China) under contract of 60435020, and Key Project of Science and Technology Committee of Shanghai under contract of 035115028.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Multiple-Engine Question Answering in TextMap",
"authors": [
{
"first": "Abdessamad",
"middle": [],
"last": "Echihabi",
"suffix": ""
},
{
"first": "Ulf",
"middle": [],
"last": "Hermjakob",
"suffix": ""
},
{
"first": "Eduard",
"middle": [],
"last": "Hovy",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the Twelfth Text REtreival Conference. NIST, Gathersburg",
"volume": "",
"issue": "",
"pages": "772--781",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Abdessamad Echihabi, Ulf Hermjakob, Eduard Hovy: Multiple-Engine Question Answer- ing in TextMap. In Proceedings of the Twelfth Text REtreival Conference. NIST, Gath- ersburg, MD (2003) 772-781",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Voorhees: Overview of the TREC 2001 question answering track",
"authors": [
{
"first": "M",
"middle": [],
"last": "Ellen",
"suffix": ""
}
],
"year": 2001,
"venue": "Proceedings of the Tenth Text REtreival Conference. NIST, Gathersburg, MD",
"volume": "",
"issue": "",
"pages": "42--51",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ellen M. Voorhees: Overview of the TREC 2001 question answering track. In Proceedings of the Tenth Text REtreival Conference. NIST, Gathersburg, MD (2001) 42-51",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Voorhees: Overview of the TREC 2003 Question Answering Track",
"authors": [
{
"first": "M",
"middle": [],
"last": "Ellen",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the Twelfth Text REtreival Conference. NIST, Gathersburg, MD",
"volume": "",
"issue": "",
"pages": "54--68",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ellen M. Voorhees: Overview of the TREC 2003 Question Answering Track. In Proceed- ings of the Twelfth Text REtreival Conference. NIST, Gathersburg, MD (2003) 54-68",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Evaluating answers to definition questions",
"authors": [
{
"first": "Ellen",
"middle": [
"M"
],
"last": "Voorhees",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the 2003 Human Language Technology Conference of the North American Chapter of the Association for Computational Linguistics",
"volume": "2",
"issue": "",
"pages": "109--111",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ellen M. Voorhees: Evaluating answers to definition questions. In Proceedings of the 2003 Human Language Technology Conference of the North American Chapter of the Associa- tion for Computational Linguistics (2003) Volume 2: 109-111",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Term weighting approaches in automatic text retrieval. Information Processing and Management",
"authors": [
{
"first": "G",
"middle": [],
"last": "Salton",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Buckley",
"suffix": ""
}
],
"year": 1988,
"venue": "",
"volume": "24",
"issue": "",
"pages": "513--523",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G.Salton, C. Buckley: Term weighting approaches in automatic text retrieval. Information Processing and Management (1988) 24(5): 513-523",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "A comparative Study o Sentence Retrieval for Definitional Question Answering",
"authors": [
{
"first": "Hang",
"middle": [],
"last": "Cui",
"suffix": ""
},
{
"first": "Min-Yen",
"middle": [],
"last": "Kan",
"suffix": ""
},
{
"first": "Tat-Seng",
"middle": [],
"last": "Chua",
"suffix": ""
},
{
"first": "Jing",
"middle": [],
"last": "Xiao",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the 27th Annual International ACM SIGIR Conference",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hang Cui, Min-Yen Kan, Tat-Seng Chua, Jing Xiao: A comparative Study o Sentence Re- trieval for Definitional Question Answering. In Proceedings of the 27th Annual Interna- tional ACM SIGIR Conference (2004)",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Min-Yen kan: National University of Singapore the TREC-13 Question Answering Main Task",
"authors": [
{
"first": "Hang",
"middle": [],
"last": "Cui",
"suffix": ""
},
{
"first": "Keya",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Renxu",
"middle": [],
"last": "Sun",
"suffix": ""
},
{
"first": "Tat-Seng",
"middle": [],
"last": "Chua",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the Thirteenth Text REtreival Conference. NIST, Gathersburg, MD",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hang Cui, Keya Li, Renxu Sun, Tat-Seng Chua, Min-Yen kan: National University of Singapore the TREC-13 Question Answering Main Task. In Proceedings of the Thirteenth Text REtreival Conference. NIST, Gathersburg, MD (2004)",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "IBM's PIQUANT in TREC2003",
"authors": [
{
"first": "J",
"middle": [
"M"
],
"last": "Prager",
"suffix": ""
},
{
"first": "Jennifer",
"middle": [],
"last": "Chu-Carroll",
"suffix": ""
},
{
"first": "Krzysztof",
"middle": [],
"last": "Czuba",
"suffix": ""
},
{
"first": "Christopher",
"middle": [],
"last": "Welty",
"suffix": ""
},
{
"first": "Abraham",
"middle": [],
"last": "Ittycheiach",
"suffix": ""
},
{
"first": "Ruchi",
"middle": [],
"last": "Mahindru",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the Twelfth Text REtreival Conference. NIST, Gathersburg, MD",
"volume": "",
"issue": "",
"pages": "283--292",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. M. Prager, Jennifer Chu-Carroll, Krzysztof Czuba, Christopher Welty, Abraham It- tycheiach, Ruchi Mahindru: IBM's PIQUANT in TREC2003. In Proceedings of the Twelfth Text REtreival Conference. NIST, Gathersburg, MD (2003) 283-292",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "TREC2003 QA at BBN: Answering definitional Questions",
"authors": [
{
"first": "Jinxi",
"middle": [],
"last": "Xu",
"suffix": ""
},
{
"first": "Ana",
"middle": [],
"last": "Licuanan",
"suffix": ""
},
{
"first": "Ralph",
"middle": [],
"last": "Weischedel",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the Twelfth Text REtreival Conference. NIST, Gathersburg",
"volume": "",
"issue": "",
"pages": "98--106",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jinxi Xu, Ana Licuanan, Ralph Weischedel: TREC2003 QA at BBN: Answering defini- tional Questions. In Proceedings of the Twelfth Text REtreival Conference. NIST, Gath- ersburg, MD (2003) 98~106",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "ITC-irst at TREC-2003: the DIOGENE QA system",
"authors": [
{
"first": "Milen",
"middle": [],
"last": "Kouylekov",
"suffix": ""
},
{
"first": "Bernardo",
"middle": [],
"last": "Magnini",
"suffix": ""
},
{
"first": "Matteo",
"middle": [],
"last": "Negri",
"suffix": ""
},
{
"first": "Hristo",
"middle": [],
"last": "Tanev",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the Twelfth Text REtreival Conference. NIST, Gathersburg, MD",
"volume": "",
"issue": "",
"pages": "349--357",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Milen Kouylekov, Bernardo Magnini, Matteo Negri, Hristo Tanev: ITC-irst at TREC- 2003: the DIOGENE QA system. In Proceedings of the Twelfth Text REtreival Confer- ence. NIST, Gathersburg, MD (2003) 349-357",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "A New Method for Calculating Similarity between Sentences and Application on Automatic Text Summarization",
"authors": [
{
"first": "Qi",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Xuanjing",
"middle": [],
"last": "Huang",
"suffix": ""
},
{
"first": "Lide",
"middle": [],
"last": "Wu",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the first National Conference on Information Retrieval and Content Security",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Qi Zhang, Xuanjing Huang, Lide Wu: A New Method for Calculating Similarity between Sentences and Application on Automatic Text Summarization. In Proceedings of the first National Conference on Information Retrieval and Content Security (2004)",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Andrew Hazen Schlaikjer: A hybrid approach for QA track definitional questions",
"authors": [
{
"first": "Sasha",
"middle": [],
"last": "Blair-Goldensohn",
"suffix": ""
},
{
"first": "Kathleen",
"middle": [
"R"
],
"last": "Mckeown",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the Twelfth Text REtreival Conference. NIST, Gathersburg, MD",
"volume": "",
"issue": "",
"pages": "185--192",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sasha Blair-Goldensohn, Kathleen R. McKeown, Andrew Hazen Schlaikjer: A hybrid ap- proach for QA track definitional questions. In Proceedings of the Twelfth Text REtreival Conference. NIST, Gathersburg, MD (2003) 185-192",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "System architecture",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF1": {
"text": "The Web KBs' coverage of TREC data",
"uris": null,
"num": null,
"type_str": "figure"
},
"FIGREF3": {
"text": "to l, the algorithm ends;",
"uris": null,
"num": null,
"type_str": "figure"
},
"TABREF0": {
"html": null,
"text": "The F-measure score of the baseline method, the median system in TREC2004, and our two methods on TREC 2004 data set",
"type_str": "table",
"num": null,
"content": "<table><tr><td/><td>Baseline</td><td>Median</td><td>Ranking</td><td>Ranking</td></tr><tr><td/><td>method</td><td/><td>using GDS</td><td>using EDS</td></tr><tr><td>F-measure</td><td>0.231</td><td>0.184</td><td>0.404</td><td>0.367</td></tr><tr><td>score (\u03b2=3)</td><td/><td/><td/><td/></tr></table>"
},
"TABREF1": {
"html": null,
"text": "Performance of our three runs on the three types of quesitions and on the whole 64 questions of TREC 2004",
"type_str": "table",
"num": null,
"content": "<table><tr><td/><td>Num Q</td><td>Run A</td><td>Run B</td><td>Run C</td></tr><tr><td>all</td><td>64</td><td>0.404</td><td>0.389</td><td>0.367</td></tr><tr><td>PERSON</td><td>23</td><td>0.366</td><td>0.372</td><td>0.404</td></tr><tr><td>ORG</td><td>25</td><td>0.413</td><td>0.389</td><td>0.326</td></tr><tr><td>THING</td><td>16</td><td>0.446</td><td>0.415</td><td>0.379</td></tr></table>"
}
}
}
} |