File size: 63,347 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 |
{
"paper_id": "D09-1000",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T16:39:07.104454Z"
},
"title": "Unsupervised Semantic Parsing",
"authors": [
{
"first": "Ahmed",
"middle": [],
"last": "Abbasi",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Eugene",
"middle": [],
"last": "Agichtein",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Amr",
"middle": [],
"last": "Ahmed",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ben",
"middle": [],
"last": "Allison",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yasemin",
"middle": [],
"last": "Altun",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Alina",
"middle": [],
"last": "Andreevskaia",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Shlomo",
"middle": [],
"last": "Argamon",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Abhishek",
"middle": [],
"last": "Arun",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jordi",
"middle": [],
"last": "Atserias",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Necip",
"middle": [],
"last": "Fazil",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ayan",
"middle": [
"Timothy"
],
"last": "Baldwim",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Srinivas",
"middle": [],
"last": "Bangalore",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Roy",
"middle": [],
"last": "Bar-Haim",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Regina",
"middle": [],
"last": "Barzilay",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Roberto",
"middle": [],
"last": "Basili",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sabine",
"middle": [],
"last": "Bergler",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Steven",
"middle": [],
"last": "Bethard",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rahul",
"middle": [],
"last": "Bhagat",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Chris",
"middle": [],
"last": "Biemann",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Birch",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Phil",
"middle": [],
"last": "Blunsom",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Dan",
"middle": [],
"last": "Bohus",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gemma",
"middle": [],
"last": "Boleda",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Johan",
"middle": [],
"last": "Bos",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Alexandre",
"middle": [],
"last": "Bouchard-C\u00f4t\u00e9",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Thorsten",
"middle": [],
"last": "Brants",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Eric",
"middle": [],
"last": "Breck",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sam",
"middle": [],
"last": "Brody",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Susan",
"middle": [],
"last": "Brown",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Paul",
"middle": [],
"last": "Buitelaar",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Razvan",
"middle": [],
"last": "Bunescu",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Aljoscha",
"middle": [],
"last": "Burchardt",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jill",
"middle": [],
"last": "Burstein",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Bill",
"middle": [],
"last": "Byrne",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Chris",
"middle": [],
"last": "Callison-Burch",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Nicola",
"middle": [],
"last": "Cancedda",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yunbo",
"middle": [],
"last": "Cao",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Guiseppe",
"middle": [],
"last": "Carenini",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marine",
"middle": [],
"last": "Carpuat",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Xavier",
"middle": [],
"last": "Carreras",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "John",
"middle": [],
"last": "Carroll",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Vitor",
"middle": [],
"last": "Carvalho",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Francisco",
"middle": [],
"last": "Casacuberta",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mauro",
"middle": [],
"last": "Cettolo",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Nate",
"middle": [],
"last": "Chambers",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yee",
"middle": [
"Seng"
],
"last": "Chan",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Pi-Chuan",
"middle": [],
"last": "Chang",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Karen",
"middle": [],
"last": "Livescu",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Wolfgang",
"middle": [],
"last": "Macherey",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Nitin",
"middle": [],
"last": "Madnani",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rob",
"middle": [],
"last": "Malouf",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gideon",
"middle": [],
"last": "Mann",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Chris",
"middle": [],
"last": "Manning",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Marcu",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Katja",
"middle": [],
"last": "Markert",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "David",
"middle": [],
"last": "Martinez",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Andre",
"middle": [],
"last": "Martins",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yuji",
"middle": [],
"last": "Matsumoto",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Takuya",
"middle": [],
"last": "Matsuzaki",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mark",
"middle": [],
"last": "Maybury",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Mccallum",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Diana",
"middle": [],
"last": "Mccarthy",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ryan",
"middle": [],
"last": "Mcdonald",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kathy",
"middle": [],
"last": "Mckeown",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Qiaozhu",
"middle": [],
"last": "Mei",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Arul",
"middle": [],
"last": "Menezes",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Florian",
"middle": [],
"last": "Metze",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Donald",
"middle": [],
"last": "Metzler",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Haitao",
"middle": [],
"last": "Mi",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Einat",
"middle": [],
"last": "Minkov",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Shachar",
"middle": [],
"last": "Mirkin",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jeff",
"middle": [],
"last": "Mitchell",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Vibhu",
"middle": [],
"last": "Mittal",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yusuke",
"middle": [],
"last": "Miyao",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marie-Francine",
"middle": [],
"last": "Moens",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Saif",
"middle": [],
"last": "Mohammad",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Christof",
"middle": [],
"last": "Monz",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Tsun",
"middle": [],
"last": "Moon",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Raymond",
"middle": [],
"last": "Mooney",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Robert",
"middle": [],
"last": "Moore",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Alessandro",
"middle": [],
"last": "Moschitti",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Tony",
"middle": [],
"last": "Mullen",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Smaranda",
"middle": [],
"last": "Muresan",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gabriel",
"middle": [],
"last": "Murray",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gabriele",
"middle": [],
"last": "Musillo",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sung-Hyon",
"middle": [],
"last": "Myaeng",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mikio",
"middle": [],
"last": "Nakano",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Preslav",
"middle": [],
"last": "Nakov",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Su",
"middle": [
"Nam"
],
"last": "Kim",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Alexis",
"middle": [],
"last": "Nasr",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Tetsuya",
"middle": [],
"last": "Nasukawa",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Roberto",
"middle": [],
"last": "Navigli",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mark-Jan",
"middle": [],
"last": "Nederhof",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ani",
"middle": [],
"last": "Nenkova",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gunther",
"middle": [],
"last": "Neumann",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Hwee",
"middle": [
"Tou"
],
"last": "Ng",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Vincent",
"middle": [],
"last": "Ng",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Nicolas",
"middle": [],
"last": "Nicolov",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rodney",
"middle": [],
"last": "Nielsen",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Tadashi",
"middle": [],
"last": "Nomoto",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Franz",
"middle": [],
"last": "Och",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kemal",
"middle": [],
"last": "Oflazer",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Manubu",
"middle": [],
"last": "Okumura",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jahna",
"middle": [],
"last": "Otterbacher",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Iadh",
"middle": [],
"last": "Ounis",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ulrike",
"middle": [],
"last": "Pado",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Lluis",
"middle": [],
"last": "Padro",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Bo",
"middle": [],
"last": "Pang",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Patrick",
"middle": [],
"last": "Pantel",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Fuchun",
"middle": [],
"last": "Peng",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marco",
"middle": [],
"last": "Pennacchiotti",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Slav",
"middle": [],
"last": "Petrov",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Emanuele",
"middle": [],
"last": "Pianta",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Olivier",
"middle": [],
"last": "Pietquin",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Daniele",
"middle": [],
"last": "Pighin",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Elias",
"middle": [],
"last": "Ponvert",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Simone",
"middle": [],
"last": "Ponzetto",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ana-Maria",
"middle": [],
"last": "Popescu",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marius",
"middle": [],
"last": "Popescu",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Maja",
"middle": [],
"last": "Popovi\u0107",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Victor",
"middle": [],
"last": "Poznanski",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "John",
"middle": [],
"last": "Prager",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rashmi",
"middle": [],
"last": "Prasad",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Partha",
"middle": [],
"last": "Pratim Talukdar",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Matthew",
"middle": [],
"last": "Purver",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Silvia",
"middle": [],
"last": "Quarteroni",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Chris",
"middle": [],
"last": "Quirk",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Stephan",
"middle": [],
"last": "Raaijmakers",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Dan",
"middle": [],
"last": "Ramage",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Owen",
"middle": [],
"last": "Rambow",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Delip",
"middle": [],
"last": "Rao",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ari",
"middle": [],
"last": "Rappoport",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Deepak",
"middle": [],
"last": "Ravichandran",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Roi",
"middle": [],
"last": "Reichart",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sebastian",
"middle": [],
"last": "Riedel",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Stefan",
"middle": [],
"last": "Riezler",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "German",
"middle": [],
"last": "Rigau",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Michael",
"middle": [],
"last": "Riley",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Hae-Chang",
"middle": [],
"last": "Rim",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Laura",
"middle": [],
"last": "Rimell",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Brian",
"middle": [],
"last": "Roark",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Paolo",
"middle": [],
"last": "Rosso",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Antti-Veikko",
"middle": [],
"last": "Rosti",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Alex",
"middle": [],
"last": "Rudnicky",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Anna",
"middle": [],
"last": "Rumshisky",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Vasile",
"middle": [],
"last": "Rus",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Hoifung",
"middle": [],
"last": "Poon",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Hai",
"middle": [],
"last": "Zhao",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Wenliang",
"middle": [],
"last": "Chen",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Fabio",
"middle": [
"Massimo"
],
"last": "Zanzotto",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Lorenzo",
"middle": [],
"last": "Dell",
"suffix": "",
"affiliation": {},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "",
"pdf_parse": {
"paper_id": "D09-1000",
"_pdf_hash": "",
"abstract": [],
"body_text": [
{
"text": "Welcome to the 2009 Conference on Empirical Methods in Natural Language Processing! The conference is organized under the auspices of SIGDAT, the ACL Special Interest Group for linguistic data and corpus-based approaches to natural language processing. It is co-located this year with ACL-IJCNLP 2009 in Singapore.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "EMNLP received 475 submissions, a new record. We were able to accept 163 papers in total (an acceptance rate of 34%). Of these, 96 (20%) were accepted for oral presentation, and 67 (14%) for poster presentation. The papers were selected by a program committee of 15 area chairs, from Asia, Europe, and North America, assisted by a panel of 389 reviewers. This year EMNLP again held an author response period. Authors were able to read and respond to the reviews of their paper before the program committee made a final decision. They were asked to correct factual errors in the reviews and answer questions raised in the reviewer comments.The intention was to help produce more accurate reviews. In some cases, reviewers changed their scores in view of the authors response and the area chairs read all responses carefully prior to making recommendations for acceptance.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "First and foremost, we would like to thank the authors who submitted their work to EMNLP. The sheer number of submissions reflects how broad and active our field is. We are deeply indebted to the area chairs and the reviewers for their hard work. They enabled us to select an exciting program and to provide valuable feedback to the authors. Additional thanks to the Publications Chair, David Chiang, who put this volume together. Jason Eisner helped us immensely by compiling a web site on \"How to Serve as Program Chair of a Conference.\" 1 Special thanks to David Yarowsky and Ken Church of SIGDAT who provided much valuable advice and assistance over the past months. We are akso grateful for the financial support from Microsoft. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Convolution Kernels on Constituent, Dependency and Sequential Structures for Relation Extraction Truc-Vien T",
"authors": [
{
"first": "Alessandro",
"middle": [],
"last": "Nguyen",
"suffix": ""
},
{
"first": "Giuseppe",
"middle": [],
"last": "Moschitti",
"suffix": ""
},
{
"first": "",
"middle": [
". . . . . . . . . . . . . . . . . . ."
],
"last": "Riccardi",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Convolution Kernels on Constituent, Dependency and Sequential Structures for Relation Extraction Truc-Vien T. Nguyen, Alessandro Moschitti and Giuseppe Riccardi . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Automatic Acquisition of the Argument-Predicate Relations from a Frame-Annotated Corpus Ekaterina Ovchinnikova",
"authors": [
{
"first": "Theodore",
"middle": [],
"last": "Alexandrov",
"suffix": ""
},
{
"first": "Tonio",
"middle": [
". . . . . . . . . . . . . . ."
],
"last": "Wandmacher",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Automatic Acquisition of the Argument-Predicate Relations from a Frame-Annotated Corpus Ekaterina Ovchinnikova, Theodore Alexandrov and Tonio Wandmacher . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Detecting Speculations and their Scopes in Scientific Text Arzucan\u00d6zg\u00fcr and Dragomir R",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Detecting Speculations and their Scopes in Scientific Text Arzucan\u00d6zg\u00fcr and Dragomir R. Radev . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Cross-Cultural Analysis of Blogs and Forums with Mixed-Collection Topic Models Michael",
"authors": [
{
"first": "Roxana",
"middle": [],
"last": "Paul",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "Girju",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Cross-Cultural Analysis of Blogs and Forums with Mixed-Collection Topic Models Michael Paul and Roxana Girju . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Consensus Training for Consensus Decoding in Machine Translation Adam Pauls",
"authors": [
{
"first": "John",
"middle": [],
"last": "Denero",
"suffix": ""
},
{
"first": "Dan",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Consensus Training for Consensus Decoding in Machine Translation Adam Pauls, John Denero and Dan Klein . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Sense Disambiguation Methods to Classify Web Queries by Intent Emily Pitler and",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Using Word-Sense Disambiguation Methods to Classify Web Queries by Intent Emily Pitler and Ken Church . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Semi-Supervised Learning for Semantic Relation Classification using Stratified Sampling Strategy Longhua Qian, Guodong Zhou, Fang Kong and Qiaoming Zhu",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Semi-Supervised Learning for Semantic Relation Classification using Stratified Sampling Strategy Longhua Qian, Guodong Zhou, Fang Kong and Qiaoming Zhu . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Construction of a Blog Emotion Corpus for Chinese Emotional Expression Analysis Changqin Quan and Fuji Ren",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Construction of a Blog Emotion Corpus for Chinese Emotional Expression Analysis Changqin Quan and Fuji Ren . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "A Probabilistic Model for Associative Anaphora Resolution Ryohei",
"authors": [
{
"first": "Sadao",
"middle": [],
"last": "Sasano",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "Kurohashi",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A Probabilistic Model for Associative Anaphora Resolution Ryohei Sasano and Sadao Kurohashi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Quantifier Scope Disambiguation Using Extracted Pragmatic Knowledge: Preliminary Results Prakash",
"authors": [
{
"first": "Alexander",
"middle": [],
"last": "Srinivasan",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "Yates",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Quantifier Scope Disambiguation Using Extracted Pragmatic Knowledge: Preliminary Results Prakash Srinivasan and Alexander Yates . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Discovery of Term Variation in Japanese Web Search Queries Hisami",
"authors": [
{
"first": "Xiao",
"middle": [],
"last": "Suzuki",
"suffix": ""
},
{
"first": "Jianfeng",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "Gao",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Discovery of Term Variation in Japanese Web Search Queries Hisami Suzuki, Xiao Li and Jianfeng Gao . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Towards Domain-Independent Argumentative Zoning: Evidence from Chemistry and Computational Linguistics Simone Teufel",
"authors": [
{
"first": "Colin",
"middle": [],
"last": "Batchelor",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Towards Domain-Independent Argumentative Zoning: Evidence from Chemistry and Computational Lin- guistics Simone Teufel, Advaith Siddharthan and Colin Batchelor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Character-level Analysis of Semi-Structured Documents for Set Expansion",
"authors": [
{
"first": "C",
"middle": [],
"last": "Richard",
"suffix": ""
},
{
"first": "William",
"middle": [
"W"
],
"last": "Wang",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "Cohen",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Character-level Analysis of Semi-Structured Documents for Set Expansion Richard C. Wang and William W. Cohen . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Classifying Relations for Biomedical Named Entity Disambiguation Xinglong Wang, Jun'ichi Tsujii and",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Classifying Relations for Biomedical Named Entity Disambiguation Xinglong Wang, Jun'ichi Tsujii and Sophia Ananiadou . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Phrase Dependency Parsing for Opinion Mining Yuanbin",
"authors": [
{
"first": "Qi",
"middle": [],
"last": "Wu",
"suffix": ""
},
{
"first": "Xuangjing",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Lide",
"middle": [],
"last": "Huang",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "Wu",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Phrase Dependency Parsing for Opinion Mining Yuanbin Wu, Qi Zhang, Xuangjing Huang and Lide Wu . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Polynomial to Linear: Efficient Classification with Conjunctive Features Naoki Yoshinaga and",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Polynomial to Linear: Efficient Classification with Conjunctive Features Naoki Yoshinaga and Masaru Kitsuregawa . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Adapting a Polarity Lexicon using Integer Linear Programming for Domain-Specific Sentiment Classification Yejin Choi and Claire Cardie",
"authors": [
{
"first": ";",
"middle": [],
"last": "Friday",
"suffix": ""
},
{
"first": "Hideki",
"middle": [],
"last": "Suzuki",
"suffix": ""
},
{
"first": "Xavier",
"middle": [],
"last": "Isozaki",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Carreras",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2009,
"venue": "10 Improving Web Search Relevance with Semantic Features Yumao Lu, Fuchun Peng, Gilad Mishne, Xing Wei and Benoit Dumoulin Session 5C (MR209): Phonology and Morphology",
"volume": "8",
"issue": "",
"pages": "45--57",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Friday, August 07, 2009 (continued) Session 4D (MR203): Syntax and Parsing I 8:45-9:10 An Empirical Study of Semi-supervised Structured Conditional Models for Dependency Parsing Jun Suzuki, Hideki Isozaki, Xavier Carreras and Michael Collins 9:10-9:35 Statistical Bistratal Dependency Parsing Richard Johansson 9:35-10:00 Improving Dependency Parsing with Subtrees from Auto-Parsed Data Wenliang Chen, Jun'ichi Kazama, Kiyotaka Uchimoto and Kentaro Torisawa 10:00-10:30 Coffee Break Session 5A (Theatre): Subjectivity and Sentiment II 10:30-10:55 Topic-wise, Sentiment-wise, or Otherwise? Identifying the Hidden Dimension for Unsu- pervised Text Classification Sajib Dasgupta and Vincent Ng 10:55-11:20 Adapting a Polarity Lexicon using Integer Linear Programming for Domain-Specific Sen- timent Classification Yejin Choi and Claire Cardie 11:20-11:45 Generating High-Coverage Semantic Orientation Lexicons From Overtly Marked Words and a Thesaurus Saif Mohammad, Cody Dunne and Bonnie Dorr 11:45-12:10 Matching Reviews to Objects using a Language Model Nilesh Dalvi, Ravi Kumar, Bo Pang and Andrew Tomkins xxxi Friday, August 07, 2009 (continued) Session 5B (MR208): Lexical Semantics II 10:30-10:55 EEG Responds to Conceptual Stimuli and Corpus Semantics Brian Murphy, Marco Baroni and Massimo Poesio 10:55-11:20 A Comparison of Windowless and Window-Based Computational Association Measures as Predictors of Syntagmatic Human Associations Justin Washtell and Katja Markert 11:20-11:45 Improving Verb Clustering with Automatically Acquired Selectional Preferences Lin Sun and Anna Korhonen 11:45-12:10 Improving Web Search Relevance with Semantic Features Yumao Lu, Fuchun Peng, Gilad Mishne, Xing Wei and Benoit Dumoulin Session 5C (MR209): Phonology and Morphology 10:30-10:55 Can Chinese Phonemes Improve Machine Transliteration?: A Comparative Study of English-to-Chinese Transliteration Models Jong-Hoon Oh, Kiyotaka Uchimoto and Kentaro Torisawa 10:55-11:20 Unsupervised Morphological Segmentation and Clustering with Document Boundaries Taesun Moon, Katrin Erk and Jason Baldridge 11:20-11:45 The Infinite HMM for Unsupervised PoS Tagging Jurgen Van Gael, Andreas Vlachos and Zoubin Ghahramani 11:45-12:10 A Simple Unsupervised Learner for POS Disambiguation Rules Given Only a Minimal Lexicon Qiuye Zhao and Mitch Marcus xxxii",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": ":15 Word Buffering Models for Improved Speech Repair Parsing Tim Miller 14:15-14:40 Less is More: Significance-Based N-gram Selection for Smaller, Better Language Models Robert C. Moore and Chris Quirk 14:40-15:05 Stream-based Randomised Language Models for SMT Abby Levenberg and Miles Osborne 15:05-15:30 Integrating Sentence-and Word-level Error Identification for",
"authors": [
{
"first": "I",
"middle": [],
"last": "Friday ; Antti-Veikko",
"suffix": ""
},
{
"first": "Bing",
"middle": [],
"last": "Rosti",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2009,
"venue": "15 Estimating Semantic Distance Using Soft Semantic Constraints in Knowledge-Source -Corpus Hybrid Models Yuval Marton",
"volume": "10",
"issue": "",
"pages": "5--15",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Friday, August 07, 2009 (continued) Session 5D (MR203): Machine Translation IV 10:30-10:55 Tree Kernel-based SVM with Structured Syntactic Knowledge for BTG-based Phrase Re- ordering Min Zhang and Haizhou Li 10:55-11:20 Discriminative Corpus Weight Estimation for Machine Translation Spyros Matsoukas, Antti-Veikko I. Rosti and Bing Zhang 11:20-11:45 Unsupervised Tokenization for Machine Translation Tagyoung Chung and Daniel Gildea 11:45-12:10 Synchronous Tree Adjoining Machine Translation Steve DeNeefe and Kevin Knight 12:10-13:50 Lunch Session 6A (Theatre): Speech and Language Modeling 13:50-14:15 Word Buffering Models for Improved Speech Repair Parsing Tim Miller 14:15-14:40 Less is More: Significance-Based N-gram Selection for Smaller, Better Language Models Robert C. Moore and Chris Quirk 14:40-15:05 Stream-based Randomised Language Models for SMT Abby Levenberg and Miles Osborne 15:05-15:30 Integrating Sentence-and Word-level Error Identification for Disfluency Correction Erin Fitzgerald, Frederick Jelinek and Keith Hall Friday, August 07, 2009 (continued) Session 6B (MR208): Semantic Similarity 13:50-14:15 Estimating Semantic Distance Using Soft Semantic Constraints in Knowledge-Source - Corpus Hybrid Models Yuval Marton, Saif Mohammad and Philip Resnik 14:15-14:40 Recognizing Textual Relatedness with Predicate-Argument Structures Rui Wang and Yi Zhang 14:40-15:05 Learning Term-weighting Functions for Similarity Measures Wen-tau Yih 15:05-15:30 A Relational Model of Semantic Similarity between Words using Automatically Extracted Lexical Pattern Clusters from the Web Danushka Bollegala, Yutaka Matsuo and Mitsuru Ishizuka Session 6C (MR209): Syntax and Parsing II 13:50-14:15 Unbounded Dependency Recovery for Parser Evaluation Laura Rimell, Stephen Clark and Mark Steedman 14:15-14:40 Parser Adaptation and Projection with Quasi-Synchronous Grammar Features David A. Smith and Jason Eisner 14:40-15:05 Self-Training PCFG Grammars with Latent Annotations Across Languages Zhongqiang Huang and Mary Harper 15:05-15:30 An Alternative to Head-Driven Approaches for Parsing a (Relatively) Free Word-Order Language Reut Tsarfaty, Khalil Sima'an and Remko Scha xxxiv",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "50 Statistical Estimation of Word Acquisition with Application to Readability Prediction Paul Kidwell",
"authors": [
{
"first": "",
"middle": [],
"last": "Friday",
"suffix": ""
}
],
"year": 2009,
"venue": "40 Reading to Learn: Constructing Features from Semantic Abstracts Jacob Eisenstein, James Clarke, Dan Goldwasser and Dan Roth Session 7C (MR209): Coreference Resolution",
"volume": "15",
"issue": "",
"pages": "15--17",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Friday, August 07, 2009 (continued) Session 6D (MR203): Multilinguality 13:50-14:15 Enhancement of Lexical Concepts Using Cross-lingual Web Mining Dmitry Davidov and Ari Rappoport 14:15-14:40 Bilingual Dictionary Generation for Low-resourced Language Pairs Istv\u00e1n Varga and Shoichi Yokoyama 14:40-15:05 Multilingual Spectral Clustering Using Document Similarity Propagation Dani Yogatama and Kumiko Tanaka-Ishii 15:05-15:30 Polylingual Topic Models David Mimno, Hanna M. Wallach, Jason Naradowsky, David A. Smith and Andrew Mc- Callum 15:30-16:00 Coffee Break Session 7A (Theatre): Natural Language Applications 16:00-16:25 Using the Web for Language Independent Spellchecking and Autocorrection Casey Whitelaw, Ben Hutchinson, Grace Y Chung and Ged Ellis 16:25-16:50 Statistical Estimation of Word Acquisition with Application to Readability Prediction Paul Kidwell, Guy Lebanon and Kevyn Collins-Thompson 16:50-17:15 Combining Collocations, Lexical and Encyclopedic Knowledge for Metonymy Resolution Vivi Nastase and Michael Strube 17:15-17:40 Segmenting Email Message Text into Zones Andrew Lampert, Robert Dale and C\u00e9cile Paris xxxv Friday, August 07, 2009 (continued) Session 7B (MR208): Lexical Semantics III 16:00-16:25 Hypernym Discovery Based on Distributional Similarity and Hierarchical Structures Ichiro Yamada, Kentaro Torisawa, Jun'ichi Kazama, Kow Kuroda, Masaki Murata, Stijn De Saeger, Francis Bond and Asuka Sumida 16:25-16:50 Web-Scale Distributional Similarity and Entity Set Expansion Patrick Pantel, Eric Crestan, Arkady Borkovsky, Ana-Maria Popescu and Vishnu Vyas 16:50-17:15 Toward Completeness in Concept Extraction and Classification Eduard Hovy, Zornitsa Kozareva and Ellen Riloff 17:15-17:40 Reading to Learn: Constructing Features from Semantic Abstracts Jacob Eisenstein, James Clarke, Dan Goldwasser and Dan Roth Session 7C (MR209): Coreference Resolution 16:00-16:25 Supervised Models for Coreference Resolution Altaf Rahman and Vincent Ng 16:25-16:50 Global Learning of Noun Phrase Anaphoricity in Coreference Resolution via Label Prop- agation GuoDong Zhou and Fang Kong 16:50-17:15 Employing the Centering Theory in Pronoun Resolution from the Semantic Perspective Fang Kong, GuoDong Zhou and Qiaoming Zhu 17:15-17:40 Person Cross Document Coreference with Name Perplexity Estimates Octavian Popescu xxxvi",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "15 Sinuhe -Statistical Machine Translation using a Globally Trained Conditional Exponential Family Translation Model Matti K\u00e4\u00e4ri\u00e4inen",
"authors": [
{
"first": "",
"middle": [],
"last": "Friday",
"suffix": ""
}
],
"year": 2009,
"venue": "",
"volume": "16",
"issue": "",
"pages": "15--17",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Friday, August 07, 2009 (continued) Session 7D (MR203): Machine Translation V 16:00-16:25 Learning Linear Ordering Problems for Better Translation Roy Tromble and Jason Eisner 16:25-16:50 Weighted Alignment Matrices for Statistical Machine Translation Yang Liu, Tian Xia, Xinyan Xiao and Qun Liu 16:50-17:15 Sinuhe -Statistical Machine Translation using a Globally Trained Conditional Exponen- tial Family Translation Model Matti K\u00e4\u00e4ri\u00e4inen 17:15-17:40 Fast Translation Rule Matching for Syntax-based Statistical Machine Translation Hui Zhang, Min Zhang, Haizhou Li and Chew Lim Tan",
"links": null
}
},
"ref_entries": {
"TABREF0": {
"text": "Supervised and Unsupervised Methods in Employing Discourse Relations for Improving Opinion Polarity Classification Swapna Somasundaran, Galileo Namata, Janyce Wiebe and Lise Getoor . . . . . . . . . . . . . . . . . . . . 170 Sentiment Analysis of Conditional Sentences Ramanathan Narayanan, Bing Liu and Alok Choudhary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 180 Subjectivity Word Sense Disambiguation Cem Akkaya, Janyce Wiebe and Rada Mihalcea . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190",
"type_str": "table",
"html": null,
"content": "<table/>",
"num": null
}
}
}
} |