File size: 104,630 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 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 | {
"paper_id": "D09-1003",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T16:39:18.422533Z"
},
"title": "Semi-supervised Semantic Role Labeling Using the Latent Words Language Model",
"authors": [
{
"first": "Koen",
"middle": [],
"last": "Deschacht",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "K",
"middle": [
"U"
],
"last": "Leuven",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Belgium",
"middle": [
"\u00d3"
],
"last": "\u00d2\u00ba",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "\u00d8\u00d7\u00ba",
"middle": [],
"last": "\u00d9\u00f0",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "\u00d9",
"middle": [
"\u00da"
],
"last": "\u00d2\u00ba",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marie-Francine",
"middle": [],
"last": "Moens",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Belgium",
"middle": [
"\u00d7"
],
"last": "\u00d2\u00ba\u00f1\u00f3",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "\u00d2\u00d7\u00d7\u00ba",
"middle": [],
"last": "\u00d9\u00f0",
"suffix": "",
"affiliation": {},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Semantic Role Labeling (SRL) has proved to be a valuable tool for performing automatic analysis of natural language texts. Currently however, most systems rely on a large training set, which is manually annotated, an effort that needs to be repeated whenever different languages or a different set of semantic roles is used in a certain application. A possible solution for this problem is semi-supervised learning, where a small set of training examples is automatically expanded using unlabeled texts. We present the Latent Words Language Model, which is a language model that learns word similarities from unlabeled texts. We use these similarities for different semi-supervised SRL methods as additional features or to automatically expand a small training set. We evaluate the methods on the PropBank dataset and find that for small training sizes our best performing system achieves an error reduction of 33.27% F1-measure compared to a state-of-the-art supervised baseline.",
"pdf_parse": {
"paper_id": "D09-1003",
"_pdf_hash": "",
"abstract": [
{
"text": "Semantic Role Labeling (SRL) has proved to be a valuable tool for performing automatic analysis of natural language texts. Currently however, most systems rely on a large training set, which is manually annotated, an effort that needs to be repeated whenever different languages or a different set of semantic roles is used in a certain application. A possible solution for this problem is semi-supervised learning, where a small set of training examples is automatically expanded using unlabeled texts. We present the Latent Words Language Model, which is a language model that learns word similarities from unlabeled texts. We use these similarities for different semi-supervised SRL methods as additional features or to automatically expand a small training set. We evaluate the methods on the PropBank dataset and find that for small training sizes our best performing system achieves an error reduction of 33.27% F1-measure compared to a state-of-the-art supervised baseline.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Automatic analysis of natural language is still a very hard task to perform for a computer. Although some successful applications have been developed (see for instance (Chinchor, 1998) ), implementing an automatic text analysis system is still a labour and time intensive task. Many applications would benefit from an intermediate representation of texts, where an automatic analysis is already performed which is sufficiently general to be useful in a wide range of applications.",
"cite_spans": [
{
"start": 168,
"end": 184,
"text": "(Chinchor, 1998)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Syntactic analysis of texts (such as Part-Of-Speech tagging and syntactic parsing) is an example of such a generic analysis, and has proved useful in applications ranging from machine translation (Marcu et al., 2006) to text mining in the bio-medical domain (Cohen and Hersh, 2005) . A syntactic parse is however a representation that is very closely tied with the surface-form of natural language, in contrast to Semantic Role Labeling (SRL) which adds a layer of predicate-argument information that generalizes across different syntactic alternations (Palmer et al., 2005) . SRL has received a lot of attention in the research community, and many systems have been developed (see section 2). Most of these systems rely on a large dataset for training that is manually annotated. In this paper we investigate whether we can develop a system that achieves state-of-the-art semantic role labeling without relying on a large number of labeled examples. We aim to do so by employing the Latent Words Language Model that learns latent words from a large unlabeled corpus. Latent words are words that (unlike observed words) did not occur at a particular position in a text, but given semantic and syntactic constraints from the context could have occurred at that particular position.",
"cite_spans": [
{
"start": 196,
"end": 216,
"text": "(Marcu et al., 2006)",
"ref_id": "BIBREF23"
},
{
"start": 258,
"end": 281,
"text": "(Cohen and Hersh, 2005)",
"ref_id": "BIBREF6"
},
{
"start": 553,
"end": 574,
"text": "(Palmer et al., 2005)",
"ref_id": "BIBREF27"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In section 2 we revise existing work on SRL and on semi-supervised learning. Section 3 outlines our supervised classifier for SRL and section 4 discusses the Latent Words Language Model. In section 5 we will combine the two models for semisupervised role labeling. We will test the model on the standard PropBank dataset and compare it with state-of-the-art semi-supervised SRL systems in section 6 and finally in section 7 we draw conclusions and outline future work. Gildea and Jurafsky (2002) were the first to describe a statistical system trained on the data from the FrameNet project to automatically assign semantic roles. This approach was soon followed by other researchers (Surdeanu et al., 2003; Pradhan et al., 2004; Xue and Palmer, 2004) , focus-ing on improved sets of features, improved machine learning methods or both, and SRL became a shared task at the CoNLL 2004 CoNLL , 2005 and 2008 conferences 1 . The best system (Johansson and Nugues, 2008) in CoNLL 2008 achieved an F1measure of 81.65% on the workshop's evaluation corpus.",
"cite_spans": [
{
"start": 469,
"end": 495,
"text": "Gildea and Jurafsky (2002)",
"ref_id": "BIBREF11"
},
{
"start": 683,
"end": 706,
"text": "(Surdeanu et al., 2003;",
"ref_id": "BIBREF30"
},
{
"start": 707,
"end": 728,
"text": "Pradhan et al., 2004;",
"ref_id": "BIBREF28"
},
{
"start": 729,
"end": 750,
"text": "Xue and Palmer, 2004)",
"ref_id": "BIBREF33"
},
{
"start": 872,
"end": 882,
"text": "CoNLL 2004",
"ref_id": null
},
{
"start": 883,
"end": 895,
"text": "CoNLL , 2005",
"ref_id": null
},
{
"start": 937,
"end": 965,
"text": "(Johansson and Nugues, 2008)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Semi-supervised learning has been suggested by many researchers as a solution to the annotation bottleneck (see (Chapelle et al., 2006; Zhu, 2005) for an overview), and has been applied successfully on a number of natural language processing tasks. Mann and McCallum (2007) apply Expectation Regularization to Named Entity Recognition and Part-Of-Speech tagging, achieving improved performance when compared to supervised methods, especially on small numbers of training data. Koo et al. (2008) present an algorithm for dependency parsing that uses clusters of semantically related words, which were learned in an unsupervised manner. There has been little research on semi-supervised learning for SRL. We refer to He and Gildea (2006) who tested active learning and co-training methods, but found little or no gain from semi-supervised learning, and to Swier and Stevenson (2004) , who achieved good results using semi-supervised methods, but tested their methods on a small number of Verb-Net roles, which have not been used by other SRL systems. To the best of our knowledge no system was able to reproduce the successful results of (Swier and Stevenson, 2004) on the PropBank roleset. Our approach most closely resembles the work of F\u00fcrstenau and Lapata (2009) who automatically expand a small training set using an automatic dependency alignment of unlabeled sentences. This method was tested on the FrameNet corpus and improved results when compared to a fully-supervised classifier. We will discuss their method in detail in section 5. Fillmore (1968) introduced semantic structures called semantic frames, describing abstract actions or common situations (frames) with common roles and themes (semantic roles). Inspired by this idea different resources were constructed, including FrameNet (Baker et al., 1998) and PropBank (Palmer et al., 2005 ). An alternative approach to semantic role labeling is the framework developed 1 See http://www.cnts.ua.ac.be/conll/ for an overview.",
"cite_spans": [
{
"start": 112,
"end": 135,
"text": "(Chapelle et al., 2006;",
"ref_id": "BIBREF4"
},
{
"start": 136,
"end": 146,
"text": "Zhu, 2005)",
"ref_id": "BIBREF34"
},
{
"start": 249,
"end": 273,
"text": "Mann and McCallum (2007)",
"ref_id": "BIBREF22"
},
{
"start": 477,
"end": 494,
"text": "Koo et al. (2008)",
"ref_id": "BIBREF18"
},
{
"start": 715,
"end": 735,
"text": "He and Gildea (2006)",
"ref_id": "BIBREF16"
},
{
"start": 854,
"end": 880,
"text": "Swier and Stevenson (2004)",
"ref_id": "BIBREF31"
},
{
"start": 1136,
"end": 1163,
"text": "(Swier and Stevenson, 2004)",
"ref_id": "BIBREF31"
},
{
"start": 1237,
"end": 1264,
"text": "F\u00fcrstenau and Lapata (2009)",
"ref_id": "BIBREF10"
},
{
"start": 1543,
"end": 1558,
"text": "Fillmore (1968)",
"ref_id": "BIBREF9"
},
{
"start": 1798,
"end": 1818,
"text": "(Baker et al., 1998)",
"ref_id": "BIBREF0"
},
{
"start": 1832,
"end": 1852,
"text": "(Palmer et al., 2005",
"ref_id": "BIBREF27"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "2"
},
{
"text": "by Halliday (1994) and implemented by Mehay et al. (2005) . PropBank has thus far received the most attention of the research community, and is used in our work.",
"cite_spans": [
{
"start": 3,
"end": 18,
"text": "Halliday (1994)",
"ref_id": "BIBREF14"
},
{
"start": 38,
"end": 57,
"text": "Mehay et al. (2005)",
"ref_id": "BIBREF25"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic role labeling",
"sec_num": "3"
},
{
"text": "The goal of the PropBank project is to add semantic information to the syntactic nodes in the English Penn Treebank. The main motivation for this annotation is the preservation of semantic roles across different syntactic realizations. Take for instance the sentences 1. The window broke.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "PropBank",
"sec_num": "3.1"
},
{
"text": "2. John broke the window.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "PropBank",
"sec_num": "3.1"
},
{
"text": "In both sentences the constituent \"the window\" is broken, although it occurs at different syntactic positions. The PropBank project defines for a large collection of verbs (excluding auxiliary verbs such as \"will\", \"can\", ...) a set of senses, that reflect the different meanings and syntactic alternations of this verb. Every sense has a number of expected roles, numbered from Arg0 to Arg5. A small number of arguments are shared among all senses of all verbs, such as temporals (Arg-TMP), locatives (Arg-LOC) and directionals (Arg-DIR). Additional to the frame definitions, PropBank has annotated a large training corpus containing approximately 113.000 annotated verbs. An example of an annotated sentence is",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "PropBank",
"sec_num": "3.1"
},
{
"text": "[John Arg0 ][broke BREAK.01 ] [the window Arg1 ].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "PropBank",
"sec_num": "3.1"
},
{
"text": "Here BREAK.01 is the first sense of the \"break\" verb. Note that (1) although roles are defined for every frame separately, in reality roles with identical names are identical or very similar for all frames, a fact that is exploited to train accurate role classifiers and (2) semantic role labeling systems typically assume that a frame is fully expressed in a single sentence and thus do not try to instantiate roles across sentence boundaries. Although the original PropBank corpus assigned semantic roles to syntactic phrases (such as noun phrases), we use the CoNLL dataset, where the PropBank corpus was converted to a dependency representation, assigning semantic roles to single (head) words.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "PropBank",
"sec_num": "3.1"
},
{
"text": "In this section we discuss the features used in the semantic role labeling system. All features but the Split path feature are taken from existing semantic role labeling systems, see for example (Gildea and Jurafsky, 2002; Lim et al., 2004; Thompson et al., 2006) . The number in brackets denotes the number of unique features for that type.",
"cite_spans": [
{
"start": 195,
"end": 222,
"text": "(Gildea and Jurafsky, 2002;",
"ref_id": "BIBREF11"
},
{
"start": 223,
"end": 240,
"text": "Lim et al., 2004;",
"ref_id": "BIBREF19"
},
{
"start": 241,
"end": 263,
"text": "Thompson et al., 2006)",
"ref_id": "BIBREF32"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Features",
"sec_num": "3.2"
},
{
"text": "Word We split every sentence in (unigram) word tokens, including punctuation. 37079Stem We reduce the word tokens to their stem, e.g. \"walks\" -> \"walk\". 28690POS The part-of-speech tag for every word, e.g. \"NNP\" (for a singular proper noun). 77Neighbor POS's The concatenated part-ofspeech tags of the word before and the word just after the current word, e.g. \"RBS_JJR\".",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Features",
"sec_num": "3.2"
},
{
"text": "Path This important feature describes the path through the dependency tree from the current word to the position of the predicate, e.g. \"coord\u2191obj\u2191adv\u2191root\u2193dep\u2193nmod\u2193pmod\", where '\u2191' indicates going up a constituent and '\u2193' going down one constituent.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Features",
"sec_num": "3.2"
},
{
"text": "Split Path Because of the nature of the path feature, an explosion of unique features is found in a given data set. We reduce this by splitting the path in different parts and using every part as a distinct feature. We split, for example, the previous path in 6 different features: \"coord\", \"\u2191obj\", \"\u2191adv\", \"\u2191root\", \"\u2193dep\", \"\u2193nmod\", \"\u2193pmod\". Note that the split path feature includes the POS feature, since the first component of the path is the POS tag for the current word. This feature has not been used previously for semantic role detection.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Features",
"sec_num": "3.2"
},
{
"text": "For every word w i in the training and test set we construct the feature vector f(w i ), where at every position in this vector 1 indicates the presence for the corresponding feature and 0 the absence of that feature.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Features",
"sec_num": "3.2"
},
{
"text": "Discriminative models have been found to outperform generative models for many different tasks including SRL (Lim et al., 2004) . For this reason we also employ discriminative models here. The structure of the model was inspired by a similar (although generative) model in (Thompson et al., 2006) where it was used for semantic frame classification. The model ( fig. 1 ) assumes that the role label r i j for the word w i is conditioned on the features f i and on the role label r i\u22121 j of the previous word and that the predicate label p j for word w j is conditioned on the role labels R j and on the features f j . This model can be seen as an extension of the standard Maximum Entropy Markov Model (MEMM, see (Ratnaparkhi, 1996) ) with an extra dependency on the predicate label, we will henceforth refer to this model as MEMM+pred.",
"cite_spans": [
{
"start": 109,
"end": 127,
"text": "(Lim et al., 2004)",
"ref_id": "BIBREF19"
},
{
"start": 273,
"end": 296,
"text": "(Thompson et al., 2006)",
"ref_id": "BIBREF32"
},
{
"start": 713,
"end": 732,
"text": "(Ratnaparkhi, 1996)",
"ref_id": "BIBREF29"
}
],
"ref_spans": [
{
"start": 362,
"end": 368,
"text": "fig. 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Discriminative model",
"sec_num": "3.3"
},
{
"text": "To estimate the parameters of the MEMM+pred model we turn to the successful Maximum Entropy (Berger et al., 1996) parameter estimation method. The Maximum Entropy principle states that the best model given the training data is the model such that the conditional distribution defined by the model has maximum entropy subject to the constraints represented by the training examples. There is no closed form solution to find this maximum and we thus turn to an iterative method. In this work we use Generalized Iterative Scaling 2 , but other methods such as (quasi-) Newton optimization could also have been used.",
"cite_spans": [
{
"start": 92,
"end": 113,
"text": "(Berger et al., 1996)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discriminative model",
"sec_num": "3.3"
},
{
"text": "As discussed in sections 1 and 3 most SRL systems are trained today on a large set of manually annotated examples. PropBank for example contains approximately 50000 sentences. This manual annotation is both time and labour-intensive, and needs to be repeated for new languages or for new domains requiring a different set of roles. One approach that can help to solve this problem is semi-supervised learning, where a small set of annotated examples is used together with a large set of unlabeled examples when training a SRL model.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Rationale",
"sec_num": "4.1"
},
{
"text": "Manual inspection of the results of the supervised model discussed in the previous section showed that the main source of errors was incorrect labeling of a word because the word token did not occur, or occurred only a small number of times in the training set. We hypothesize that knowledge of semantic similar words could overcome this problem by associating words that occurred infrequently in the training set to similar words that occurred more frequently. Furthermore, we would like to learn these similarities automatically, to be independent of knowledge sources that might not be available for all languages or domains.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Rationale",
"sec_num": "4.1"
},
{
"text": "The Distributional Hypothesis, supported by theoretical linguists such as Harris (1954) , states that words that occur in the same contexts tend to have similar meanings. This suggests that one can learn the similarity between two words automatically by comparing their relative contexts in a large unlabeled corpus, which was confirmed by different researchers (e.g. (Lin, 1998; McDonald and Ramscar, 2001; Grefenstette, 1994) ). Different methods for computing word similarities have been proposed, differing between methods to represent the context (using dependency relationship or a window of words) and between methods that, given a set of contexts, compute the similarity between different words (ranging from cosine similarity to more complex metrics such as the Jaccard index). We refer to (Lin, 1998) for a comparison of the different similarity metrics.",
"cite_spans": [
{
"start": 74,
"end": 87,
"text": "Harris (1954)",
"ref_id": "BIBREF15"
},
{
"start": 368,
"end": 379,
"text": "(Lin, 1998;",
"ref_id": "BIBREF21"
},
{
"start": 380,
"end": 407,
"text": "McDonald and Ramscar, 2001;",
"ref_id": "BIBREF24"
},
{
"start": 408,
"end": 427,
"text": "Grefenstette, 1994)",
"ref_id": "BIBREF13"
},
{
"start": 799,
"end": 810,
"text": "(Lin, 1998)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Rationale",
"sec_num": "4.1"
},
{
"text": "In the next section we propose a novel method to learn word similarities, the Latent Words Language Model (LWLM) (Deschacht and Moens, 2009) . This model learns similar words and learns the a distribution over the contexts in which certain types of words occur typically.",
"cite_spans": [
{
"start": 113,
"end": 140,
"text": "(Deschacht and Moens, 2009)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Rationale",
"sec_num": "4.1"
},
{
"text": "The LWLM introduces for a text T = w 1 ...w N of length N for every observed word w i at position i a hidden variable h i . The model is a generative model for natural language, in which the latent variable h i is generated by its context C(h i ) and the observed word w i is generated by the latent variable h i . In the current model we assume that the context is C(",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition",
"sec_num": "4.2"
},
{
"text": "h i ) = h i\u22121 i\u22122 h i+2 i+1 where h i\u22121 i\u22122 = h i\u22122 h i\u22121",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition",
"sec_num": "4.2"
},
{
"text": "is the two previous words and h i+2 i+1 = h i+1 h i+2 is the two next words. The observed w i has a value from the vocabulary V , while the hidden variable h i is unknown, and is modeled as a probability distribution over all words of V . We will see in the next section how this distribution is estimated from a large unlabeled training corpus. The aim of this model is to estimate, at every position i, a distribution for h i , assigning high probabilities to words that are similar to w i , given the context of this word C(h i ), and low probabilities to words that are not similar to w i in this context.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition",
"sec_num": "4.2"
},
{
"text": "A possible interpretation of this model states that every hidden variable h i models the \"meaning\" for a particular word in a particular context. In this probabilistic model, when generating a sentence, we generate the meaning of a word (which is an unobserved representation) with a certain probability, and then we generate a certain observation by writing down one of the possible words that express this meaning.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition",
"sec_num": "4.2"
},
{
"text": "Creating a representation that models the meaning of a word is an interesting (and controversial) topic in its own right, but in this work we make the assumption that the meaning of a particular word can be modeled using other words. Modeling the meaning of a word with other words is not an unreasonable one, since it is already employed in practice by humans (e.g. by using dictionaries and thesauri) and machines (e.g. relying on a lexical resource such as WordNet) in word sense disambiguation tasks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition",
"sec_num": "4.2"
},
{
"text": "As we will further see the LWLM model has three probability distributions: P(w i |h i ), the probability of the observed word w j given the latent variable h j , P(h i |h i\u22121 i\u22122 ), the probability of the hidden word h j given the previous variables h j\u22122 and h j\u22121 , and P(h i |h i+2 i+1 ), the probability of the hidden word h j given the next variables h j+1 and h j+2 . These distributions need to be learned from a training text T train =< w 0 ...w z > of length Z.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parameter estimation",
"sec_num": "4.3"
},
{
"text": "The attentive reader will have noticed the similarity between the proposed model and a standard second-order Hidden Markov Model (HMM) where the hidden state is dependent on the two previous states. However, we are not able to use the standard Baum-Welch (or forward-backward) algorithm, because the hidden variable h i is modeled as a probability distribution over all words in the vocabulary V . The Baum-Welch algorithm would result in an execution time of O(|V | 3 NG) where |V | is the size of the vocabulary, N is the length of the training text and G is the number of iterations needed to converge. Since in our dataset the vocabulary size is more than 30K words (see section 3.2), using this algorithm is not possible. Instead we use techniques of approximate inference, i.e. Gibbs sampling.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Baum-Welch algorithm",
"sec_num": "4.3.1"
},
{
"text": "Gibbs sampling starts from a random initialization for the hidden variables and then improves the estimates in subsequent iterations. In preliminary experiments it was found that a pure random initialization results in a very long burn-in-period and a poor performance of the final model. For this reason we initially set the distributions for the hidden words equal to the distribution of words as given by a standard language model 3 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Initialization",
"sec_num": "4.3.2"
},
{
"text": "We store the initial estimate of the hidden variables in M 0 train =< h 0 ...h Z >, where h i generates w i at every position i. Gibbs sampling is a Markov Chain Monte Carlo method that updates the estimates of the hidden variables in a number of iterations. M \u03c4 train denotes the estimate of the hidden variables in iteration \u03c4. In every iteration a new estimate M \u03c4+1 train is generated from the previous estimate M \u03c4 train by selecting a random position j and updating the value of the hidden variable at that position. The probability distributions P \u03c4 (w j |h j ), P \u03c4 (h j |h j\u22121 j\u22122 ) and P \u03c4 (h j |h j+2 j+1 ) are constructed by collecting the counts from all positions i = j. The hidden variable h j is dependent on h j\u22122 , h j\u22121 , h j+1 , h j+2 and w j and we can compute the distribution of possible values for the variable h j as",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gibbs sampling",
"sec_num": "4.3.3"
},
{
"text": "P \u03c4 (h j |w j , h j\u22121 0 , h Z j+1 ) = P \u03c4 (w j |h j )P \u03c4 (h j |h j\u22121 j\u22122 h j+2 j+1 ) \u2211 h i P \u03c4 (w i |h i )P \u03c4 (h j |h j\u22121 j\u22122 h j+2 j+1 )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gibbs sampling",
"sec_num": "4.3.3"
},
{
"text": "We set P(h j |h j\u22121 j\u22122 h j+2 j+1 ) = P(h j |h j\u22121 j\u22122 ) \u2022 P(h j |h j+2 j+1 ) which can be easily computed given the above dis-tributions. We select a new value for the hidden variable according to",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gibbs sampling",
"sec_num": "4.3.3"
},
{
"text": "P \u03c4 (h j |w j , h j\u22121 0 , h Z j+1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gibbs sampling",
"sec_num": "4.3.3"
},
{
"text": ") and place it at position j in M \u03c4+1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gibbs sampling",
"sec_num": "4.3.3"
},
{
"text": "train . The current estimate for all other unobserved words remains the same. After performing this iteration a large number of times (|V | * 10 in this experiment), the distribution approaches the true maximum likelihood distribution. Gibbs sampling however samples this distribution, and thus will never reach it exactly. A number of iterations (|V | * 100) is then performed in which Gibbs sampling oscillates around the correct distribution. We collect independent samples of this distribution every |V | * 10 iterations, which are then used to construct the final model.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gibbs sampling",
"sec_num": "4.3.3"
},
{
"text": "A first evaluation of the quality of the automatically learned latent words is by translation of this model into a sequential language model and by measuring its perplexity on previously unseen texts. In (Deschacht and Moens, 2009) we perform a number of experiments, comparing different corpora (news texts from Reuters and from Associated Press, and articles from Wikipedia) and n-gram sizes (3-gram and 4-gram). We also compared the proposed model with two state-ofthe-art language models, Interpolated Kneser-Ney smoothing and fullibmpredict (Goodman, 2001) , and found that LWLM outperformed both models on all corpora, with a perplexity reduction ranging between 12.40% and 5.87%. These results show that the estimated distributions over latent words are of a high quality and lead us to believe they could be used to improve automatic text analysis, like SRL.",
"cite_spans": [
{
"start": 204,
"end": 231,
"text": "(Deschacht and Moens, 2009)",
"ref_id": "BIBREF8"
},
{
"start": 546,
"end": 561,
"text": "(Goodman, 2001)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation of the Language Model",
"sec_num": "4.4"
},
{
"text": "The previous section discussed how the LWLM learns similar words and how these similarities improved the perplexity on an unseen text of the language model derived from this model. In this section we will see how we integrate the latent words model in two novel semi-supervised SRL models and compare these with two state-of-the-art semisupervised models for SRL and dependency parsing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Role labeling using latent words",
"sec_num": "5"
},
{
"text": "In a first approach we estimate the distribution of latent words for every word for both the training and test set. We then use the latent words at every position as additional probabilistic features for the discriminative model. More specifically, we append |V | extra values to the feature vector f(w j ), containing the probability distribution over the |V | possible words for the hidden variable h i 4 . We call this the LWFeatures method.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Latent words as additional features",
"sec_num": null
},
{
"text": "This method has the advantage that it is simple to implement and that many existing SRL systems can be easily extended by adding additional features. We also expect that this method can be employed almost effortless in other information extraction tasks, such as Named Entity Recognition or Part-Of-Speech labeling.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Latent words as additional features",
"sec_num": null
},
{
"text": "We compare this approach to the semisupervised method in Koo et al. (2008) who employ clusters of related words constructed by the Brown clustering algorithm (Brown et al., 1992) for syntactic processing of texts. Interestingly, this clustering algorithm has a similar objective as LWLM since it tries to optimize a class-based language model in terms of perplexity on an unseen test text. We employ a slightly different clustering method here, the fullibmpredict method discussed in (Goodman, 2001) . This method was shown to outperform the class based model proposed in (Brown et al., 1992) and can thus be expected to discover better clusters of words. We append the feature vector f(w j ) with c extra values (where c is the number of clusters), respectively set to 1 if the word w i belongs to the corresponding cluster or to 0 otherwise. We call this method the ClusterFeatures method.",
"cite_spans": [
{
"start": 57,
"end": 74,
"text": "Koo et al. (2008)",
"ref_id": "BIBREF18"
},
{
"start": 158,
"end": 178,
"text": "(Brown et al., 1992)",
"ref_id": "BIBREF3"
},
{
"start": 484,
"end": 499,
"text": "(Goodman, 2001)",
"ref_id": "BIBREF12"
},
{
"start": 572,
"end": 592,
"text": "(Brown et al., 1992)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Latent words as additional features",
"sec_num": null
},
{
"text": "We compare our approach with a method proposed by F\u00fcrstenau and Lapata (2009) . This approach is more tailored to the specific case of SRL and is summarized here.",
"cite_spans": [
{
"start": 50,
"end": 77,
"text": "F\u00fcrstenau and Lapata (2009)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "Given a set of labeled seed verbs with annotated semantic roles, for every annotated verb a number of occurrences of this verb is found in unlabeled texts where the context is similar to the context of the annotated example. The context is defined here as all words in the sentence that are direct dependents of this verb, given the syntactic dependency tree. The similarity between two occurrences of a particular verb is measured by finding all different alignments \u03c3 : ..., m}) between the m dependents of the first occurrence and the n dependents of the second occurrence. Every alignment \u03c3 is assigned a score given by",
"cite_spans": [
{
"start": 472,
"end": 480,
"text": "..., m})",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "M \u03c3 \u2192 {1...n} (M \u03c3 \u2282 {1,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "\u2211 i\u2208M \u03c3 A \u2022 syn(g i , g \u03c3 (i) ) + sem(w i , w \u03c3 (i) ) \u2212 B",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "where syn(g i , g \u03c3 (i) ) denotes the syntactic similarity between grammatical role 5 g i of word w i and grammatical role g \u03c3 (i) of word w \u03c3 (i) , and sem(w i , w \u03c3 (i) ) measures the semantic similarity between words w i and w \u03c3 (i) . A is a constant weighting the importance of the syntactic similarity compared to semantic similarity, and B can be interpreted as the lowest similarity value for which an alignment between two arguments is possible. The syntactic similarity syn(g i , g \u03c3 (i) ) is defined as 1 if the dependency relations are identical, 0 < a < 1 if the relations are of the same type but of a different subtype 6 and 0 otherwise. The semantic similarity sem(w i , w \u03c3 (i) ) is automatically estimated as the cosine similarity between the contexts of w i and w \u03c3 (i) in a large text corpus. For details we refer to (F\u00fcrstenau and Lapata, 2009) .",
"cite_spans": [
{
"start": 836,
"end": 864,
"text": "(F\u00fcrstenau and Lapata, 2009)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "For every verb in the annotated training set we find the k occurrences of that verb in the unlabeled texts where the contexts are most similar given the best alignment. We then expand the training set with these examples, automatically generating an annotation using the discovered alignments. The variable k controls the trade-off between annotation confidence and expansion size. The final model is then learned by running the supervised training method on the expanded training set. We call this method AutomaticExpansionCOS 7 . The values for k, a, A and B are optimized automatically in every experiment on a held-out set (disjoint from both training and test set). We adapt this approach by employing a different method for measuring semantic similarity. Given two words w i and w \u03c3 (i) we estimate the distribution of latent words, respectively L(h i ) and 5% ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "L(h \u03c3 (i) ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "We then compute the semantic similarity measure as the Jensen-Shannon (Lin, 1997) divergence",
"cite_spans": [
{
"start": 70,
"end": 81,
"text": "(Lin, 1997)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "JS(L(h i )||L(h \u03c3 (i) )) = 1 2 D (L(h i )||avg) + D L(h \u03c3 (i) )||avg",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "where avg = (L(h i ) + L(h \u03c3 (i) ))/2 is the average between the two distributions and D (L(h i )||avg) is the Kullback-Leiber divergence (Cover and Thomas, 2006) . Although this change might appear only a slight deviation from the original model discussed in (F\u00fcrstenau and Lapata, 2009) it is potentially an important one, since an accurate semantic similarity measure will greatly influence the accuracy of the alignments, and thus of the accuracy of the automatic expansion. We call this method Automat-icExpansionLW.",
"cite_spans": [
{
"start": 138,
"end": 162,
"text": "(Cover and Thomas, 2006)",
"ref_id": "BIBREF7"
},
{
"start": 260,
"end": 288,
"text": "(F\u00fcrstenau and Lapata, 2009)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic expansion of the training set using predicate argument alignment",
"sec_num": null
},
{
"text": "We perform a number of experiments where we compare the fully supervised model with the semisupervised models proposed in the previous section. We first train the LWLM model on an unlabeled 5 million word Reuters corpus 8 . We perform different experiments for the supervised and the four different semi-supervised methods (see previous section). Table 1 shows the results of the different methods on the test set of the CoNLL 2008 shared task. We experimented with different sizes for the training set, ranging from 5% to 100%. When using a subset of the full training set, we run 10 different experiments with random subsets and average the results.",
"cite_spans": [],
"ref_spans": [
{
"start": 347,
"end": 354,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experiments",
"sec_num": "6"
},
{
"text": "We see that the LWFeatures method performs better than the other methods across all training sizes. Furthermore, these improvements are 8 See http://www.daviddlewis.com/resources larger for smaller training sets, showing that the approach can be applied successfully in a setting where only a small number of training examples is available.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "6"
},
{
"text": "When comparing the LWFeatures method with the ClusterFeatures method we see that, although the ClusterFeatures method has a similar performance for small training sizes, this performance drops for larger training sizes. A possible explanation for this result is the use of the clusters employed in the ClusterFeatures method. By definition the clusters merge many words into one cluster, which might lead to good generalization (more important for small training sizes) but can potentially hurt precision (more important for larger training sizes).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "6"
},
{
"text": "A third observation that can be made from table 1 is that, although both automatic expansion methods (AutomaticExpansionCOS and AutomaticEx-pansionCOS) outperform the supervised method for the smallest training size, for other sizes of the training set they perform relatively poorly. An informal inspection showed that for some examples in the training set, little or no correct similar occurrences were found in the unlabeled text. The algorithm described in section 5 adds the most similar k occurrences to the training set for every annotated example, also for these examples where little or no similar occurrences were found. Often the automatic alignment fails to generate correct labels for these occurrences and introduces errors in the training set. In the future we would like to perform experiments that determine dynamically (for instance based on the similarity measure between occurrences) for every annotated example how many training examples to add.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "6"
},
{
"text": "We have presented the Latent Words Language Model and showed how it learns, from unlabeled texts, latent words that capture the meaning of a certain word, depending on the context. We then experimented with different methods to incorporate the latent words for Semantic Role Labeling, and tested different methods on the PropBank dataset. Our best performing method showed a significant improvement over the supervised model and over methods previously proposed in the literature. On the full training set the best method performed 2.33% better than the fully supervised model, which is a 10.91% error reduction. Using only 5% of the training data the best semi-supervised model still achieved 60.29%, compared to 40.49% by the supervised model, which is an error reduction of 33.27%. These results demonstrate that the latent words learned by the LWLM help for this complex information extraction task. Furthermore we have shown that the latent words are simple to incorporate in an existing classifier by adding additional features. We would like to perform experiments on employing this model in other information extraction tasks, such as Word Sense Disambiguation or Named Entity Recognition. The current model uses the context in a very straightforward way, i.e. the two words left and right of the current word, but in the future we would like to explore more advanced methods to improve the similarity estimates. Lin (1998) for example discusses a method where a syntactic parse of the text is performed and the context of a word is modeled using dependency triples.",
"cite_spans": [
{
"start": 1421,
"end": 1431,
"text": "Lin (1998)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and future work",
"sec_num": "7"
},
{
"text": "The other semi-supervised methods proposed here were less successful, although all improved on the supervised model for small training sizes. In the future we would like to improve the described automatic expansion methods, since we feel that their full potential has not yet been reached. More specifically we plan to experiment with more advanced methods to decide whether some automatically generated examples should be added to the training set.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and future work",
"sec_num": "7"
},
{
"text": "We use the maxent package available on http://maxent.sourceforge.net/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We used the interpolated Kneser-Ney model as described in(Goodman, 2001).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Probabilities smaller than 1e10 \u22124 were set to 0 for efficiency reasons.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Note that this is a syntactic role, not a semantic role as the ones discussed in this article.6 Subtypes are fine-grained distinctions made by the parser such as the underlying grammatical roles in passive constructions.7 The only major differences with(F\u00fcrstenau and Lapata, 2009) are the dependency parser which was used (the MALT parser(Nivre et al., 2006) instead of the RASP parser(Briscoe et al., 2006)) and the corpus employed to learn semantic similarities (the Reuters corpus instead of the British National Corpus). We expect that these differences will only influence the results minimally.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "The work reported in this paper was supported by the EU-IST project CLASS (Cognitive-Level Annotation using Latent Statistical Structure, IST-027978) and the IWT-SBO project AMASS++ (IWT-SBO-060051). We thank the anonymous reviewers for their helpful comments and Dennis N. Mehay for his help on clarifying the linguistic motivation of our models.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "The Berkeley FrameNet project",
"authors": [
{
"first": "C",
"middle": [
"F"
],
"last": "Baker",
"suffix": ""
},
{
"first": "C",
"middle": [
"J"
],
"last": "Fillmore",
"suffix": ""
},
{
"first": "J",
"middle": [
"B"
],
"last": "Lowe",
"suffix": ""
}
],
"year": 1998,
"venue": "Proceedings of the 36th Annual Meeting of the Association for Computational Linguistics and 17th International Conference on Computational Linguistics",
"volume": "98",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C.F. Baker, C.J. Fillmore, and J.B. Lowe. 1998. The Berkeley FrameNet project. In Proceedings of the 36th Annual Meeting of the Association for Com- putational Linguistics and 17th International Con- ference on Computational Linguistics, volume 98. Montreal, Canada.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "A maximum entropy approach to natural language processing",
"authors": [
{
"first": "A",
"middle": [
"L"
],
"last": "Berger",
"suffix": ""
},
{
"first": "V",
"middle": [
"J"
],
"last": "Della Pietra",
"suffix": ""
},
{
"first": "S",
"middle": [
"A"
],
"last": "Della Pietra",
"suffix": ""
}
],
"year": 1996,
"venue": "Computational linguistics",
"volume": "22",
"issue": "1",
"pages": "39--71",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A.L. Berger, V.J. Della Pietra, and S.A. Della Pietra. 1996. A maximum entropy approach to natural language processing. Computational linguistics, 22(1):39-71.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "The second release of the RASP system",
"authors": [
{
"first": "T",
"middle": [],
"last": "Briscoe",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Carroll",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Watson",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the Interactive Demo Session of COLING/ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T. Briscoe, J. Carroll, and R. Watson. 2006. The sec- ond release of the RASP system. In Proceedings of the Interactive Demo Session of COLING/ACL, vol- ume 6.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Class-based n-gram models of natural language",
"authors": [
{
"first": "P",
"middle": [
"F"
],
"last": "Brown",
"suffix": ""
},
{
"first": "R",
"middle": [
"L"
],
"last": "Mercer",
"suffix": ""
},
{
"first": "V",
"middle": [
"J"
],
"last": "Della Pietra",
"suffix": ""
},
{
"first": "J",
"middle": [
"C"
],
"last": "Lai",
"suffix": ""
}
],
"year": 1992,
"venue": "Computational Linguistics",
"volume": "18",
"issue": "4",
"pages": "467--479",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "P.F. Brown, R.L. Mercer, V.J. Della Pietra, and J.C. Lai. 1992. Class-based n-gram models of natural lan- guage. Computational Linguistics, 18(4):467-479.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Semi-Supervised Learning",
"authors": [
{
"first": "O",
"middle": [],
"last": "Chapelle",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Sch\u00f6lkopf",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Zien",
"suffix": ""
}
],
"year": 2006,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "O. Chapelle, B. Sch\u00f6lkopf, and A. Zien, editors. 2006. Semi-Supervised Learning. MIT Press, Cambridge, MA.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Overview of MUC-7/MET-2",
"authors": [
{
"first": "N",
"middle": [
"A"
],
"last": "Chinchor",
"suffix": ""
}
],
"year": 1998,
"venue": "Proceedings of the Seventh Message Understanding Conference",
"volume": "1",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "N.A. Chinchor. 1998. Overview of MUC-7/MET-2. In Proceedings of the Seventh Message Understanding Conference (MUC-7), volume 1.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "A survey of current work in biomedical text mining",
"authors": [
{
"first": "A",
"middle": [
"M"
],
"last": "Cohen",
"suffix": ""
},
{
"first": "W",
"middle": [
"R"
],
"last": "Hersh",
"suffix": ""
}
],
"year": 2005,
"venue": "Briefings in Bioinformatics",
"volume": "6",
"issue": "1",
"pages": "57--71",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A.M. Cohen and W.R. Hersh. 2005. A survey of cur- rent work in biomedical text mining. Briefings in Bioinformatics, 6(1):57-71.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Elements of Information Theory",
"authors": [
{
"first": "T",
"middle": [
"M"
],
"last": "Cover",
"suffix": ""
},
{
"first": "J",
"middle": [
"A"
],
"last": "Thomas",
"suffix": ""
}
],
"year": 2006,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T.M. Cover and J.A. Thomas. 2006. Elements of In- formation Theory. Wiley-Interscience.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "The Latent Words Language Model",
"authors": [
{
"first": "Koen",
"middle": [],
"last": "Deschacht",
"suffix": ""
},
{
"first": "Marie-Francine",
"middle": [],
"last": "Moens",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the 18th Annual Belgian-Dutch Conference on Machine Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Koen Deschacht and Marie-Francine Moens. 2009. The Latent Words Language Model. In Proceed- ings of the 18th Annual Belgian-Dutch Conference on Machine Learning.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "The case for case",
"authors": [
{
"first": "C",
"middle": [
"J"
],
"last": "Fillmore",
"suffix": ""
}
],
"year": 1968,
"venue": "Universals in Linguistic Theory",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. J. Fillmore. 1968. The case for case. In E. Bach and R. Harms, editors, Universals in Linguistic Theory. Rinehart & Winston.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Semisupervised semantic role labeling",
"authors": [
{
"first": "Hagen",
"middle": [],
"last": "F\u00fcrstenau",
"suffix": ""
},
{
"first": "Mirella",
"middle": [],
"last": "Lapata",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the 12th Conference of the European Chapter of the ACL (EACL 2009)",
"volume": "",
"issue": "",
"pages": "220--228",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hagen F\u00fcrstenau and Mirella Lapata. 2009. Semi- supervised semantic role labeling. In Proceedings of the 12th Conference of the European Chapter of the ACL (EACL 2009), pages 220-228, Athens, Greece. Association for Computational Linguistics.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Automatic labeling of semantic roles",
"authors": [
{
"first": "D",
"middle": [],
"last": "Gildea",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Jurafsky",
"suffix": ""
}
],
"year": 2002,
"venue": "Computational Linguistics",
"volume": "28",
"issue": "3",
"pages": "245--288",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Gildea and D. Jurafsky. 2002. Automatic label- ing of semantic roles. Computational Linguistics, 28(3):245-288.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "A bit of progress in language modeling, extended version",
"authors": [
{
"first": "Joshua",
"middle": [
"T"
],
"last": "Goodman",
"suffix": ""
}
],
"year": 2001,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joshua T. Goodman. 2001. A bit of progress in lan- guage modeling, extended version. Technical re- port, Microsoft Research.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Explorations in automatic thesaurus discovery",
"authors": [
{
"first": "G",
"middle": [],
"last": "Grefenstette",
"suffix": ""
}
],
"year": 1994,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G. Grefenstette. 1994. Explorations in automatic the- saurus discovery. Springer.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "An Introduction to Functional Grammar",
"authors": [
{
"first": "M",
"middle": [
"A K"
],
"last": "Halliday",
"suffix": ""
}
],
"year": 1994,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M.A.K. Halliday. 1994. An Introduction to Functional Grammar (second edition). Edward Arnold, Lon- don.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Distributional structure. Word",
"authors": [
{
"first": "S",
"middle": [],
"last": "Zellig",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Harris",
"suffix": ""
}
],
"year": 1954,
"venue": "",
"volume": "10",
"issue": "",
"pages": "146--162",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zellig S. Harris. 1954. Distributional structure. Word, 10(23):146-162.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Self-training and Cotraining for Semantic Role Labeling: Primary Report",
"authors": [
{
"first": "S",
"middle": [],
"last": "He",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Gildea",
"suffix": ""
}
],
"year": 2006,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. He and D. Gildea. 2006. Self-training and Co- training for Semantic Role Labeling: Primary Re- port. Technical report. TR 891.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Dependency-based syntactic-semantic analysis with propbank and nombank",
"authors": [
{
"first": "Richard",
"middle": [],
"last": "Johansson",
"suffix": ""
},
{
"first": "Pierre",
"middle": [],
"last": "Nugues",
"suffix": ""
}
],
"year": 2008,
"venue": "CoNLL 2008: Proceedings of the Twelfth Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "183--187",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Richard Johansson and Pierre Nugues. 2008. Dependency-based syntactic-semantic analysis with propbank and nombank. In CoNLL 2008: Pro- ceedings of the Twelfth Conference on Computa- tional Natural Language Learning, pages 183-187, Manchester, England, August. Coling 2008 Orga- nizing Committee.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Simple semi-supervised dependency parsing",
"authors": [
{
"first": "T",
"middle": [],
"last": "Koo",
"suffix": ""
},
{
"first": "X",
"middle": [],
"last": "Carreras",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the Annual Meeting of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "595--603",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T. Koo, X. Carreras, and M. Collins. 2008. Simple semi-supervised dependency parsing. In Proceed- ings of the Annual Meeting of the Association for Computational Linguistics (ACL), pages 595-603.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Semantic role labeling using maximum entropy model",
"authors": [
{
"first": "J.-H",
"middle": [],
"last": "Lim",
"suffix": ""
},
{
"first": "Y.-S",
"middle": [],
"last": "Hwang",
"suffix": ""
},
{
"first": "S.-Y.",
"middle": [],
"last": "Park",
"suffix": ""
},
{
"first": "H.-C",
"middle": [],
"last": "Rim",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the Eighth Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "122--125",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J.-H. Lim, Y.-S. Hwang, S.-Y. Park, and H.-C. Rim. 2004. Semantic role labeling using maximum en- tropy model. In Proceedings of the Eighth Confer- ence on Computational Natural Language Learning, pages 122-125, Boston, Massachusetts, USA. ACL.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Using syntactic dependency as local context to resolve word sense ambiguity",
"authors": [
{
"first": "D",
"middle": [],
"last": "Lin",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of the 35th Annual Meeting of the Association for Computational Linguistics",
"volume": "35",
"issue": "",
"pages": "64--71",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Lin. 1997. Using syntactic dependency as local context to resolve word sense ambiguity. In Pro- ceedings of the 35th Annual Meeting of the Asso- ciation for Computational Linguistics, volume 35, pages 64-71. ACL.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Automatic retrieval and clustering of similar words",
"authors": [
{
"first": "Dekang",
"middle": [],
"last": "Lin",
"suffix": ""
}
],
"year": 1998,
"venue": "Proceedings of the 17th international conference on Computational Linguistics",
"volume": "",
"issue": "",
"pages": "768--774",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dekang Lin. 1998. Automatic retrieval and clustering of similar words. In Proceedings of the 17th inter- national conference on Computational Linguistics, pages 768-774. Association for Computational Lin- guistics Morristown, NJ, USA.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Simple, robust, scalable semi-supervised learning via expectation regularization",
"authors": [
{
"first": "G",
"middle": [
"S"
],
"last": "Mann",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Mccallum",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the 24th International Conference on Machine Learning",
"volume": "",
"issue": "",
"pages": "593--600",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G.S. Mann and A. McCallum. 2007. Simple, ro- bust, scalable semi-supervised learning via expecta- tion regularization. In Proceedings of the 24th In- ternational Conference on Machine Learning, pages 593-600. ACM Press New York, USA.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "SPMT: Statistical machine translation with syntactified target language phrases",
"authors": [
{
"first": "D",
"middle": [],
"last": "Marcu",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Echihabi",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Knight",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the Conference on Empirical Methods for Natural Language Processing",
"volume": "",
"issue": "",
"pages": "44--52",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Marcu, W. Wang, A. Echihabi, and K. Knight. 2006. SPMT: Statistical machine translation with syntact- ified target language phrases. In Proceedings of the Conference on Empirical Methods for Natural Lan- guage Processing, pages 44-52.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Testing the distributional hypothesis: The influence of context on judgements of semantic similarity",
"authors": [
{
"first": "S",
"middle": [],
"last": "Mcdonald",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Ramscar",
"suffix": ""
}
],
"year": 2001,
"venue": "Proceedings of the 23rd Annual Conference of the Cognitive Science Society",
"volume": "",
"issue": "",
"pages": "611--616",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. McDonald and M. Ramscar. 2001. Testing the dis- tributional hypothesis: The influence of context on judgements of semantic similarity. In Proceedings of the 23rd Annual Conference of the Cognitive Sci- ence Society, pages 611-616.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Labeling generic semantic roles",
"authors": [
{
"first": "Dennis",
"middle": [],
"last": "Mehay",
"suffix": ""
},
{
"first": "Rik",
"middle": [
"De"
],
"last": "Busser",
"suffix": ""
},
{
"first": "Marie-Francine",
"middle": [],
"last": "Moens",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the Sixth International Workshop on Computational Semantics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dennis Mehay, Rik De Busser, and Marie-Francine Moens. 2005. Labeling generic semantic roles. In Proceedings of the Sixth International Workshop on Computational Semantics.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "MaltParser: A datadriven parser-generator for dependency parsing",
"authors": [
{
"first": "J",
"middle": [],
"last": "Nivre",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Hall",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Nilsson",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the Fifth International Conference on Language Resources and Evaluation",
"volume": "",
"issue": "",
"pages": "2216--2219",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Nivre, J. Hall, and J. Nilsson. 2006. MaltParser: A datadriven parser-generator for dependency parsing. In Proceedings of the Fifth International Confer- ence on Language Resources and Evaluation, pages 2216-2219.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "The proposition bank: An annotated corpus of semantic roles",
"authors": [
{
"first": "M",
"middle": [],
"last": "Palmer",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Gildea",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Kingsbury",
"suffix": ""
}
],
"year": 2005,
"venue": "Computational Linguistics",
"volume": "31",
"issue": "1",
"pages": "71--106",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Palmer, D. Gildea, and P. Kingsbury. 2005. The proposition bank: An annotated corpus of semantic roles. Computational Linguistics, 31(1):71-106.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Shallow semantic parsing using support vector machines",
"authors": [
{
"first": "S",
"middle": [],
"last": "Pradhan",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Ward",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Hacioglu",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Martin",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Jurafsky",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the Human Language Technology Conference/North American chapter of the Association of Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Pradhan, W. Ward, K. Hacioglu, J. Martin, and D. Jurafsky. 2004. Shallow semantic parsing using support vector machines. In Proceedings of the Hu- man Language Technology Conference/North Amer- ican chapter of the Association of Computational Linguistics, Boston, MA.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "A maximum entropy model for part-of-speech tagging",
"authors": [
{
"first": "A",
"middle": [],
"last": "Ratnaparkhi",
"suffix": ""
}
],
"year": 1996,
"venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "133--142",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Ratnaparkhi. 1996. A maximum entropy model for part-of-speech tagging. In Proceedings of the Con- ference on Empirical Methods in Natural Language Processing, pages 133-142. Association for Com- putational Linguistics.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "Using predicate-argument structures for information extraction",
"authors": [
{
"first": "M",
"middle": [],
"last": "Surdeanu",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Harabagiu",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Williams",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Aarseth",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the 41st Annual Meeting on Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "8--15",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Surdeanu, S. Harabagiu, J. Williams, and P. Aarseth. 2003. Using predicate-argument struc- tures for information extraction. In Proceedings of the 41st Annual Meeting on Association for Compu- tational Linguistics, pages 8-15.",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "Unsupervised semantic role labelling",
"authors": [
{
"first": "R",
"middle": [
"S"
],
"last": "Swier",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Stevenson",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the 2004 Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "95--102",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R.S. Swier and S. Stevenson. 2004. Unsupervised se- mantic role labelling. In Proceedings of the 2004 Conference on Empirical Methods in Natural Lan- guage Processing, pages 95-102.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "A generative model for FrameNet semantic role labeling",
"authors": [
{
"first": "C",
"middle": [],
"last": "Thompson",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Levy",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Manning",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the 14th European Conference on Machine Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. Thompson, R. Levy, and C. Manning. 2006. A gen- erative model for FrameNet semantic role labeling . In Proceedings of the 14th European Conference on Machine Learning, Cavtat-Dubrovnik, Croatia.",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "Calibrating features for semantic role labeling",
"authors": [
{
"first": "N",
"middle": [],
"last": "Xue",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Palmer",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing",
"volume": "4",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "N. Xue and M. Palmer. 2004. Calibrating features for semantic role labeling. In Proceedings of the Con- ference on Empirical Methods in Natural Language Processing, volume 4.",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "Semi-supervised learning literature survey",
"authors": [
{
"first": "X",
"middle": [],
"last": "Zhu",
"suffix": ""
}
],
"year": 2005,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "X. Zhu. 2005. Semi-supervised learning literature sur- vey. Technical Report 1530, Computer Sciences, University of Wisconsin-Madison.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"num": null,
"text": "Discriminative model for SRL. Grey circles represent observed variables, white circles hidden variables and arrows directed dependencies. s ranges over all sentences in the corpus and j over the n words in the sentence.",
"type_str": "figure"
}
}
}
} |