File size: 88,905 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 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 | {
"paper_id": "P06-1015",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T09:26:12.606764Z"
},
"title": "Espresso: Leveraging Generic Patterns for Automatically Harvesting Semantic Relations",
"authors": [
{
"first": "Patrick",
"middle": [],
"last": "Pantel",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Southern California",
"location": {
"addrLine": "4676 Admiralty Way Marina del Rey",
"postCode": "90292",
"region": "CA"
}
},
"email": "pantel@isi.edu"
},
{
"first": "Marco",
"middle": [],
"last": "Pennacchiotti",
"suffix": "",
"affiliation": {
"laboratory": "ART Group -DISP University of Rome \"Tor Vergata\"",
"institution": "",
"location": {
"addrLine": "Viale del Politecnico 1 Rome",
"country": "Italy"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "In this paper, we present Espresso, a weakly-supervised, general-purpose, and accurate algorithm for harvesting semantic relations. The main contributions are: i) a method for exploiting generic patterns by filtering incorrect instances using the Web; and ii) a principled measure of pattern and instance reliability enabling the filtering algorithm. We present an empirical comparison of Espresso with various state of the art systems, on different size and genre corpora, on extracting various general and specific relations. Experimental results show that our exploitation of generic patterns substantially increases system recall with small effect on overall precision.",
"pdf_parse": {
"paper_id": "P06-1015",
"_pdf_hash": "",
"abstract": [
{
"text": "In this paper, we present Espresso, a weakly-supervised, general-purpose, and accurate algorithm for harvesting semantic relations. The main contributions are: i) a method for exploiting generic patterns by filtering incorrect instances using the Web; and ii) a principled measure of pattern and instance reliability enabling the filtering algorithm. We present an empirical comparison of Espresso with various state of the art systems, on different size and genre corpora, on extracting various general and specific relations. Experimental results show that our exploitation of generic patterns substantially increases system recall with small effect on overall precision.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Recent attention to knowledge-rich problems such as question answering (Pasca and Harabagiu 2001) and textual entailment (Geffet and Dagan 2005) has encouraged natural language processing researchers to develop algorithms for automatically harvesting shallow semantic resources. With seemingly endless amounts of textual data at our disposal, we have a tremendous opportunity to automatically grow semantic term banks and ontological resources.",
"cite_spans": [
{
"start": 71,
"end": 97,
"text": "(Pasca and Harabagiu 2001)",
"ref_id": "BIBREF18"
},
{
"start": 121,
"end": 144,
"text": "(Geffet and Dagan 2005)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "To date, researchers have harvested, with varying success, several resources, including concept lists (Lin and Pantel 2002) , topic signatures (Lin and Hovy 2000) , facts (Etzioni et al. 2005) , and word similarity lists (Hindle 1990 ). Many recent efforts have also focused on extracting semantic relations between entities, such as entailments (Szpektor et al. 2004) , is-a (Ravichandran and Hovy 2002), part-of (Girju et al. 2006) , and other relations.",
"cite_spans": [
{
"start": 102,
"end": 123,
"text": "(Lin and Pantel 2002)",
"ref_id": "BIBREF14"
},
{
"start": 143,
"end": 162,
"text": "(Lin and Hovy 2000)",
"ref_id": "BIBREF13"
},
{
"start": 171,
"end": 192,
"text": "(Etzioni et al. 2005)",
"ref_id": "BIBREF6"
},
{
"start": 221,
"end": 233,
"text": "(Hindle 1990",
"ref_id": "BIBREF11"
},
{
"start": 346,
"end": 368,
"text": "(Szpektor et al. 2004)",
"ref_id": "BIBREF22"
},
{
"start": 414,
"end": 433,
"text": "(Girju et al. 2006)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The following desiderata outline the properties of an ideal relation harvesting algorithm:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\u2022 Performance: it must generate both high precision and high recall relation instances; \u2022 Minimal supervision: it must require little or no human annotation; \u2022 Breadth: it must be applicable to varying corpus sizes and domains; and \u2022 Generality: it must be applicable to a wide variety of relations (i.e., not just is-a or part-of). To our knowledge, no previous harvesting algorithm addresses all these properties concurrently.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper, we present Espresso, a generalpurpose, broad, and accurate corpus harvesting algorithm requiring minimal supervision. The main algorithmic contribution is a novel method for exploiting generic patterns, which are broad coverage noisy patterns -i.e., patterns with high recall and low precision. Insofar, difficulties in using these patterns have been a major impediment for minimally supervised algorithms resulting in either very low precision or recall. We propose a method to automatically detect generic patterns and to separate their correct and incorrect instances. The key intuition behind the algorithm is that given a set of reliable (high precision) patterns on a corpus, correct instances of a generic pattern will fire more with reliable patterns on a very large corpus, like the Web, than incorrect ones. Below is a summary of the main contributions of this paper:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\u2022 Algorithm for exploiting generic patterns:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Unlike previous algorithms that require significant manual work to make use of generic patterns, we propose an unsupervised Webfiltering method for using generic patterns; and \u2022 Principled reliability measure: We propose a new measure of pattern and instance reliability which enables the use of generic patterns.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Espresso addresses the desiderata as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\u2022 Performance: Espresso generates balanced precision and recall relation instances by exploiting generic patterns; \u2022 Minimal supervision: Espresso requires as input only a small number of seed instances; \u2022 Breadth: Espresso works on both small and large corpora -it uses Web and syntactic expansions to compensate for lacks of redundancy in small corpora; \u2022 Generality: Espresso is amenable to a wide variety of binary relations, from classical is-a and part-of to specific ones such as reaction and succession. Previous work like (Girju et al. 2006 ) that has made use of generic patterns through filtering has shown both high precision and high recall, at the expensive cost of much manual semantic annotation. Minimally supervised algorithms, like (Hearst 1992; , typically ignore generic patterns since system precision dramatically decreases from the introduced noise and bootstrapping quickly spins out of control.",
"cite_spans": [
{
"start": 531,
"end": 549,
"text": "(Girju et al. 2006",
"ref_id": "BIBREF9"
},
{
"start": 751,
"end": 764,
"text": "(Hearst 1992;",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "To date, most research on relation harvesting has focused on is-a and part-of. Approaches fall into two categories: pattern-and clustering-based.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Relevant Work",
"sec_num": "2"
},
{
"text": "Most common are pattern-based approaches. Hearst (1992) pioneered using patterns to extract hyponym (is-a) relations. Manually building three lexico-syntactic patterns, Hearst sketched a bootstrapping algorithm to learn more patterns from instances, which has served as the model for most subsequent pattern-based algorithms. Berland and Charniak (1999) proposed a system for part-of relation extraction, based on the (Hearst 1992) approach. Seed instances are used to infer linguistic patterns that are used to extract new instances. While this study introduces statistical measures to evaluate instance quality, it remains vulnerable to data sparseness and has the limitation of considering only one-word terms.",
"cite_spans": [
{
"start": 42,
"end": 55,
"text": "Hearst (1992)",
"ref_id": "BIBREF10"
},
{
"start": 326,
"end": 353,
"text": "Berland and Charniak (1999)",
"ref_id": "BIBREF0"
},
{
"start": 418,
"end": 431,
"text": "(Hearst 1992)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Relevant Work",
"sec_num": "2"
},
{
"text": "Improving upon (Berland and Charniak 1999) , Girju et al. (2006) employ machine learning algorithms and WordNet (Fellbaum 1998) to disambiguate part-of generic patterns like \"X's Y\" and \"X of Y\". This study is the first extensive attempt to make use of generic patterns. In order to discard incorrect instances, they learn WordNetbased selectional restrictions, like \"X(scene#4)'s Y(movie#1)\". While making huge grounds on improving precision/recall, heavy supervision is required through manual semantic annotations. Ravichandran and Hovy (2002) focus on scaling relation extraction to the Web. A simple and effective algorithm is proposed to infer surface patterns from a small set of instance seeds by extracting substrings relating seeds in corpus sentences. The approach gives good results on specific relations such as birthdates, however it has low precision on generic ones like is-a and partof. proposed a similar, highly scalable approach, based on an edit-distance technique, to learn lexico-POS patterns, showing both good performance and efficiency. Espresso uses a similar approach to infer patterns, but we make use of generic patterns and apply refining techniques to deal with wide variety of relations.",
"cite_spans": [
{
"start": 15,
"end": 42,
"text": "(Berland and Charniak 1999)",
"ref_id": "BIBREF0"
},
{
"start": 45,
"end": 64,
"text": "Girju et al. (2006)",
"ref_id": "BIBREF9"
},
{
"start": 112,
"end": 127,
"text": "(Fellbaum 1998)",
"ref_id": "BIBREF7"
},
{
"start": 518,
"end": 546,
"text": "Ravichandran and Hovy (2002)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Relevant Work",
"sec_num": "2"
},
{
"text": "Other pattern-based algorithms include (Riloff and Shepherd 1997) , who used a semi-automatic method for discovering similar words using a few seed examples, KnowItAll (Etzioni et al. 2005 ) that performs large-scale extraction of facts from the Web, Mann (2002) who used part of speech patterns to extract a subset of is-a relations involving proper nouns, and (Downey et al. 2005) who formalized the problem of relation extraction in a coherent and effective combinatorial model that is shown to outperform previous probabilistic frameworks.",
"cite_spans": [
{
"start": 39,
"end": 65,
"text": "(Riloff and Shepherd 1997)",
"ref_id": "BIBREF20"
},
{
"start": 168,
"end": 188,
"text": "(Etzioni et al. 2005",
"ref_id": "BIBREF6"
},
{
"start": 251,
"end": 262,
"text": "Mann (2002)",
"ref_id": "BIBREF15"
},
{
"start": 362,
"end": 382,
"text": "(Downey et al. 2005)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Relevant Work",
"sec_num": "2"
},
{
"text": "Clustering approaches have so far been applied only to is-a extraction. These methods use clustering algorithms to group words according to their meanings in text, label the clusters using its members' lexical or syntactic dependencies, and then extract an is-a relation between each cluster member and the cluster label. Caraballo (1999) proposed the first attempt, which used conjunction and apposition features to build noun clusters. Recently, extended this approach by making use of all syntactic dependency features for each noun. The advantage of clustering approaches is that they permit algorithms to identify is-a relations that do not explicitly appear in text, however they generally fail to produce coherent clusters from fewer than 100 million words; hence they are unreliable for small corpora.",
"cite_spans": [
{
"start": 322,
"end": 338,
"text": "Caraballo (1999)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Relevant Work",
"sec_num": "2"
},
{
"text": "Espresso is based on the framework adopted in (Hearst 1992) . It is a minimally supervised bootstrapping algorithm that takes as input a few seed instances of a particular relation and iteratively learns surface patterns to extract more instances. The key to Espresso lies in its use of generic patters, i.e., those broad coverage noisy patterns that extract both many correct and incorrect relation instances. For example, for part-of relations, the pattern \"X of Y\" extracts many correct relation instances like \"wheel of the car\" but also many incorrect ones like \"house of representatives\".",
"cite_spans": [
{
"start": 46,
"end": 59,
"text": "(Hearst 1992)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Espresso Algorithm",
"sec_num": "3"
},
{
"text": "The key assumption behind Espresso is that in very large corpora, like the Web, correct instances generated by a generic pattern will be instantiated by some reliable patterns, where reliable patterns are patterns that have high precision but often very low recall (e.g., \"X consists of Y\" for part-of relations). In this section, we describe the overall architecture of Espresso, propose a principled measure of reliability, and give an algorithm for exploiting generic patterns.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Espresso Algorithm",
"sec_num": "3"
},
{
"text": "Espresso iterates between the following three phases: pattern induction, pattern ranking/selection, and instance extraction.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "3.1"
},
{
"text": "The algorithm begins with seed instances of a particular binary relation (e.g., is-a) and then iterates through the phases until it extracts \u03c4 1 patterns or the average pattern score decreases by more than \u03c4 2 from the previous iteration. In our experiments, we set \u03c4 1 = 5 and \u03c4 2 = 50%.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "3.1"
},
{
"text": "For our tokenization, in order to harvest multiword terms as relation instances, we adopt a slightly modified version of the term definition given in (Justeson 1995) , as it is one of the most commonly used in the NLP literature:",
"cite_spans": [
{
"start": 150,
"end": 165,
"text": "(Justeson 1995)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "3.1"
},
{
"text": "((Adj|Noun)+|((Adj|Noun)*(NounPrep)?)(Adj|Noun)*)Noun",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System Architecture",
"sec_num": "3.1"
},
{
"text": "In the pattern induction phase, Espresso infers a set of surface patterns P that connects as many of the seed instances as possible in a given corpus. Any pattern learning algorithm would do. We chose the state of the art algorithm described in (Ravichandran and Hovy 2002) with the following slight modification. For each input instance {x, y}, we first retrieve all sentences containing the two terms x and y. The sentences are then generalized into a set of new sentences S x,y by replacing all terminological expressions by a terminological label, TR. Term generalization is useful for small corpora to ease data sparseness. Generalized patterns are naturally less precise, but this is ameliorated by our filtering step described in Section 3.3.",
"cite_spans": [
{
"start": 245,
"end": 273,
"text": "(Ravichandran and Hovy 2002)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern Induction",
"sec_num": null
},
{
"text": "As in the original algorithm, all substrings linking terms x and y are then extracted from S x,y , and overall frequencies are computed to form P.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern Induction",
"sec_num": null
},
{
"text": "In (Ravichandran and Hovy 2002) , a frequency threshold on the patterns in P is set to select the final patterns. However, low frequency patterns may in fact be very good. In this paper, instead of frequency, we propose a novel measure of pattern reliability, r \u03c0 , which is described in detail in Section 3.2.",
"cite_spans": [
{
"start": 3,
"end": 31,
"text": "(Ravichandran and Hovy 2002)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern Ranking/Selection",
"sec_num": null
},
{
"text": "Espresso ranks all patterns in P according to reliability r \u03c0 and discards all but the top-k, where k is set to the number of patterns from the previous iteration plus one. In general, we expect that the set of patterns is formed by those of the previous iteration plus a new one. Yet, new statistical evidence can lead the algorithm to discard a pattern that was previously discovered.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern Ranking/Selection",
"sec_num": null
},
{
"text": "In this phase, Espresso retrieves from the corpus the set of instances I that match any of the patterns in P. In Section 3.2, we propose a principled measure of instance reliability, r \u03b9 , for ranking instances. Next, Espresso filters incorrect instances using the algorithm proposed in Section 3.3 and then selects the highest scoring m instances, according to r \u03b9 , as input for the subsequent iteration. We experimentally set m=200.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Instance Extraction",
"sec_num": null
},
{
"text": "In small corpora, the number of extracted instances can be too low to guarantee sufficient statistical evidence for the pattern discovery phase of the next iteration. In such cases, the system enters an expansion phase, where instances are expanded as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Instance Extraction",
"sec_num": null
},
{
"text": "Web expansion: New instances of the patterns in P are retrieved from the Web, using the Google search engine. Specifically, for each instance {x, y}\u2208 I, the system creates a set of queries, using each pattern in P instantiated with y. For example, given the instance \"Italy, country\" and the pattern \"Y such as X\", the resulting Google query will be \"country such as *\". New instances are then created from the retrieved Web results (e.g. \"Canada, country\") and added to I. The noise generated from this expansion is attenuated by the filtering algorithm described in Section 3.3.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Instance Extraction",
"sec_num": null
},
{
"text": "Syntactic expansion: New instances are created from each instance {x, y}\u2208 I by extracting sub-terminological expressions from x corresponding to the syntactic head of terms. For ex-ample, the relation \"new record of a criminal conviction part-of FBI report\" expands to: \"new record part-of FBI report\", and \"record part-of FBI report\".",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Instance Extraction",
"sec_num": null
},
{
"text": "Intuitively, a reliable pattern is one that is both highly precise and one that extracts many instances. The recall of a pattern p can be approximated by the fraction of input instances that are extracted by p. Since it is non-trivial to estimate automatically the precision of a pattern, we are wary of keeping patterns that generate many instances (i.e., patterns that generate high recall but potentially disastrous precision). Hence, we desire patterns that are highly associated with the input instances. Pointwise mutual information (Cover and Thomas 1991) is a commonly used metric for measuring this strength of association between two events x and y:",
"cite_spans": [
{
"start": 539,
"end": 562,
"text": "(Cover and Thomas 1991)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern and Instance Reliability",
"sec_num": "3.2"
},
{
"text": "( ) ( ) ( ) ( ) y P x P y x P y x pmi , log , =",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern and Instance Reliability",
"sec_num": "3.2"
},
{
"text": "We define the reliability of a pattern p, r \u03c0 (p), as its average strength of association across each input instance i in I, weighted by the reliability of each instance i:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern and Instance Reliability",
"sec_num": "3.2"
},
{
"text": "( ) ( ) I i r p i pmi p r I i pmi \u2211 \u2208 \u239f \u239f \u23a0 \u239e \u239c \u239c \u239d \u239b * = \u03b9 \u03c0 max ) , (",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern and Instance Reliability",
"sec_num": "3.2"
},
{
"text": "where r \u03b9 (i) is the reliability of instance i (defined below) and max pmi is the maximum pointwise mutual information between all patterns and all instances. r \u03c0 (p) ranges from [0,1]. The reliability of the manually supplied seed instances are r \u03b9 (i) = 1. The pointwise mutual information between instance i = {x, y} and pattern p is estimated using the following formula:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern and Instance Reliability",
"sec_num": "3.2"
},
{
"text": "( ) ,* *, ,*, , , log , p y x y p x p i pmi =",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern and Instance Reliability",
"sec_num": "3.2"
},
{
"text": "where |x, p, y| is the frequency of pattern p instantiated with terms x and y and where the asterisk (*) represents a wildcard. A well-known problem is that pointwise mutual information is biased towards infrequent events. We thus multiply pmi(i, p) with the discounting factor suggested in . Estimating the reliability of an instance is similar to estimating the reliability of a pattern. Intuitively, a reliable instance is one that is highly associated with as many reliable patterns as possible (i.e., we have more confidence in an instance when multiple reliable patterns instantiate it.) Hence, analogous to our pattern reliability measure, we define the reliability of an instance i, r \u03b9 (i), as:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern and Instance Reliability",
"sec_num": "3.2"
},
{
"text": "( ) ( ) P p r p i pmi i r P p pmi \u2211 \u2032 \u2208 * = \u03c0 \u03b9 max ) , (",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern and Instance Reliability",
"sec_num": "3.2"
},
{
"text": "where r \u03c0 (p) is the reliability of pattern p (defined earlier) and max pmi is as before. Note that r \u03b9 (i) and r \u03c0 (p) are recursively defined, where r \u03b9 (i) = 1 for the manually supplied seed instances.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern and Instance Reliability",
"sec_num": "3.2"
},
{
"text": "Generic patterns are high recall / low precision patterns (e.g, the pattern \"X of Y\" can ambiguously refer to a part-of, is-a and possession relations). Using them blindly increases system recall while dramatically reducing precision. Minimally supervised algorithms have typically ignored them for this reason. Only heavily supervised approaches, like (Girju et al. 2006) have successfully exploited them.",
"cite_spans": [
{
"start": 353,
"end": 372,
"text": "(Girju et al. 2006)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "Espresso's recall can be significantly increased by automatically separating correct instances extracted by generic patterns from incorrect ones. The challenge is to harness the expressive power of the generic patterns while remaining minimally supervised.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "The intuition behind our method is that in a very large corpus, like the Web, correct instances of a generic pattern will be instantiated by many of Espresso's reliable patterns accepted in P. Recall that, by definition, Espresso's reliable patterns extract instances with high precision (yet often low recall). In a very large corpus, like the Web, we assume that a correct instance will occur in at least one of Espresso's reliable pattern even though the patterns' recall is low. Intuitively, our confidence in a correct instance increases when, i) the instance is associated with many reliable patterns; and ii) its association with the reliable patterns is high. At a given Espresso iteration, where P R represents the set of previously selected reliable patterns, this intuition is captured by the following measure of confidence in an instance i = {x, y}:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "( ) ( ) ( ) \u2211 \u2208 \u00d7 = R P p p T p r i S i S \u03c0",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "where T is the sum of the reliability scores r \u03c0 (p) for each pattern p \u2208 P R , and",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "( ) ( ) ,* *, ,*, , , log , p y x y p x p i pmi i S p \u00d7 = =",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "where pointwise mutual information between instance i and pattern p is estimated with Google as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "( ) p y x y p x i S p \u00d7 \u00d7 \u2248 , ,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "An instance i is rejected if S(i) is smaller than some threshold \u03c4.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "Although this filtering may also be applied to reliable patterns, we found this to be detrimental in our experiments since most instances generated by reliable patterns are correct. In Espresso, we classify a pattern as generic when it generates more than 10 times the instances of previously accepted reliable patterns.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Exploiting Generic Patterns",
"sec_num": "3.3"
},
{
"text": "In this section, we present an empirical comparison of Espresso with three state of the art systems on the task of extracting various semantic relations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Results",
"sec_num": "4"
},
{
"text": "We perform our experiments using the following two datasets:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4.1"
},
{
"text": "\u2022 TREC: This dataset consists of a sample of articles from the Aquaint (TREC-9) newswire text collection. The sample consists of 5,951,432 words extracted from the following data files: AP890101 -AP890131, AP890201 -AP890228, and AP890310 -AP890319. \u2022 CHEM: This small dataset of 313,590 words consists of a college level textbook of introductory chemistry (Brown et al. 2003) . Each corpus is pre-processed using the Alembic Workbench POS-tagger (Day et al. 1997 ).",
"cite_spans": [
{
"start": 357,
"end": 376,
"text": "(Brown et al. 2003)",
"ref_id": "BIBREF1"
},
{
"start": 447,
"end": 463,
"text": "(Day et al. 1997",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4.1"
},
{
"text": "Below we describe the systems used in our empirical evaluation of Espresso.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4.1"
},
{
"text": "\u2022 RH02: The algorithm by Ravichandran and Hovy (2002) described in Section 2. \u2022 GI03: The algorithm by Girju et al. (2006) described in Section 2.",
"cite_spans": [
{
"start": 25,
"end": 53,
"text": "Ravichandran and Hovy (2002)",
"ref_id": "BIBREF19"
},
{
"start": 103,
"end": 122,
"text": "Girju et al. (2006)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4.1"
},
{
"text": "\u2022 PR04: The algorithm by described in Section 2. \u2022 ESP-: The Espresso algorithm using the pattern and instance reliability measures, but without using generic patterns. \u2022 ESP+: The full Espresso algorithm described in this paper exploiting generic patterns. For ESP+, we experimentally set \u03c4 from Section 3.3 to \u03c4 = 0.4 for TREC and \u03c4 = 0.3 for CHEM by manually inspecting a small set of instances.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4.1"
},
{
"text": "Espresso is designed to extract various semantic relations exemplified by a given small set of seed instances. We consider the standard is-a and part-of relations as well as the following more specific relations:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4.1"
},
{
"text": "\u2022 succession: This relation indicates that a person succeeds another in a position or title. For example, George Bush succeeded Bill Clinton and Pope Benedict XVI succeeded Pope John Paul II. We evaluate this relation on the TREC-9 corpus. \u2022 reaction: This relation occurs between chemical elements/molecules that can be combined in a chemical reaction. For example, hydrogen gas reacts-with oxygen gas and zinc reacts-with hydrochloric acid. We evaluate this relation on the CHEM corpus. \u2022 production: This relation occurs when a process or element/object produces a result 1 . For example, ammonia produces nitric oxide. We evaluate this relation on the CHEM corpus. For each semantic relation, we manually extracted a small set of seed examples. The seeds were used for both Espresso as well as RH02. Table 1 lists a sample of the seeds as well as sample outputs from Espresso.",
"cite_spans": [],
"ref_spans": [
{
"start": 804,
"end": 811,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4.1"
},
{
"text": "We implemented the systems outlined in Section 4.1, except for GI03, and applied them to the Table 1 . Sample seeds used for each semantic relation and sample outputs from Espresso. The number in the parentheses for each relation denotes the total number of seeds used as input for the system.",
"cite_spans": [],
"ref_spans": [
{
"start": 93,
"end": 100,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Precision and Recall",
"sec_num": "4.2"
},
{
"text": "Part-Of (12 TREC and CHEM datasets. For each output set, per relation, we evaluate the precision of the system by extracting a random sample of instances (50 for the TREC corpus and 20 for the CHEM corpus) and evaluating their quality manually using two human judges (a total of 680 instances were annotated per judge). For each instance, judges may assign a score of 1 for correct, 0 for incorrect, and \u00bd for partially correct. Example instances that were judged partially correct include \"analyst is-a manager\" and \"pilot is-a teacher\". The kappa statistic (Siegel and Castellan Jr. 1988 ) on this task was \u039a = 0.69 2 . The precision for a given set of instances is the sum of the judges' scores divided by the total instances. Although knowing the total number of correct instances of a particular relation in any nontrivial corpus is impossible, it is possible to compute the recall of a system relative to another system's recall. Following , we define the relative recall of system A given system B, R A|B , as:",
"cite_spans": [
{
"start": 559,
"end": 589,
"text": "(Siegel and Castellan Jr. 1988",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Is-a (12)",
"sec_num": null
},
{
"text": "B P A P C C R R R B A B A C C C C B A B A B A \u00d7 \u00d7 = = = = |",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Is-a (12)",
"sec_num": null
},
{
"text": "where R A is the recall of A, C A is the number of correct instances extracted by A, C is the (unknown) total number of correct instances in the corpus, P A is A's precision in our experiments, and |A| is the total number of instances discovered by A.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Is-a (12)",
"sec_num": null
},
{
"text": "Tables 2 -8 report the total number of instances, precision, and relative recall of each system on the TREC-9 and CHEM corpora34. The relative recall is always given in relation to the ESP-system. For example, in Table 2 , RH02 has a relative recall of 5.31 with ESP-, which means that the RH02 system outputs 5.31 times more correct relations than ESP-(at a cost of much lower precision). Similarly, PR04 has a relative recall of 0.23 with ESP-, which means that PR04 outputs 4.35 fewer correct relations than ESP-(also with a smaller precision). We did not include the results from GI03 in the tables since the system is only applicable to part-of relations and we did not reproduce it. However, the authors evaluated their system on a sample of the TREC-9 dataset and reported 83% precision and 72% recall (this algorithm is heavily supervised.) * Because of the small evaluation sets, we estimate the 95% confidence intervals using bootstrap resampling to be in the order of \u00b1 10-15% (absolute numbers). \u2020 Relative recall is given in relation to ESP-. In all tables, RH02 extracts many more relations than ESP-, but with a much lower precision, because it uses generic patterns without filtering. The high precision of ESP-is due to the effective reliability measures presented in Section 3.2.",
"cite_spans": [],
"ref_spans": [
{
"start": 213,
"end": 220,
"text": "Table 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Is-a (12)",
"sec_num": null
},
{
"text": "Experimental results, for all relations and the two different corpus sizes, show that ESP-greatly outperforms the other methods on precision. However, without the use of generic patterns, the ESP-system shows lower recall in all but the production relation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Effect of Generic Patterns",
"sec_num": "4.3"
},
{
"text": "As hypothesized, exploiting generic patterns using the algorithm from Section 3.3 substantially improves recall without much deterioration in precision. ESP+ shows one to two orders of magnitude improvement on recall while losing on average below 10% precision. The succession relation in Table 6 was the only relation where Espresso found no generic pattern. For other relations, Espresso found from one to five generic patterns. Table 4 shows the power of generic patterns where system recall increases by 577 times with only a 10% drop in precision. In Table 7 , we see a case where the combination of filtering with a large increase in retrieved instances resulted in both higher precision and recall.",
"cite_spans": [],
"ref_spans": [
{
"start": 289,
"end": 296,
"text": "Table 6",
"ref_id": null
},
{
"start": 431,
"end": 438,
"text": "Table 4",
"ref_id": null
},
{
"start": 556,
"end": 563,
"text": "Table 7",
"ref_id": null
}
],
"eq_spans": [],
"section": "Effect of Generic Patterns",
"sec_num": "4.3"
},
{
"text": "In order to better analyze our use of generic patterns, we performed the following experiment.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Effect of Generic Patterns",
"sec_num": "4.3"
},
{
"text": "For each relation, we randomly sampled 100 instances for each generic pattern and built a gold standard for them (by manually tagging each instance as correct or incorrect). We then sorted the 100 instances according to the scoring formula S(i) derived in Section 3.3 and computed the average precision, recall, and F-score of each top-K ranked instances for each pattern 5 . Due to lack of space, we only present the graphs for four of the 22 generic patterns: \"X is a Y\" for the is-a relation of Table 2 , \"X in the Y\" for the part-of relation of Table 4 , \"X in Y\" for the part-of relation of Table 5 , and \"X and Y\" for the reaction relation of Table 7 . Figure 1 illustrates the results.",
"cite_spans": [],
"ref_spans": [
{
"start": 498,
"end": 505,
"text": "Table 2",
"ref_id": null
},
{
"start": 549,
"end": 556,
"text": "Table 4",
"ref_id": null
},
{
"start": 596,
"end": 603,
"text": "Table 5",
"ref_id": null
},
{
"start": 649,
"end": 656,
"text": "Table 7",
"ref_id": null
},
{
"start": 659,
"end": 667,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Effect of Generic Patterns",
"sec_num": "4.3"
},
{
"text": "In each figure, notice that recall climbs at a much faster rate than precision decreases. This indicates that the scoring function of Section 3.3 effectively separates correct and incorrect instances. In Figure 1a ), there is a big initial drop in precision that accounts for the poor precision reported in Table 1 .",
"cite_spans": [],
"ref_spans": [
{
"start": 204,
"end": 213,
"text": "Figure 1a",
"ref_id": null
},
{
"start": 307,
"end": 314,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Effect of Generic Patterns",
"sec_num": "4.3"
},
{
"text": "Recall that the cutoff points on S(i) were set to \u03c4 = 0.4 for TREC and \u03c4 = 0.3 for CHEM. The figures show that this cutoff is far from the maximum F-score. An interesting avenue of future work would be to automatically determine the proper threshold for each individual generic pattern instead of setting a uniform threshold. Figure 1 . Precision, recall and F-score curves of the Top-K% ranking instances of patterns \"X is a Y\" (TREC/is-a), \"X in Y\" (TREC/part-of), \"X in the Y\" (CHEM/part-of), and \"X and Y\" (CHEM/reaction). Top-K%",
"cite_spans": [],
"ref_spans": [
{
"start": 326,
"end": 334,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Effect of Generic Patterns",
"sec_num": "4.3"
},
{
"text": "We proposed a weakly-supervised, generalpurpose, and accurate algorithm, called Espresso, for harvesting binary semantic relations from raw text. The main contributions are: i) a method for exploiting generic patterns by filtering incorrect instances using the Web; and ii) a principled measure of pattern and instance reliability enabling the filtering algorithm. We have empirically compared Espresso's precision and recall with other systems on both a small domain-specific textbook and on a larger corpus of general news, and have extracted several standard and specific semantic relations: isa, part-of, succession, reaction, and production. Espresso achieves higher and more balanced performance than other state of the art systems. By exploiting generic patterns, system recall substantially increases with little effect on precision.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "5"
},
{
"text": "There are many avenues of future work both in improving system performance and making use of the relations in applications like question answering. For the former, we plan to investigate the use of WordNet to automatically learn selectional constraints on generic patterns, as proposed by (Girju et al. 2006) . We expect here that negative instances will play a key role in determining the selectional restrictions.",
"cite_spans": [
{
"start": 289,
"end": 308,
"text": "(Girju et al. 2006)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "5"
},
{
"text": "Espresso is the first system, to our knowledge, to emphasize concurrently performance, minimal supervision, breadth, and generality. It remains to be seen whether one could enrich existing ontologies with relations harvested by Espresso, and it is our hope that these relations will benefit NLP applications.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "5"
},
{
"text": "Production is an ambiguous relation; it is intended to be a causation relation in the context of chemical reactions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "The kappa statistic jumps to \u039a = 0.79 if we treat partially correct classifications as correct.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We can directly compute recall here since we built a gold standard for each set of 100 samples.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Finding parts in very large corpora",
"authors": [
{
"first": "M",
"middle": [],
"last": "Berland",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Charniak",
"suffix": ""
}
],
"year": 1999,
"venue": "Proceedings of ACL-1999",
"volume": "",
"issue": "",
"pages": "57--64",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Berland, M. and E. Charniak, 1999. Finding parts in very large corpora. In Proceedings of ACL-1999. pp. 57-64. College Park, MD.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Chemistry: The Central Science",
"authors": [
{
"first": "T",
"middle": [
"L"
],
"last": "Brown",
"suffix": ""
},
{
"first": "H",
"middle": [
"E"
],
"last": "Lemay",
"suffix": ""
},
{
"first": "B",
"middle": [
"E"
],
"last": "Bursten",
"suffix": ""
},
{
"first": "J",
"middle": [
"R"
],
"last": "Burdge",
"suffix": ""
}
],
"year": 2003,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Brown, T.L.; LeMay, H.E.; Bursten, B.E.; and Burdge, J.R. 2003. Chemistry: The Central Science, Ninth Edition. Prentice Hall.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Automatic acquisition of a hypernymlabeled noun hierarchy from text",
"authors": [
{
"first": "S",
"middle": [],
"last": "Caraballo",
"suffix": ""
}
],
"year": 1999,
"venue": "Proceedings of ACL-99",
"volume": "",
"issue": "",
"pages": "120--126",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Caraballo, S. 1999. Automatic acquisition of a hypernym- labeled noun hierarchy from text. In Proceedings of ACL-99. pp 120-126, Baltimore, MD.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Elements of Information Theory",
"authors": [
{
"first": "T",
"middle": [
"M"
],
"last": "Cover",
"suffix": ""
},
{
"first": "J",
"middle": [
"A"
],
"last": "Thomas",
"suffix": ""
}
],
"year": 1991,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Cover, T.M. and Thomas, J.A. 1991. Elements of Information Theory. John Wiley & Sons.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Mixed-initiative development of language processing systems",
"authors": [
{
"first": "D",
"middle": [],
"last": "Day",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Aberdeen",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Hirschman",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Kozierok",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Robinson",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Vilain",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of ANLP-97",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Day, D.; Aberdeen, J.; Hirschman, L.; Kozierok, R.; Robinson, P.; and Vilain, M. 1997. Mixed-initiative development of language processing systems. In Proceedings of ANLP-97. Washington D.C.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "A Probabilistic model of redundancy in information extraction",
"authors": [
{
"first": "D",
"middle": [],
"last": "Downey",
"suffix": ""
},
{
"first": "O",
"middle": [],
"last": "Etzioni",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Soderland",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of IJCAI-05",
"volume": "",
"issue": "",
"pages": "1034--1041",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Downey, D.; Etzioni, O.; and Soderland, S. 2005. A Probabilistic model of redundancy in information extraction. In Proceedings of IJCAI-05. pp. 1034-1041. Edinburgh, Scotland.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Unsupervised named-entity extraction from the Web: An experimental study",
"authors": [
{
"first": "O",
"middle": [],
"last": "Etzioni",
"suffix": ""
},
{
"first": "M",
"middle": [
"J"
],
"last": "Cafarella",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Downey",
"suffix": ""
},
{
"first": "A.-M",
"middle": [],
"last": "Popescu",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Shaked",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Soderland",
"suffix": ""
},
{
"first": "D",
"middle": [
"S"
],
"last": "Weld",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Yates",
"suffix": ""
}
],
"year": 2005,
"venue": "Artificial Intelligence",
"volume": "165",
"issue": "1",
"pages": "91--134",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Etzioni, O.; Cafarella, M.J.; Downey, D.; Popescu, A.-M.; Shaked, T.; Soderland, S.; Weld, D.S.; and Yates, A. 2005. Unsupervised named-entity extraction from the Web: An experimental study. Artificial Intelligence, 165(1): 91-134.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "WordNet: An Electronic Lexical Database",
"authors": [
{
"first": "C",
"middle": [],
"last": "Fellbaum",
"suffix": ""
}
],
"year": 1998,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Fellbaum, C. 1998. WordNet: An Electronic Lexical Database. MIT Press.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "The Distributional Inclusion Hypotheses and Lexical Entailment",
"authors": [
{
"first": "M",
"middle": [],
"last": "Geffet",
"suffix": ""
},
{
"first": "I",
"middle": [],
"last": "Dagan",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of ACL-2005",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Geffet, M. and Dagan, I. 2005. The Distributional Inclusion Hypotheses and Lexical Entailment. In Proceedings of ACL-2005. Ann Arbor, MI.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Automatic Discovery of Part-Whole Relations",
"authors": [
{
"first": "R",
"middle": [],
"last": "Girju",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Badulescu",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Moldovan",
"suffix": ""
}
],
"year": 2006,
"venue": "Computational Linguistics",
"volume": "32",
"issue": "1",
"pages": "83--135",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Girju, R.; Badulescu, A.; and Moldovan, D. 2006. Automatic Discovery of Part-Whole Relations. Computational Linguistics, 32(1): 83-135.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Automatic acquisition of hyponyms from large text corpora",
"authors": [
{
"first": "M",
"middle": [],
"last": "Hearst",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of COLING-92",
"volume": "",
"issue": "",
"pages": "539--545",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hearst, M. 1992. Automatic acquisition of hyponyms from large text corpora. In Proceedings of COLING-92. pp. 539-545. Nantes, France.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Noun classification from predicateargument structures",
"authors": [
{
"first": "D",
"middle": [],
"last": "Hindle",
"suffix": ""
}
],
"year": 1990,
"venue": "Proceedings of ACL-90",
"volume": "",
"issue": "",
"pages": "268--275",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hindle, D. 1990. Noun classification from predicate- argument structures. In Proceedings of ACL-90. pp. 268- 275. Pittsburgh, PA.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Technical Terminology: some linguistic properties and algorithms for identification in text",
"authors": [
{
"first": "J",
"middle": [
"S"
],
"last": "Justeson",
"suffix": ""
},
{
"first": "S",
"middle": [
"M"
],
"last": "Katz",
"suffix": ""
}
],
"year": 1995,
"venue": "Proceedings of ICCL-95",
"volume": "",
"issue": "",
"pages": "539--545",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Justeson J.S. and Katz S.M. 1995. Technical Terminology: some linguistic properties and algorithms for identification in text. In Proceedings of ICCL-95. pp.539-545. Nantes, France.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "The Automated acquisition of topic signatures for text summarization",
"authors": [
{
"first": "C.-Y",
"middle": [],
"last": "Lin",
"suffix": ""
},
{
"first": "E",
"middle": [
"H"
],
"last": "Hovy",
"suffix": ""
}
],
"year": 2000,
"venue": "Proceedings of COLING-00",
"volume": "",
"issue": "",
"pages": "495--501",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lin, C.-Y. and Hovy, E.H.. 2000. The Automated acquisition of topic signatures for text summarization. In Proceedings of COLING-00. pp. 495-501. Saarbr\u00fccken, Germany.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Concept discovery from text",
"authors": [
{
"first": "D",
"middle": [],
"last": "Lin",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Pantel",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of COLING-02",
"volume": "",
"issue": "",
"pages": "577--583",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lin, D. and Pantel, P. 2002. Concept discovery from text. In Proceedings of COLING-02. pp. 577-583. Taipei, Taiwan.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Fine-Grained Proper Noun Ontologies for Question Answering",
"authors": [
{
"first": "G",
"middle": [
"S"
],
"last": "Mann",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of SemaNet' 02: Building and Using Semantic Networks",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mann, G. S. 2002. Fine-Grained Proper Noun Ontologies for Question Answering. In Proceedings of SemaNet' 02: Building and Using Semantic Networks, Taipei, Taiwan.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Automatically labeling semantic classes",
"authors": [
{
"first": "P",
"middle": [],
"last": "Pantel",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Ravichandran",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of HLT/NAACL-04",
"volume": "",
"issue": "",
"pages": "321--328",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Pantel, P. and Ravichandran, D. 2004. Automatically labeling semantic classes. In Proceedings of HLT/NAACL-04. pp. 321-328. Boston, MA.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Towards terascale knowledge acquisition",
"authors": [
{
"first": "P",
"middle": [],
"last": "Pantel",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Ravichandran",
"suffix": ""
},
{
"first": "E",
"middle": [
"H"
],
"last": "Hovy",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of COLING-04",
"volume": "",
"issue": "",
"pages": "771--777",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Pantel, P.; Ravichandran, D.; Hovy, E.H. 2004. Towards terascale knowledge acquisition. In Proceedings of COLING-04. pp. 771-777. Geneva, Switzerland.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "The informative role of WordNet in Open-Domain Question Answering",
"authors": [
{
"first": "M",
"middle": [],
"last": "Pasca",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Harabagiu",
"suffix": ""
}
],
"year": 2001,
"venue": "Proceedings of NAACL-01 Workshop on WordNet and Other Lexical Resources",
"volume": "",
"issue": "",
"pages": "138--143",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Pasca, M. and Harabagiu, S. 2001. The informative role of WordNet in Open-Domain Question Answering. In Proceedings of NAACL-01 Workshop on WordNet and Other Lexical Resources. pp. 138-143. Pittsburgh, PA.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Learning surface text patterns for a question answering system",
"authors": [
{
"first": "D",
"middle": [],
"last": "Ravichandran",
"suffix": ""
},
{
"first": "E",
"middle": [
"H"
],
"last": "Hovy",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of ACL-2002",
"volume": "",
"issue": "",
"pages": "41--47",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ravichandran, D. and Hovy, E.H. 2002. Learning surface text patterns for a question answering system. In Proceedings of ACL-2002. pp. 41-47. Philadelphia, PA.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "A corpus-based approach for building semantic lexicons",
"authors": [
{
"first": "E",
"middle": [],
"last": "Riloff",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Shepherd",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of EMNLP-97",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Riloff, E. and Shepherd, J. 1997. A corpus-based approach for building semantic lexicons. In Proceedings of EMNLP-97.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Nonparametric Statistics for the Behavioral Sciences",
"authors": [
{
"first": "S",
"middle": [],
"last": "Siegel",
"suffix": ""
},
{
"first": "N",
"middle": [
"J"
],
"last": "Castellan",
"suffix": ""
}
],
"year": 1988,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Siegel, S. and Castellan Jr., N. J. 1988. Nonparametric Statistics for the Behavioral Sciences. McGraw-Hill.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Scaling web-based acquisition of entailment relations",
"authors": [
{
"first": "I",
"middle": [],
"last": "Szpektor",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Tanev",
"suffix": ""
},
{
"first": "I",
"middle": [],
"last": "Dagan",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Coppola",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of EMNLP-04",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Szpektor, I.; Tanev, H.; Dagan, I.; and Coppola, B. 2004. Scaling web-based acquisition of entailment relations. In Proceedings of EMNLP-04. Barcelona, Spain.",
"links": null
}
},
"ref_entries": {
"TABREF0": {
"text": "For example:",
"content": "<table><tr><td>\"Because/IN HF/NNP is/VBZ a/DT weak/JJ acid/NN</td></tr><tr><td>and/CC x is/VBZ a/DT y\"</td></tr><tr><td>is generalized as:</td></tr></table>",
"num": null,
"html": null,
"type_str": "table"
},
"TABREF1": {
"text": "System performance: CHEM/production.",
"content": "<table><tr><td>SYSTEM</td><td colspan=\"3\">INSTANCES PRECISION * REL RECALL \u2020</td></tr><tr><td>RH02</td><td>197</td><td>57.5%</td><td>0.80</td></tr><tr><td>ESP-</td><td>196</td><td>72.5%</td><td>1.00</td></tr><tr><td>ESP+</td><td>1676</td><td>55.8%</td><td>6.58</td></tr></table>",
"num": null,
"html": null,
"type_str": "table"
},
"TABREF2": {
"text": "System performance: TREC/is-a. System performance: CHEM/is-a.",
"content": "<table><tr><td>SYSTEM</td><td colspan=\"3\">INSTANCES PRECISION * REL RECALL \u2020</td><td>SYSTEM</td><td colspan=\"3\">INSTANCES PRECISION * REL RECALL \u2020</td></tr><tr><td>RH02</td><td>57,525</td><td>28.0%</td><td>5.31</td><td>RH02</td><td>2556</td><td>25.0%</td><td>3.76</td></tr><tr><td>PR04</td><td>1,504</td><td>47.0%</td><td>0.23</td><td>PR04</td><td>108</td><td>40.0%</td><td>0.25</td></tr><tr><td>ESP-</td><td>4,154</td><td>73.0%</td><td>1.00</td><td>ESP-</td><td>200</td><td>85.0%</td><td>1.00</td></tr><tr><td>ESP+</td><td>69,156</td><td>36.2%</td><td>8.26</td><td>ESP+</td><td>1490</td><td>76.0%</td><td>6.66</td></tr><tr><td colspan=\"4\">Table 4. System performance: TREC/part-of.</td><td colspan=\"4\">Table 5. System performance: CHEM/part-of.</td></tr><tr><td>SYSTEM</td><td colspan=\"3\">INSTANCES PRECISION * REL RECALL \u2020</td><td>SYSTEM</td><td colspan=\"3\">INSTANCES PRECISION * REL RECALL \u2020</td></tr><tr><td>RH02</td><td>12,828</td><td>35.0%</td><td>42.52</td><td>RH02</td><td>11,582</td><td>33.8%</td><td>58.78</td></tr><tr><td>ESP-</td><td>132</td><td>80.0%</td><td>1.00</td><td>ESP-</td><td>111</td><td>60.0%</td><td>1.00</td></tr><tr><td>ESP+</td><td>87,203</td><td>69.9%</td><td>577.22</td><td>ESP+</td><td>5973</td><td>50.7%</td><td>45.47</td></tr><tr><td colspan=\"4\">Table 6. System performance: TREC/succession.</td><td colspan=\"4\">Table 7. System performance: CHEM/reaction.</td></tr><tr><td>SYSTEM</td><td colspan=\"3\">INSTANCES PRECISION * REL RECALL \u2020</td><td>SYSTEM</td><td colspan=\"3\">INSTANCES PRECISION * REL RECALL \u2020</td></tr><tr><td>RH02</td><td>49,798</td><td>2.0%</td><td>36.96</td><td>RH02</td><td>6,083</td><td>30%</td><td>53.67</td></tr><tr><td>ESP-</td><td>55</td><td>49.0%</td><td>1.00</td><td>ESP-</td><td>40</td><td>85%</td><td>1.00</td></tr><tr><td>ESP+</td><td>55</td><td>49.0%</td><td>1.00</td><td>ESP+</td><td>3102</td><td>91.4%</td><td>89.39</td></tr></table>",
"num": null,
"html": null,
"type_str": "table"
}
}
}
} |