File size: 104,222 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 | {
"paper_id": "P13-1014",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T09:35:46.488372Z"
},
"title": "A Transition-Based Dependency Parser Using a Dynamic Parsing Strategy",
"authors": [
{
"first": "Francesco",
"middle": [],
"last": "Sartorio",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Padua",
"location": {
"country": "Italy"
}
},
"email": "sartorio@dei.unipd.it"
},
{
"first": "Giorgio",
"middle": [],
"last": "Satta",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Padua",
"location": {
"country": "Italy"
}
},
"email": "satta@dei.unipd.it"
},
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Uppsala University",
"location": {
"country": "Sweden"
}
},
"email": "joakim.nivre@lingfil.uu.se"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "We present a novel transition-based, greedy dependency parser which implements a flexible mix of bottom-up and top-down strategies. The new strategy allows the parser to postpone difficult decisions until the relevant information becomes available. The novel parser has a \u223c12% error reduction in unlabeled attachment score over an arc-eager parser, with a slowdown factor of 2.8.",
"pdf_parse": {
"paper_id": "P13-1014",
"_pdf_hash": "",
"abstract": [
{
"text": "We present a novel transition-based, greedy dependency parser which implements a flexible mix of bottom-up and top-down strategies. The new strategy allows the parser to postpone difficult decisions until the relevant information becomes available. The novel parser has a \u223c12% error reduction in unlabeled attachment score over an arc-eager parser, with a slowdown factor of 2.8.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Dependency-based methods for syntactic parsing have become increasingly popular during the last decade or so. This development is probably due to many factors, such as the increased availability of dependency treebanks and the perceived usefulness of dependency structures as an interface to downstream applications, but a very important reason is also the high efficiency offered by dependency parsers, enabling web-scale parsing with high throughput. The most efficient parsers are greedy transition-based parsers, which only explore a single derivation for each input and relies on a locally trained classifier for predicting the next parser action given a compact representation of the derivation history, as pioneered by Yamada and Matsumoto (2003) , Nivre (2003) , Attardi (2006) , and others. However, while these parsers are capable of processing tens of thousands of tokens per second with the right choice of classifiers, they are also known to perform slightly below the state-ofthe-art because of search errors and subsequent error propagation (McDonald and Nivre, 2007) , and recent research on transition-based dependency parsing has therefore explored different ways of improving their accuracy.",
"cite_spans": [
{
"start": 726,
"end": 753,
"text": "Yamada and Matsumoto (2003)",
"ref_id": "BIBREF18"
},
{
"start": 756,
"end": 768,
"text": "Nivre (2003)",
"ref_id": "BIBREF13"
},
{
"start": 771,
"end": 785,
"text": "Attardi (2006)",
"ref_id": "BIBREF0"
},
{
"start": 1056,
"end": 1082,
"text": "(McDonald and Nivre, 2007)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The most common approach is to use beam search instead of greedy decoding, in combination with a globally trained model that tries to minimize the loss over the entire sentence instead of a locally trained classifier that tries to maximize the accuracy of single decisions (given no previous errors), as first proposed by Zhang and Clark (2008) . With these methods, transition-based parsers have reached state-of-the-art accuracy for a number of languages (Zhang and Nivre, 2011; Bohnet and Nivre, 2012) . However, the drawback with this approach is that parsing speed is proportional to the size of the beam, which means that the most accurate transition-based parsers are not nearly as fast as the original greedy transition-based parsers. Another line of research tries to retain the efficiency of greedy classifier-based parsing by instead improving the way in which classifiers are learned from data. While the classical approach limits training data to parser states that result from oracle predictions (derived from a treebank), these novel approaches allow the classifier to explore states that result from its own (sometimes erroneous) predictions (Choi and Palmer, 2011; Goldberg and Nivre, 2012) .",
"cite_spans": [
{
"start": 322,
"end": 344,
"text": "Zhang and Clark (2008)",
"ref_id": "BIBREF19"
},
{
"start": 457,
"end": 480,
"text": "(Zhang and Nivre, 2011;",
"ref_id": "BIBREF20"
},
{
"start": 481,
"end": 504,
"text": "Bohnet and Nivre, 2012)",
"ref_id": "BIBREF2"
},
{
"start": 1158,
"end": 1181,
"text": "(Choi and Palmer, 2011;",
"ref_id": "BIBREF3"
},
{
"start": 1182,
"end": 1207,
"text": "Goldberg and Nivre, 2012)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper, we explore an orthogonal approach to improving the accuracy of transition-based parsers, without sacrificing their advantage in efficiency, by introducing a new type of transition system. While all previous transition systems assume a static parsing strategy with respect to top-down and bottom-up processing, our new system allows a dynamic strategy for ordering parsing decisions. This has the advantage that the parser can postpone difficult decisions until the relevant information becomes available, in a way that is not possible in existing transition systems. A second advantage of dynamic parsing is that we can extend the feature inventory of previous systems. Our experiments show that these advantages lead to significant improvements in parsing accuracy, compared to a baseline parser that uses the arc-eager transition system of Nivre (2003) , which is one of the most widely used static transition systems.",
"cite_spans": [
{
"start": 857,
"end": 869,
"text": "Nivre (2003)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The notions of bottom-up and top-down parsing strategies do not have a general mathematical definition; they are instead specified, often only informally, for individual families of grammar formalisms. In the context of dependency parsing, a parsing strategy is called purely bottom-up if every dependency h \u2192 d is constructed only after all dependencies of the form d \u2192 i have been constructed. Here h \u2192 d denotes a dependency with h the head node and d the dependent node. In contrast, a parsing strategy is called purely top-down if h \u2192 d is constructed before any dependency of the form d \u2192 i.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "If we consider transition-based dependency parsing (Nivre, 2008) , the purely bottom-up strategy is implemented by the arc-standard model of Nivre (2004) . After building a dependency h \u2192 d, this model immediately removes from its stack node d, preventing further attachment of dependents to this node. A second popular parser, the arc-eager model of Nivre (2003) , instead adopts a mixed strategy. In this model, a dependency h \u2192 d is constructed using a purely bottom-up strategy if it represents a left-arc, that is, if the dependent d is placed to the left of the head h in the input string. In contrast, if h \u2192 d represents a right-arc (defined symmetrically), then this dependency is constructed before any right-arc",
"cite_spans": [
{
"start": 51,
"end": 64,
"text": "(Nivre, 2008)",
"ref_id": "BIBREF15"
},
{
"start": 141,
"end": 153,
"text": "Nivre (2004)",
"ref_id": "BIBREF14"
},
{
"start": 351,
"end": 363,
"text": "Nivre (2003)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "d \u2192 i (top-down) but after any left- arc d \u2192 i (bottom-up).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "What is important to notice about the above transition-based parsers is that the adopted parsing strategies are static. By this we mean that each dependency is constructed according to some fixed criterion, depending on structural conditions such as the fact that the dependency represents a left or a right arc. This should be contrasted with dynamic parsing strategies in which several parsing options are simultaneously available for the dependencies being constructed.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "In the context of left-to-right, transition-based parsers, dynamic strategies are attractive for several reasons. One argument is related to the wellknown PP-attachment problem, illustrated in Figure 1. Here we have to choose whether to attach node P as a dependent of V (arc \u03b1 2 ) or else as a dependent of N1 (arc \u03b1 3 ). The purely bottomup arc-standard model has to take a decision as soon as N1 is placed into the stack. This is so",
"cite_spans": [],
"ref_spans": [
{
"start": 193,
"end": 199,
"text": "Figure",
"ref_id": null
}
],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "V N1 P N2 \u03b1 1 \u03b1 2 \u03b1 3 \u03b1 4",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "Figure 1: PP-attachment example, with dashed arcs identifying two alternative choices.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "because the construction of \u03b1 1 excludes \u03b1 3 from the search space, while the alternative decision of shifting P into the stack excludes \u03b1 2 . This is bad, because the information about the correct attachment could come from the lexical content of node P.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "The arc-eager model performs slightly better, since it can delay the decision up to the point in which \u03b1 1 has been constructed and P is read from the buffer. However, at this point it must make a commitment and either construct \u03b1 3 or pop N1 from the stack (implicitly committing to \u03b1 2 ) before N2 is read from the buffer. In contrast with this scenario, in the next sections we implement a dynamic parsing strategy that allows a transition system to decide between the attachments \u03b1 2 and \u03b1 3 after it has seen all of the four nodes V, N1, P and N2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "Other additional advantages of dynamic parsing strategies with respect to static strategies are related to the increase in the feature inventory that we apply to parser states, and to the increase of spurious ambiguity. However, these arguments are more technical than the PP-attachment argument above, and will be discussed later.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Static vs. Dynamic Parsing",
"sec_num": "2"
},
{
"text": "In this section we present a novel transition-based parser for projective dependency trees, implementing a dynamic parsing strategy.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Dependency Parser",
"sec_num": "3"
},
{
"text": "For non-negative integers i and j with i \u2264 j, we write [i, j] to denote the set {i, i + 1, . . . , j}. When i > j, [i, j] is the empty set.",
"cite_spans": [
{
"start": 115,
"end": 121,
"text": "[i, j]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "We represent an input sentence as a string w = w 0 \u2022 \u2022 \u2022 w n , n \u2265 1, where token w 0 is a special root symbol and, for each i \u2208 [1, n], token w i = (i, a i , t i ) encodes a lexical element a i and a part-ofspeech tag t i associated with the i-th word in the sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "A dependency tree for w is a directed, ordered tree",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "T w = (V w , A w ), where V w = {w i | i \u2208 w 4 w 2 w 5 w 7 w 1 w 3 w 6",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "Figure 2: A dependency tree with left spine w 4 , w 2 , w 1 and right spine w 4 , w 7 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "[0, n]} is the set of nodes, and",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "A w \u2286 V w \u00d7 V w is the set of arcs. Arc (w i , w j ) encodes a dependency w i \u2192 w j .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "A sample dependency tree (excluding w 0 ) is displayed in Figure 2 . If (w i , w j ) \u2208 A w for j < i, we say that w j is a left child of w i ; a right child is defined in a symmetrical way. The left spine of T w is an ordered sequence u 1 , . . . , u p with p \u2265 1 and",
"cite_spans": [],
"ref_spans": [
{
"start": 58,
"end": 66,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "u i \u2208 V w for i \u2208 [1, p],",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "consisting of all nodes in a descending path from the root of T w taking the leftmost child node at each step. More formally, u 1 is the root node of T w and u i is the leftmost child of",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "u i\u22121 , for i \u2208 [2, p].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "The right spine of T w is defined symmetrically; see again Figure 2 . Note that the left and the right spines share the root node and no other node.",
"cite_spans": [],
"ref_spans": [
{
"start": 59,
"end": 67,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Preliminaries",
"sec_num": "3.1"
},
{
"text": "Transition-based dependency parsers use a stack data structure, where each stack element is associated with a tree spanning some (contiguous) substring of the input w. The parser can combine two trees T and T through attachment operations, called left-arc or right-arc, under the condition that T and T appear at the two topmost positions in the stack. Crucially, only the roots of T and T are available for attachment; see Figure 3 (a).",
"cite_spans": [],
"ref_spans": [
{
"start": 424,
"end": 432,
"text": "Figure 3",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Basic Idea",
"sec_num": "3.2"
},
{
"text": "In contrast, a stack element in our parser records the entire left spine and right spine of the associated tree. This allows us to extend the inventory of the attachment operations of the parser by including the attachment of tree T as a dependent of any node in the left or in the right spine of a second tree T , provided that this does not violate projectivity. 1 See Figure 3 The new parser implements a mix of bottom-up and top-down strategies, since after any of the attachments in Figure 3 (b) is performed, additional dependencies can still be created for the root of T . Furthermore, the new parsing strategy is clearly dy-1 A dependency tree for w is projective if every subtree has a contiguous yield in w. namic, due to the free choice in the timing for these attachments. The new strategy is more powerful than the strategy of the arc-eager model, since we can use top-down parsing at left arcs, which is not allowed in arc-eager parsing, and we do not have the restrictions of parsing right arcs (h \u2192 d) before the attachment of right dependents at node d.",
"cite_spans": [],
"ref_spans": [
{
"start": 371,
"end": 379,
"text": "Figure 3",
"ref_id": "FIGREF1"
},
{
"start": 488,
"end": 496,
"text": "Figure 3",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Basic Idea",
"sec_num": "3.2"
},
{
"text": "To conclude this section, let us resume our discussion of the PP-attachment example in Figure 1 . We observe that the new parsing strategy allows the construction of a tree T consisting of the only dependency V \u2192 N1 and a tree T , placed at the right of T , consisting of the only dependency P \u2192 N2.",
"cite_spans": [],
"ref_spans": [
{
"start": 87,
"end": 95,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Basic Idea",
"sec_num": "3.2"
},
{
"text": "Since the right spine of T consists of nodes V and N1, we can freely choose between attachment V \u2192 P and attachment N1 \u2192 P. Note that this is done after we have seen node N2, as desired.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Idea",
"sec_num": "3.2"
},
{
"text": "We assume the reader is familiar with the formal framework of transition-based dependency parsing originally introduced by Nivre (2003) ; see Nivre (2008) for an introduction. To keep the notation at a simple level, we only discuss here the unlabeled version of our parser; however, a labeled extension is used in \u00a75 for our experiments.",
"cite_spans": [
{
"start": 123,
"end": 135,
"text": "Nivre (2003)",
"ref_id": "BIBREF13"
},
{
"start": 142,
"end": 154,
"text": "Nivre (2008)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "Our transition-based parser uses a stack data structure to store partial parses for the input string w. We represent the stack as an ordered sequence Sometimes we use the vertical bar to denote the append operator for \u03c3, and write \u03c3 = \u03c3 |\u03c3 1 to indicate that \u03c3 1 is the topmost element of \u03c3.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "\u03c3 = [\u03c3 d , . . . , \u03c3 1 ], d \u2265 0, of",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "A stack element is a pair",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "\u03c3 k = ( u k,1 , . . . , u k,p , v k,1 , . . . , v k,q )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "where the ordered sequences u k,1 , . . . , u k,p and v k,1 , . . . , v k,q are the left and the right spines, respectively, of the tree associated with \u03c3 k . Recall that u k,1 = v k,1 , since the root node of the associated tree is shared by the two spines. The parser also uses a buffer to store the portion of the input string still to be processed. We represent the buffer as an ordered sequence \u03b2 = [w i , . . . , w n ], i \u2265 0, of tokens from w, with the first element placed at the left. Note that \u03b2 always represents a (non-necessarily proper) suffix of w. When i > n, we have the empty buffer \u03b2 = []. Sometimes we use the vertical bar to denote the append operator for \u03b2, and write \u03b2 = w i |\u03b2 to indicate that w i is the first token of \u03b2; consequently, we have \u03b2 = [w i+1 , . . . , w n ].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "When processing w, the parser reaches several states, technically called configurations. A configuration of the parser relative to w is a triple c = (\u03c3, \u03b2, A), where \u03c3 and \u03b2 are a stack and a buffer, respectively, and",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "A \u2286 V w \u00d7 V w is a set of arcs. The initial configuration for w is ([], [w 0 , . . . , w n ], \u2205).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "The set of terminal configurations consists of all configurations of the form",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "([\u03c3 1 ], [], A)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": ", where \u03c3 1 is associated with a tree having root w 0 , that is, u 1,1 = v 1,1 = w 0 , and A is any set of arcs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "The core of a transition-based parser is the set of its transitions. Each transition is a binary relation defined over the set of configurations of the parser. Since the set of configurations is infinite, a transition is infinite as well, when viewed as a set. However, transitions can always be specified by some finite means. Our parser uses three types of transitions, defined in what follows.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "\u2022 SHIFT, or sh for short. This transition removes the first node from the buffer and pushes into the stack a new element, consisting of the left and right spines of the associated tree. More formally",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "(\u03c3, w i |\u03b2, A) sh (\u03c3|( w i , w i ), \u03b2, A)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "\u2022 LEFT-ARC k , k \u2265 1, or la k for short. Let h be the k-th node in the left spine of the topmost tree in the stack, and let d be the root node of the second topmost tree in the stack. This transition creates a new arc h \u2192 d. Furthermore, the two topmost stack elements are replaced by a new element associated with the tree resulting from the h \u2192 d attachment. The transition does not advance with the reading of the buffer. More formally",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "(\u03c3 |\u03c3 2 |\u03c3 1 , \u03b2, A) la k (\u03c3 |\u03c3 la , \u03b2, A \u222a {h \u2192 d})",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "where",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "\u03c3 1 = ( u 1,1 , . . . , u 1,p , v 1,1 , . . . , v 1,q ) , \u03c3 2 = ( u 2,1 , . . . , u 2,r , v 2,1 , . . . , v 2,s ) , \u03c3 la = ( u 1,1 , . . . , u 1,k , u 2,1 , . . . , u 2,r , v 1,1 , . . . , v 1,q ) ,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "and where we have set h = u 1,k and d = u 2,1 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "\u2022 RIGHT-ARC k , k \u2265 1, or ra k for short. This transition is defined symmetrically with respect to la k . We have",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "(\u03c3 |\u03c3 2 |\u03c3 1 , \u03b2, A) ra k (\u03c3 |\u03c3 ra , \u03b2, A \u222a {h \u2192 d})",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "where \u03c3 1 and \u03c3 2 are as in the la k case,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "\u03c3 ra = ( u 2,1 , . . . , u 2,r , v 2,1 , . . . , v 2,k , v 1,1 , . . . , v 1,q ) ,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "and we have set",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "h = v 2,k and d = v 1,1 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "Transitions la k and ra k are parametric in k, where k is bounded by the length of the input string and not by a fixed constant (but see also the experimental findings in \u00a75). Thus our system uses an unbounded number of transition relations, which has an apparent disadvantage for learning algorithms. We will get back to this problem in \u00a74.3.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "A complete computation relative to w is a sequence of configurations c 1 , c 2 , . . . , c t , t \u2265 1, such that c 1 and c t are initial and final configurations, respectively, and for each i \u2208 [2, t], c i is produced by the application of some transition to c i\u22121 . It is not difficult to see that the transition-based parser specified above is sound, meaning that the set of arcs constructed in any complete computation on w is always a dependency tree for w. The parser is also complete, meaning that every (projective) dependency tree for w is constructed by some complete computation on w. A mathematical proof of this statement is beyond the scope of this paper, and will not be provided here.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transition-based Parser",
"sec_num": "3.3"
},
{
"text": "The transition-based parser of the previous section is a nondeterministic device, since several transitions can be applied to a given configuration. This might result in several complete computations Algorithm 1 Parsing Algorithm Input:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Deterministic Parsing Algorithm",
"sec_num": "3.4"
},
{
"text": "string w = w 0 \u2022 \u2022 \u2022 w n , function score() Output: dependency tree T w c = (\u03c3, \u03b2, A) \u2190 ([], [w 0 , . . . , w n ], \u2205) while |\u03c3| > 1 \u2228 |\u03b2| > 0 do while |\u03c3| < 2 do update c with sh p \u2190 length of left spine of \u03c3 1 s \u2190 length of right spine of \u03c3 2 T \u2190 {la k | k \u2208 [1, p]} \u222a {ra k | k \u2208 [1, s]} \u222a {sh} bestT \u2190 argmax t\u2208T score(t, c) update c with bestT return T w = (V w , A)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Deterministic Parsing Algorithm",
"sec_num": "3.4"
},
{
"text": "for w. We present here an algorithm that runs the parser in pseudo-deterministic mode, greedily choosing at each configuration the transition that maximizes some score function. Algorithm 1 takes as input a string w and a scoring function score() defined over parser transitions and parser configurations. The scoring function will be the subject of \u00a74 and is not discussed here. The output of the parser is a dependency tree for w.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Deterministic Parsing Algorithm",
"sec_num": "3.4"
},
{
"text": "At each iteration the algorithm checks whether there are at least two elements in the stack and, if this is not the case, it shifts elements from the buffer to the stack. Then the algorithm uses the function score() to evaluate all transitions that can be applied under the current configuration c = (\u03c3, \u03b2, A), and it applies the transition with the highest score, updating the current configuration.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Deterministic Parsing Algorithm",
"sec_num": "3.4"
},
{
"text": "To parse a sentence of length n (excluding the root token w 0 ) the algorithm applies exactly 2n + 1 transitions. In the worst case, each transition application involves 1 + p + s transition evaluations. We therefore conclude that the algorithm always reaches a configuration with an empty buffer and a stack which contains only one element. Then the algorithm stops, returning the dependency tree whose arc set is defined as in the current configuration.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Deterministic Parsing Algorithm",
"sec_num": "3.4"
},
{
"text": "In this section we introduce the adopted learning algorithm and discuss the model parameters.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model and Training",
"sec_num": "4"
},
{
"text": "We use a linear model for the score function in Algorithm 1, and define score(t, c) = \u03c9 \u2022 \u03c6(t, c).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning Algorithm",
"sec_num": "4.1"
},
{
"text": "Here \u03c9 is a weight vector and function \u03c6 provides",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning Algorithm",
"sec_num": "4.1"
},
{
"text": "Algorithm 2 Learning Algorithm Input: pair (w = w 0 \u2022 \u2022 \u2022 w n , A g ), vector \u03c9 Output: vector \u03c9 c = (\u03c3, \u03b2, A) \u2190 ([], [w 0 , . . . , w n ], \u2205) while |\u03c3| > 1 \u2228 |\u03b2| > 0 do while |\u03c3| < 2 do update c with SHIFT p \u2190 length of left spine of \u03c3 1 s \u2190 length of right spine of \u03c3 2 T \u2190 {la k | k \u2208 [1, p]} \u222a {ra k | k \u2208 [1, s]} \u222a {sh} bestT \u2190 argmax t\u2208T score(t, c) bestCorrectT \u2190 argmax t\u2208T \u2227isCorrect(t) score(t, c) if bestT = bestCorrectT then \u03c9 \u2190 \u03c9 \u2212 \u03c6(bestT , c)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning Algorithm",
"sec_num": "4.1"
},
{
"text": "+\u03c6(bestCorrectT , c) update c with bestCorrectT a feature vector representation for a transition t applying to a configuration c. The function \u03c6 will be discussed at length in \u00a74.3. The vector \u03c9 is trained using the perceptron algorithm in combination with the averaging method to avoid overfitting; see Freund and Schapire (1999) and Collins and Duffy (2002) for details.",
"cite_spans": [
{
"start": 304,
"end": 330,
"text": "Freund and Schapire (1999)",
"ref_id": "BIBREF6"
},
{
"start": 335,
"end": 359,
"text": "Collins and Duffy (2002)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Learning Algorithm",
"sec_num": "4.1"
},
{
"text": "The training data set consists of pairs (w, A g ), where w is a sentence and A g is the set of arcs of the gold (desired) dependency tree for w. At training time, each pair (w, A g ) is processed using the learning algorithm described as Algorithm 2. The algorithm is based on the notions of correct and incorrect transitions, discussed at length in \u00a74.2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning Algorithm",
"sec_num": "4.1"
},
{
"text": "Algorithm 2 parses w following Algorithm 1 and using the current \u03c9, until the highest score selected transition bestT is incorrect according to A g . When this happens, \u03c9 is updated by decreasing the weights of the features associated with the incorrect bestT and by increasing the weights of the features associated with the transition bestCorrectT having the highest score among all possible correct transitions. After each update, the learning algorithm resumes parsing from the current configuration by applying bestCorrectT , and moves on using the updated weights.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning Algorithm",
"sec_num": "4.1"
},
{
"text": "Standard transition-based dependency parsers are trained by associating each gold tree with a canonical complete computation. This means that, for each configuration of interest, only one transition leading to the gold tree is considered as correct. In this paper we depart from such a methodology, and follow Goldberg and Nivre (2012) in allowing more than one correct transition for each configuration, as explained in detail below.",
"cite_spans": [
{
"start": 310,
"end": 335,
"text": "Goldberg and Nivre (2012)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "\u03c3 2 \u03c3 1 b 1 (a) \u03c3 2 \u03c3 1 b 1 (b) \u03c3 2 \u03c3 1 \u2022 \u2022 \u2022 b i (c) \u03c3 2 \u03c3 1 \u2022 \u2022 \u2022 b i (d)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "Let (w, A g ) be a pair in the training set. In \u00a73.3 we have mentioned that there is always a complete computation on w that results in the construction of the set A g . In general, there might be more than one computation for A g . This means that the parser shows spurious ambiguity.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "Observe that all complete computations for A g share the same initial configuration c I,w and final configuration c F,Ag . Consider now the set C(w) of all configurations c that are reachable from c I,w , meaning that there exists a sequence of transitions that takes the parser from c I,w to c. A configuration c \u2208 C(w) is correct for A g if c F,Ag is reachable from c; otherwise, c is incorrect for A g .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "Let c \u2208 C(w) be a correct configuration for A g . A transition t is correct for c and A g if c t c and c is correct for A g ; otherwise, t is incorrect for c and A g . The next lemma provides a characterization of correct and incorrect transitions; see Figure 4 for examples. We use this characterization in the implementation of predicate isCorrect() in Algorithm 2.",
"cite_spans": [],
"ref_spans": [
{
"start": 253,
"end": 261,
"text": "Figure 4",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "Lemma 1 Let (w, A g ) be a pair in the training set and let c \u2208 C(w) with c = (\u03c3, \u03b2, A) be a correct configuration for A g . Let also v 1,k , k \u2208 [1, q], be the nodes in the right spine of \u03c3 1 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "(i) la k and ra k are incorrect for c and A g if and only if they create a new arc (h \u2192 d) \u2208 A g ;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "(ii) sh is incorrect for c and A g if and only if the following conditions are both satisfied:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "(a) there exists an arc (h \u2192 d) in A g such that h is in \u03c3 and 1, q] , and d in \u03b2.",
"cite_spans": [
{
"start": 63,
"end": 68,
"text": "1, q]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "d = v 1,1 ; (b) there is no arc (h \u2192 d ) in A g with h = v 1,k , k \u2208 [",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "2 PROOF (SKETCH) To prove part (i) we focus on transition ra k ; a similar argument applies to la k . The 'if' statement in part (i) is self-evident. 'Only if'. Assuming that transition ra k creates a new arc (h \u2192 d) \u2208 A g , we argue that from configuration c with c ra k c we can still reach the final configuration associated with A g . We have h = v 2,k and d = u 1,1 . The tree fragments in \u03c3 with roots v 2,k+1 and u 1,1 must be adjacent siblings in the tree associated with A g , since c is a correct configuration for A g and (v 2,k \u2192 u 1,1 ) \u2208 A g . This means that each of the nodes v 2,k+1 , . . . , v 2,s in the right spine in \u03c3 2 in c must have already acquired all of its right dependents, since the tree is projective. Therefore it is safe for transition ra k to eliminate the nodes v 2,k+1 , . . . , v 2,s from the right spine in \u03c3 2 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "We now deal with part (ii). Let c sh c , c = (\u03c3 , \u03b2 , A).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "'If'. Assuming (ii)a and (ii)b, we argue that c is incorrect. Node d is the head of \u03c3 2 . Arc (h \u2192 d) is not in A, and the only way we could create (h \u2192 d) from c is by reaching a new configuration with d in the topmost stack symbol, which amounts to say that \u03c3 1 can be reduced by a correct transition. Node h is in some \u03c3 i , i > 2, by (ii)a. Then reduction of \u03c3 1 implies that the root of \u03c3 1 is reachable from the root of \u03c3 2 , which contradicts (ii)b.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "'Only if'. Assuming (ii)a is not satisfied, we argue that sh is correct for c and A g . There must be an arc (h \u2192 d) not in A with d = v 1,1 and h is some token w i in \u03b2. From stack \u03c3 = \u03c3 |\u03c3 2 |\u03c3 1 it is always possible to construct (h \u2192 d) consuming the substring of \u03b2 up to w i and ending up with stack \u03c3 |\u03c3 red , where \u03c3 red is a stack element with root w i . From there, the parser can move on to the final configuration c F,Ag . A similar argument applies if we assume that (ii)b is not satisfied.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "From condition (i) in Lemma 1 and from the fact that there are no cycles in A g , it follows that there is at most one correct transition among the transitions of type la k or ra k . From condition (ii) in the lemma we can also see that the existence of a correct transition of type la k or ra k for some configuration does not imply that the sh transition is incorrect for the same configuration; see Figures 4(c,d) for examples. It follows that for a correct configuration there might be at most 2 correct transitions. In our training experiments for English in \u00a75 we observe 2 correct transitions for 42% of the reached configurations. This nondeterminism is a byproduct of the adopted dynamic parsing strategy, and eventually leads to the spurious ambiguity of the parser.",
"cite_spans": [],
"ref_spans": [
{
"start": 402,
"end": 416,
"text": "Figures 4(c,d)",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "As already mentioned, we do not impose any canonical form on complete computations that would hardwire a preference for some correct transition and get rid of spurious ambiguity. Following Goldberg and Nivre (2012), we instead regard spurious ambiguity as an additional resource of our parsing strategy. Our main goal is that the training algorithm learns to prefer a sh transition in a configuration that does not provide enough information for the choice of the correct arc. In the context of dependency parsing, the strategy of delaying arc construction when the current configuration is not informative is called the easy-first strategy, and has been first explored by Goldberg and Elhadad (2010) .",
"cite_spans": [
{
"start": 673,
"end": 700,
"text": "Goldberg and Elhadad (2010)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Correct and Incorrect Transitions",
"sec_num": "4.2"
},
{
"text": "In existing transition-based parsers a set of atomic features is statically defined and extracted from each configuration. These features are then combined together into complex features, according to some feature template, and joined with the available transition types. This is not possible in our system, since the number of transitions la k and ra k is not bounded by a constant. Furthermore, it is not meaningful to associate transitions la k and ra k , for any k \u2265 1, always with the same features, since the constructed arcs impinge on nodes at different depths in the involved spines. It seems indeed more significant to extract information that is local to the arc h \u2192 d being constructed by each transition, such as for instance the grandparent and the great grandparent nodes of d. This is possible if we introduce a higher level of abstraction than in existing transition-based parsers. We remark here that this abstraction also makes the feature representation more similar to the ones typically found in graph-based parsers, which are centered on arcs or subgraphs of the dependency tree.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Extraction",
"sec_num": "4.3"
},
{
"text": "We index the nodes in the stack \u03c3 relative to the head node of the arc being constructed, in case of the transitions la k or ra k , or else relative to the root node of \u03c3 1 , in case of the transition sh. More precisely, let c = (\u03c3, \u03b2, A) be a configuration and let t be a transition. We define the context of c and t as the tuple C(c, t) = (s 3 , s 2 , s 1 , q 1 , q 2 , gp, gg), whose components are placeholders for word tokens in \u03c3 or in \u03b2. All these placeholders are specified in Table 1 , for each c and t. Figure 5 shows an example of feature extraction for the displayed configuration c = (\u03c3, \u03b2, A) and the transition la 2 . In this case we have s 3 = u 3,1 , s 2 = u 2,1 , s 1 = u 1,2 , q 1 = gp = u 1,1 , q 2 = b 1 ; gg = none because the head of gp is not available in c.",
"cite_spans": [],
"ref_spans": [
{
"start": 485,
"end": 492,
"text": "Table 1",
"ref_id": "TABREF1"
},
{
"start": 513,
"end": 521,
"text": "Figure 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Feature Extraction",
"sec_num": "4.3"
},
{
"text": "Note that in Table 1 placeholders are dynamically assigned in such a way that s 1 and s 2 refer to the nodes in the constructed arc h \u2192 d, and gp, gg refer to the grandparent and the great grandparent nodes, respectively, of d. Furthermore, the node assigned to s 3 is the parent node of s 2 , if such a node is defined; otherwise, the node assigned to s 3 is the root of the tree fragment in the stack underneath \u03c3 2 . Symmetrically, placeholders q 1 and q 2 refer to the parent and grandparent nodes of s 1 , respectively, when these nodes are defined; otherwise, these placeholders get assigned tokens from the buffer. See again Figure 5 .",
"cite_spans": [],
"ref_spans": [
{
"start": 13,
"end": 20,
"text": "Table 1",
"ref_id": "TABREF1"
},
{
"start": 632,
"end": 640,
"text": "Figure 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Feature Extraction",
"sec_num": "4.3"
},
{
"text": "Finally, from the placeholders in C(c, t) we extract a standard set of atomic features and their complex combinations, to define the function \u03c6. Our feature template is an extended version of the feature template of Zhang and Nivre (2011) , originally developed for the arc-eager model. The extension is obtained by adding top-down features for left-arcs (based on placeholders gp and gg), and by adding right child features for the first stack element. The latter group of features is usually exploited for the arc-standard model, but is undefined for the arc-eager model.",
"cite_spans": [
{
"start": 216,
"end": 238,
"text": "Zhang and Nivre (2011)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Extraction",
"sec_num": "4.3"
},
{
"text": "Performance evaluation is carried out on the Penn Treebank (Marcus et al., 1993) converted to Stanford basic dependencies (De Marneffe et al., 2006) . We use sections 2-21 for training, 22 as development set, and 23 as test set. The part-of-speech tags are assigned by an automatic tagger with accuracy 97.1%. The tagger used on the training set is trained on the same data set by using four-way jackknifing, while the tagger used on the development and test sets is trained on all the training set. We train an arc-labeled version of our parser.",
"cite_spans": [
{
"start": 59,
"end": 80,
"text": "(Marcus et al., 1993)",
"ref_id": "BIBREF11"
},
{
"start": 126,
"end": 148,
"text": "Marneffe et al., 2006)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Assessment",
"sec_num": "5"
},
{
"text": "In the first three lines of Table 2 we compare context sh la k ra k placeholder k = 1 k = 2 k > 2 , s 2 , s 1 , q 1 , q 2 , gp, gg) , for c = (\u03c3 |\u03c3 3 |\u03c3 2 |\u03c3 1 , b 1 |b 2 |\u03b2, A) and t of type sh or la k , ra k , k \u2265 1. Symbols u j,k and v j,k are the k-th nodes in the left and right spines, respectively, of stack element \u03c3 j , with u j,1 = v j,1 being the shared root of \u03c3 j ; none is an artificial element used when some context's placeholder is not available.",
"cite_spans": [],
"ref_spans": [
{
"start": 28,
"end": 35,
"text": "Table 2",
"ref_id": "TABREF3"
},
{
"start": 98,
"end": 131,
"text": ", s 2 , s 1 , q 1 , q 2 , gp, gg)",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experimental Assessment",
"sec_num": "5"
},
{
"text": "k = 1 k = 2 k > 2 s1 u1,1 = v1,1 u 1,k u1,1 = v1,1 s2 u2,1 = v2,1 u2,1 = v2,1 v 2,k s3 u3,1 = v3,1 u3,1 = v3,1 u3,1 = v3,1 v 2,k\u22121 q1 b1 b1 u 1,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Assessment",
"sec_num": "5"
},
{
"text": "\u2022 \u2022 \u2022 stack \u03c3 u 3,1 = v 3,1 v 3,2 u 2,1 = v 2,1 u 2,2 v 2,2 v 2,3 u 1,1 = v 1,1 u 1,2 v 1,2 u 1,3 v 1,3 la 2 buffer \u03b2 b 1 b 2 b 3 \u2022 \u2022 \u2022 context extracted for la 2 s 3 s 2 s 1 q 1 =gp q 2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Assessment",
"sec_num": "5"
},
{
"text": "Figure 5: Extraction of atomic features for context C(c, la the accuracy of our parser against our implementation of the arc-eager and arc-standard parsers. For the arc-eager parser, we use the feature template of Zhang and Nivre (2011) . The same template is adapted to the arc-standard parser, by removing the top-down parent features and by adding the right child features for the first stack element. It turns out that our feature template, described in \u00a74.3, is the exact merge of the templates used for the arc-eager and the arc-standard parsers. We train all parsers up to 30 iterations, and for each parser we select the weight vector \u03c9 from the iteration with the best accuracy on the development set. All our parsers attach the root node at the end of the parsing process, following the 'None' ap-proach discussed by Ballesteros and Nivre (2013) . Punctuation is excluded in all evaluation metrics. Considering UAS, our parser provides an improvement of 1.15 over the arc-eager parser and an improvement of 1.31 over the arc-standard parser, that is an error reduction of \u223c12% and \u223c13%, respectively. Considering LAS, we achieve improvements of 1.33 and 1.47, with an error reduction of \u223c11% and \u223c12%, over the arc-eager and the arc-standard parsers, respectively. We speculate that the observed improvement of our parser can be ascribed to two distinct components. The first component is the left-/rightspine representation for stack elements, introduced in \u00a73.3. The second component is the easy-first strategy, implemented on the basis of the spurious ambiguity of our parser and the definition of correct/incorrect transitions in \u00a74.2. In this perspective, we observe that our parser can indeed be viewed as an arc-standard model augmented with (i) the spine representation, and (ii) the easy-first strategy. More specifically, (i) generalizes the la/ra transitions to the la k /ra k transitions, introducing a top-down component into the purely bottom-up arc-standard. On the other hand, (ii) drops the limitation of canonical computations for the arc-standard, and leverages on the spurious ambiguity of the parser to enlarge the search space.",
"cite_spans": [
{
"start": 214,
"end": 236,
"text": "Zhang and Nivre (2011)",
"ref_id": "BIBREF20"
},
{
"start": 827,
"end": 855,
"text": "Ballesteros and Nivre (2013)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Assessment",
"sec_num": "5"
},
{
"text": "2 ) = (s 3 , s 2 , s 1 , q 1 , q 2 , gp, gg), c = (\u03c3, \u03b2, A",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Assessment",
"sec_num": "5"
},
{
"text": "The two components above are mutually independent, meaning that we can individually implement each component on top of an arc-standard model. More precisely, the arc-standard + spine model uses the transitions la k /ra k but retains the definition of canonical computation, defined by applying each la k /ra k transition as soon as possible. On the other hand, the arc-standard + easy-first model retains the original la/ra transitions but is trained allowing any correct transition at each configuration. In this case the characterization of correct and incorrect configurations in Lemma 1 has been adapted to transitions la/ra, taking into account the bottom-up constraint.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Assessment",
"sec_num": "5"
},
{
"text": "With the purpose of incremental comparison, we report accuracy results for the two 'incremental' models in the last two lines of Table 2 . Analyzing these results, and comparing with the plain arcstandard, we see that the spine representation and the easy-first strategy individually improve accuracy. Moreover, their combination into our model (third line of Table 2 ) works very well, with an overall improvement larger than the sum of the individual contributions.",
"cite_spans": [],
"ref_spans": [
{
"start": 129,
"end": 136,
"text": "Table 2",
"ref_id": "TABREF3"
},
{
"start": 360,
"end": 367,
"text": "Table 2",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Experimental Assessment",
"sec_num": "5"
},
{
"text": "We now turn to a computational analysis. At each iteration our parser evaluates a number of transitions bounded by \u03b3 + 1, with \u03b3 the maximum value of the sum of the lengths of the left spine in \u03c3 1 and of the right spine in \u03c3 2 . Quantity \u03b3 is bounded by the length n of the input sentence. Since the parser applies exactly 2n + 1 transitions, worst case running time is O(n 2 ). We have computed the average value of \u03b3 on our English data set, resulting in 2.98 (variance 2.15) for training set, and 2.95 (variance 1.96) for development set. We conclude that, in the expected case, running time is O(n), with a slow down constant which is rather small, in comparison to standard transition-based parsers. Accordingly, when running our parser against our implementation of the arc-eager and arc-standard models, we measured a slow-down of 2.8 and 2.2, respectively. Besides the change in representation, this slow-down is also due to the increase in the number of features in our system. We have also checked the worst case value of \u03b3 in our data set. Interestingly, we have seen that for strings of length smaller than 40 this value linearly grows with n, and for longer strings the growth stops, with a maximum worst case observed value of 22.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Assessment",
"sec_num": "5"
},
{
"text": "We have presented a novel transition-based parser using a dynamic parsing strategy, which achieves a \u223c12% error reduction in unlabeled attachment score over the static arc-eager strategy and even more over the (equally static) arc-standard strategy, when evaluated on English.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Concluding Remarks",
"sec_num": "6"
},
{
"text": "The idea of representing the right spine of a tree within the stack elements of a shift-reduce device is quite old in parsing, predating empirical approaches. It has been mainly exploited to solve the PP-attachment problem, motivated by psycholinguistic models. The same representation is also adopted in applications of discourse parsing, where right spines are usually called right frontiers; see for instance Subba and Di Eugenio (2009) . In the context of transition-based dependency parsers, right spines have also been exploited by Kitagawa and Tanaka-Ishii (2010) to decide where to attach the next word from the buffer. In this paper we have generalized their approach by introducing the symmetrical notion of left spine, and by allowing attachment of full trees rather than attachment of a single word. 2 Since one can regard a spine as a stack in itself, whose elements are tree nodes, our model is reminiscent of the embedded pushdown automata of Schabes and Vijay-Shanker (1990) , used to parse tree adjoining grammars (Joshi and Schabes, 1997) and exploiting a stack of stacks. However, by imposing projectivity, we do not use the extra-power of the latter class.",
"cite_spans": [
{
"start": 412,
"end": 439,
"text": "Subba and Di Eugenio (2009)",
"ref_id": "BIBREF17"
},
{
"start": 538,
"end": 570,
"text": "Kitagawa and Tanaka-Ishii (2010)",
"ref_id": "BIBREF10"
},
{
"start": 812,
"end": 813,
"text": "2",
"ref_id": null
},
{
"start": 958,
"end": 990,
"text": "Schabes and Vijay-Shanker (1990)",
"ref_id": "BIBREF16"
},
{
"start": 1042,
"end": 1056,
"text": "Schabes, 1997)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Concluding Remarks",
"sec_num": "6"
},
{
"text": "An interesting line of future research is to combine our dynamic parsing strategy with a training method that allows the parser to explore transitions that apply to incorrect configurations, as in Goldberg and Nivre (2012).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Concluding Remarks",
"sec_num": "6"
},
{
"text": "Accuracy comparison of our work with Kitagawa and Tanaka-Ishii (2010) is not meaningful, since these authors have evaluated their system on the same data set but based on gold part-of-speech tags (personal communication).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "We wish to thank Liang Huang and Marco Kuhlmann for discussion related to the ideas reported in this paper, and the anonymous reviewers for their useful suggestions. The second author has been partially supported by MIUR under project PRIN No. 2010LYA9RH 006.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Experiments with a multilanguage non-projective dependency parser",
"authors": [
{
"first": "Giuseppe",
"middle": [],
"last": "Attardi",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the 10th Conference on Computational Natural Language Learning (CoNLL)",
"volume": "",
"issue": "",
"pages": "166--170",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Giuseppe Attardi. 2006. Experiments with a multil- anguage non-projective dependency parser. In Pro- ceedings of the 10th Conference on Computational Natural Language Learning (CoNLL), pages 166- 170.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Going to the roots of dependency parsing",
"authors": [
{
"first": "Miguel",
"middle": [],
"last": "Ballesteros",
"suffix": ""
},
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2013,
"venue": "Computational Linguistics",
"volume": "39",
"issue": "1",
"pages": "5--13",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Miguel Ballesteros and Joakim Nivre. 2013. Going to the roots of dependency parsing. Computational Linguistics, 39(1):5-13.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "A transitionbased system for joint part-of-speech tagging and labeled non-projective dependency parsing",
"authors": [
{
"first": "Bernd",
"middle": [],
"last": "Bohnet",
"suffix": ""
},
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "1455--1465",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Bernd Bohnet and Joakim Nivre. 2012. A transition- based system for joint part-of-speech tagging and labeled non-projective dependency parsing. In Pro- ceedings of the 2012 Joint Conference on Empirical Methods in Natural Language Processing and Com- putational Natural Language Learning, pages 1455- 1465.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Getting the most out of transition-based dependency parsing",
"authors": [
{
"first": "D",
"middle": [],
"last": "Jinho",
"suffix": ""
},
{
"first": "Martha",
"middle": [],
"last": "Choi",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Palmer",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "687--692",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jinho D. Choi and Martha Palmer. 2011. Getting the most out of transition-based dependency parsing. In Proceedings of the 49th Annual Meeting of the Asso- ciation for Computational Linguistics (ACL), pages 687-692.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "New ranking algorithms for parsing and tagging: Kernels over discrete structures, and the voted perceptron",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "Nigel",
"middle": [],
"last": "Duffy",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of the 40th Annual Meeting of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "263--270",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael Collins and Nigel Duffy. 2002. New ranking algorithms for parsing and tagging: Kernels over dis- crete structures, and the voted perceptron. In Pro- ceedings of the 40th Annual Meeting of the Asso- ciation for Computational Linguistics (ACL), pages 263-270, Philadephia, Pennsylvania.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Generating typed dependency parses from phrase structure parses",
"authors": [
{
"first": "Marie-Catherine De",
"middle": [],
"last": "Marneffe",
"suffix": ""
},
{
"first": "Bill",
"middle": [],
"last": "Maccartney",
"suffix": ""
},
{
"first": "Christopher",
"middle": [
"D"
],
"last": "Manning",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the 5th International Conference on Language Resources and Evaluation (LREC)",
"volume": "6",
"issue": "",
"pages": "449--454",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marie-Catherine De Marneffe, Bill MacCartney, and Christopher D. Manning. 2006. Generating typed dependency parses from phrase structure parses. In Proceedings of the 5th International Conference on Language Resources and Evaluation (LREC), volume 6, pages 449-454.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Large margin classification using the perceptron algorithm",
"authors": [
{
"first": "Yoav",
"middle": [],
"last": "Freund",
"suffix": ""
},
{
"first": "Robert",
"middle": [
"E"
],
"last": "Schapire",
"suffix": ""
}
],
"year": 1999,
"venue": "Machine Learning",
"volume": "37",
"issue": "",
"pages": "277--296",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yoav Freund and Robert E. Schapire. 1999. Large margin classification using the perceptron algorithm. Machine Learning, 37(3):277-296, December.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "An efficient algorithm for easy-first non-directional dependency parsing",
"authors": [
{
"first": "Yoav",
"middle": [],
"last": "Goldberg",
"suffix": ""
},
{
"first": "Michael",
"middle": [
"Elhadad"
],
"last": "",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of Human Language Technologies: The 2010 Annual Conference of the North American Chapter of the Association for Computational Linguistics (NAACL)",
"volume": "",
"issue": "",
"pages": "742--750",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yoav Goldberg and Michael Elhadad. 2010. An ef- ficient algorithm for easy-first non-directional de- pendency parsing. In Proceedings of Human Lan- guage Technologies: The 2010 Annual Conference of the North American Chapter of the Association for Computational Linguistics (NAACL), pages 742- 750, Los Angeles, USA.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "A dynamic oracle for arc-eager dependency parsing",
"authors": [
{
"first": "Yoav",
"middle": [],
"last": "Goldberg",
"suffix": ""
},
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of the 24th International Conference on Computational Linguistics (COLING)",
"volume": "",
"issue": "",
"pages": "959--976",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yoav Goldberg and Joakim Nivre. 2012. A dynamic or- acle for arc-eager dependency parsing. In Proceed- ings of the 24th International Conference on Com- putational Linguistics (COLING), pages 959-976.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Tree-Adjoining Grammars",
"authors": [
{
"first": "K",
"middle": [],
"last": "Aravind",
"suffix": ""
},
{
"first": "Yves",
"middle": [],
"last": "Joshi",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Schabes",
"suffix": ""
}
],
"year": 1997,
"venue": "Grzegorz Rozenberg and Arto Salomaa",
"volume": "3",
"issue": "",
"pages": "69--123",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Aravind K. Joshi and Yves Schabes. 1997. Tree- Adjoining Grammars. In Grzegorz Rozenberg and Arto Salomaa, editors, Handbook of Formal Lan- guages, volume 3, pages 69-123. Springer.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Tree-based deterministic dependency parsing -an application to Nivre's method",
"authors": [
{
"first": "Kotaro",
"middle": [],
"last": "Kitagawa",
"suffix": ""
},
{
"first": "Kumiko",
"middle": [],
"last": "Tanaka-Ishii",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 48th Annual Meeting of the Association for Computational Linguistics (ACL) Short Papers",
"volume": "",
"issue": "",
"pages": "189--193",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kotaro Kitagawa and Kumiko Tanaka-Ishii. 2010. Tree-based deterministic dependency parsing -an application to Nivre's method -. In Proceedings of the 48th Annual Meeting of the Association for Com- putational Linguistics (ACL) Short Papers, pages 189-193.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Building a large annotated corpus of English: The Penn Treebank",
"authors": [
{
"first": "Mitchell",
"middle": [
"P"
],
"last": "Marcus",
"suffix": ""
},
{
"first": "Beatrice",
"middle": [],
"last": "Santorini",
"suffix": ""
},
{
"first": "Mary",
"middle": [
"Ann"
],
"last": "Marcinkiewicz",
"suffix": ""
}
],
"year": 1993,
"venue": "Computational Linguistics",
"volume": "19",
"issue": "",
"pages": "313--330",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mitchell P. Marcus, Beatrice Santorini, and Mary Ann Marcinkiewicz. 1993. Building a large annotated corpus of English: The Penn Treebank. Computa- tional Linguistics, 19:313-330.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Characterizing the errors of data-driven dependency parsing models",
"authors": [
{
"first": "Ryan",
"middle": [],
"last": "Mcdonald",
"suffix": ""
},
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL)",
"volume": "",
"issue": "",
"pages": "122--131",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ryan McDonald and Joakim Nivre. 2007. Character- izing the errors of data-driven dependency parsing models. In Proceedings of the 2007 Joint Confer- ence on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CoNLL), pages 122-131.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "An efficient algorithm for projective dependency parsing",
"authors": [
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the Eighth International Workshop on Parsing Technologies (IWPT)",
"volume": "",
"issue": "",
"pages": "149--160",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joakim Nivre. 2003. An efficient algorithm for pro- jective dependency parsing. In Proceedings of the Eighth International Workshop on Parsing Techno- logies (IWPT), pages 149-160, Nancy, France.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Incrementality in deterministic dependency parsing",
"authors": [
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2004,
"venue": "Workshop on Incremental Parsing: Bringing Engineering and Cognition Together",
"volume": "",
"issue": "",
"pages": "50--57",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joakim Nivre. 2004. Incrementality in deterministic dependency parsing. In Workshop on Incremental Parsing: Bringing Engineering and Cognition To- gether, pages 50-57, Barcelona, Spain.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Algorithms for deterministic incremental dependency parsing",
"authors": [
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2008,
"venue": "Computational Linguistics",
"volume": "34",
"issue": "4",
"pages": "513--553",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joakim Nivre. 2008. Algorithms for deterministic in- cremental dependency parsing. Computational Lin- guistics, 34(4):513-553.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Deterministic left to right parsing of tree adjoining languages",
"authors": [
{
"first": "Yves",
"middle": [],
"last": "Schabes",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Vijay-Shanker",
"suffix": ""
}
],
"year": 1990,
"venue": "Proceedings of the 28th annual meeting of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "276--283",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yves Schabes and K. Vijay-Shanker. 1990. Determ- inistic left to right parsing of tree adjoining lan- guages. In Proceedings of the 28th annual meet- ing of the Association for Computational Linguistics (ACL), pages 276-283, Pittsburgh, Pennsylvania.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "An effective discourse parser that uses rich linguistic information",
"authors": [
{
"first": "Rajen",
"middle": [],
"last": "Subba",
"suffix": ""
},
{
"first": "Barbara",
"middle": [
"Di"
],
"last": "Eugenio",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of Human Language Technologies: The 2009 Annual Conference of the North American Chapter of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "566--574",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rajen Subba and Barbara Di Eugenio. 2009. An effect- ive discourse parser that uses rich linguistic inform- ation. In Proceedings of Human Language Techno- logies: The 2009 Annual Conference of the North American Chapter of the Association for Computa- tional Linguistics, pages 566-574.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Statistical dependency analysis with support vector machines",
"authors": [
{
"first": "Hiroyasu",
"middle": [],
"last": "Yamada",
"suffix": ""
},
{
"first": "Yuji",
"middle": [],
"last": "Matsumoto",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the 8th International Workshop on Parsing Technologies (IWPT)",
"volume": "",
"issue": "",
"pages": "195--206",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hiroyasu Yamada and Yuji Matsumoto. 2003. Stat- istical dependency analysis with support vector ma- chines. In Proceedings of the 8th International Workshop on Parsing Technologies (IWPT), pages 195-206.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "A tale of two parsers: Investigating and combining graph-based and transition-based dependency parsing",
"authors": [
{
"first": "Yue",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Stephen",
"middle": [],
"last": "Clark",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "562--571",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yue Zhang and Stephen Clark. 2008. A tale of two parsers: Investigating and combining graph-based and transition-based dependency parsing. In Pro- ceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 562- 571.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Transition-based parsing with rich non-local features",
"authors": [
{
"first": "Yue",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "188--193",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yue Zhang and Joakim Nivre. 2011. Transition-based parsing with rich non-local features. In Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics (ACL), pages 188-193.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "(b) for an example."
},
"FIGREF1": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Left-arc attachment of T to T in case of (a) standard transition-based parsers and (b) our parser."
},
"FIGREF2": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "stack elements, with the topmost element placed at the right. When d = 0, we have the empty stack \u03c3 = []."
},
"FIGREF3": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Graphical representation of configurations; drawn arcs are in A g but have not yet been added to the configuration. Transition sh is incorrect for configuration (a) and (b); sh and ra 1 are correct for (c); sh and la 1 are correct for (d)."
},
"TABREF1": {
"content": "<table/>",
"html": null,
"text": "Definition of C(c, t) = (s 3",
"num": null,
"type_str": "table"
},
"TABREF2": {
"content": "<table><tr><td>parser</td><td>iter</td><td>UAS</td><td>LAS</td><td>UEM</td></tr><tr><td>arc-standard arc-eager this work</td><td>23 12 30</td><td colspan=\"3\">90.02 87.69 38.33 90.18 87.83 40.02 91.33 89.16 42.38</td></tr><tr><td>arc-standard + easy-first arc-standard + spine</td><td>21 27</td><td colspan=\"3\">90.49 88.22 39.61 90.44 88.23 40.27</td></tr></table>",
"html": null,
"text": ").",
"num": null,
"type_str": "table"
},
"TABREF3": {
"content": "<table><tr><td>: Accuracy on test set, excluding punc-</td></tr><tr><td>tuation, for unlabeled attachment score (UAS),</td></tr><tr><td>labeled attachment score (LAS), unlabeled exact</td></tr><tr><td>match (UEM).</td></tr></table>",
"html": null,
"text": "",
"num": null,
"type_str": "table"
}
}
}
} |