File size: 76,051 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 | {
"paper_id": "P96-1025",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T09:02:36.504202Z"
},
"title": "A New Statistical Parser Based on Bigram Lexical Dependencies",
"authors": [
{
"first": "Michael",
"middle": [
"John"
],
"last": "Collins",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Pennsylvania Philadelphia",
"location": {
"postCode": "19104",
"region": "PA",
"country": "U.S.A"
}
},
"email": "mcollins@gradient@edu"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "This paper describes a new statistical parser which is based on probabilities of dependencies between head-words in the parse tree. Standard bigram probability estimation techniques are extended to calculate probabilities of dependencies between pairs of words. Tests using Wall Street Journal data show that the method performs at least as well as SPATTER (Magerman 95; Jelinek et al. 94), which has the best published results for a statistical parser on this task. The simplicity of the approach means the model trains on 40,000 sentences in under 15 minutes. With a beam search strategy parsing speed can be improved to over 200 sentences a minute with negligible loss in accuracy.",
"pdf_parse": {
"paper_id": "P96-1025",
"_pdf_hash": "",
"abstract": [
{
"text": "This paper describes a new statistical parser which is based on probabilities of dependencies between head-words in the parse tree. Standard bigram probability estimation techniques are extended to calculate probabilities of dependencies between pairs of words. Tests using Wall Street Journal data show that the method performs at least as well as SPATTER (Magerman 95; Jelinek et al. 94), which has the best published results for a statistical parser on this task. The simplicity of the approach means the model trains on 40,000 sentences in under 15 minutes. With a beam search strategy parsing speed can be improved to over 200 sentences a minute with negligible loss in accuracy.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Lexical information has been shown to be crucial for many parsing decisions, such as prepositional-phrase attachment (for example (Hindle and Rooth 93) ). However, early approaches to probabilistic parsing (Pereira and Schabes 92; Magerman and Marcus 91; Briscoe and Carroll 93) conditioned probabilities on non-terminal labels and part of speech tags alone. The SPATTER parser (Magerman 95; 3elinek et ah 94) does use lexical information, and recovers labeled constituents in Wall Street Journal text with above 84% accuracy -as far as we know the best published results on this task. This paper describes a new parser which is much simpler than SPATTER, yet performs at least as well when trained and tested on the same Wall Street Journal data. The method uses lexical information directly by modeling head-modifier 1 relations between pairs of words. In this way it is similar to *This research was supported by ARPA Grant N6600194-C6043.",
"cite_spans": [
{
"start": 130,
"end": 151,
"text": "(Hindle and Rooth 93)",
"ref_id": null
},
{
"start": 378,
"end": 391,
"text": "(Magerman 95;",
"ref_id": null
},
{
"start": 392,
"end": 392,
"text": "",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "1By 'modifier' we mean the linguistic notion of either an argument or adjunct.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Link grammars (Lafferty et al. 92) , and dependency grammars in general.",
"cite_spans": [
{
"start": 14,
"end": 34,
"text": "(Lafferty et al. 92)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The aim of a parser is to take a tagged sentence as input (for example Figure l(a)) and produce a phrase-structure tree as output (Figure l(b) ). A statistical approach to this problem consists of two components. First, the statistical model assigns a probability to every candidate parse tree for a sentence. Formally, given a sentence S and a tree T, the model estimates the conditional probability P(T [S) .",
"cite_spans": [
{
"start": 405,
"end": 408,
"text": "[S)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 130,
"end": 142,
"text": "(Figure l(b)",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Statistical Model",
"sec_num": "2"
},
{
"text": "The most likely parse under the model is then:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Statistical Model",
"sec_num": "2"
},
{
"text": "Tb~,, --argmaxT P (TIS ) (1) Second, the parser is a method for finding Tbest.",
"cite_spans": [
{
"start": 18,
"end": 24,
"text": "(TIS )",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Statistical Model",
"sec_num": "2"
},
{
"text": "This section describes the statistical model, while section 3 describes the parser.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Statistical Model",
"sec_num": "2"
},
{
"text": "The key to the statistical model is that any tree such as Figure l(b) can be represented as a set of baseNPs 2 and a set of dependencies as in Figure l(c) . We call the set of baseNPs B, and the set of dependencies D; Figure l ",
"cite_spans": [
{
"start": 143,
"end": 154,
"text": "Figure l(c)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 218,
"end": 226,
"text": "Figure l",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Statistical Model",
"sec_num": "2"
},
{
"text": "S is the sentence with words tagged for part of speech. That is, S =< (wl,tl), (w2,t2)... (w~,t,) >.",
"cite_spans": [
{
"start": 90,
"end": 97,
"text": "(w~,t,)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "P(TIS ) = P(B,D]S) = P(B[S) x P(D]S,B) (2)",
"sec_num": null
},
{
"text": "For POS tagging we use a maximum-entropy tagger described in (Ratnaparkhi 96) . The tagger performs at around 97% accuracy on Wall Street Journal Text, and is trained on the first 40,000 sentences of the Penn Treebank (Marcus et al. 93) .",
"cite_spans": [
{
"start": 61,
"end": 77,
"text": "(Ratnaparkhi 96)",
"ref_id": null
},
{
"start": 218,
"end": 236,
"text": "(Marcus et al. 93)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "P(TIS ) = P(B,D]S) = P(B[S) x P(D]S,B) (2)",
"sec_num": null
},
{
"text": "Given S and B, the reduced sentence :~ is defined as the subsequence of S which is formed by removing punctuation and reducing all baseNPs to their head-word alone.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(TIS ) = P(B,D]S) = P(B[S) x P(D]S,B) (2)",
"sec_num": null
},
{
"text": "~A baseNP or 'minimal' NP is a non-recursive NP, i.e. none of its child constituents are NPs. The term was first used in (l:tamshaw and Marcus 95).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(TIS ) = P(B,D]S) = P(B[S) x P(D]S,B) (2)",
"sec_num": null
},
{
"text": "John/NNP Smith/NNP, the/DT president/NN of/IN IBM/NNP, announced/VBD his/PR, P$ resignation/NN yesterday/NN . announced yesterday } Figure 1 : An overview of the representation used by the model. (a) The tagged sentence; (b) A candidate parse-tree (the correct one); (c) A dependency representation of (b). Square brackets enclose baseNPs (heads of baseNPs are marked in bold). Arrows show modifier --* head dependencies. Section 2.1 describes how arrows are labeled with non-terminal triples from the parse-tree. Non-head words within baseNPs are excluded from the dependency structure; (d) B, the set of baseNPs, and D, the set of dependencies, are extracted from (c).",
"cite_spans": [],
"ref_spans": [
{
"start": 132,
"end": 140,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "(a)",
"sec_num": null
},
{
"text": "Thus the reduced sentence is an array of word/tag pairs, S=< (t~l,tl),(@2,f2)...(@r~,f,~)>, where m _~ n. For example for Figure l(a) Example 1 S = < (Smith, ggP), (president, NN) , (of, IN) , (IBM, NNP) , (announced, VBD), (resignation, N N), (yesterday, N g ) > Sections 2.1 to 2.4 describe the dependency model. Section 2.5 then describes the baseNP model, which uses bigram tagging techniques similar to (Ramshaw and Marcus 95; Church 88 ).",
"cite_spans": [
{
"start": 164,
"end": 179,
"text": "(president, NN)",
"ref_id": null
},
{
"start": 182,
"end": 190,
"text": "(of, IN)",
"ref_id": null
},
{
"start": 193,
"end": 203,
"text": "(IBM, NNP)",
"ref_id": null
},
{
"start": 206,
"end": 259,
"text": "(announced, VBD), (resignation, N N), (yesterday, N g",
"ref_id": null
},
{
"start": 408,
"end": 431,
"text": "(Ramshaw and Marcus 95;",
"ref_id": null
},
{
"start": 432,
"end": 441,
"text": "Church 88",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "(a)",
"sec_num": null
},
{
"text": "Dependencies The dependency model is limited to relationships between words in reduced sentences such as Ex-ample 1. The mapping from trees to dependency structures is central to the dependency model. It is defined in two steps: 1. For each constituent P --.< C1...Cn > in the parse tree a simple set of rules 3 identifies which of the children Ci is the 'head-child' of P. For example, NN would be identified as the head-child of NP ~ <DET JJ 33 NN>, VP would be identified as the head-child of $ -* <NP VP>. Head-words propagate up through the tree, each parent receiving its head-word from its head-child. For example, in S --~ </~P VP>, S gets its head-word, announced, 3The rules are essentially the same as in (Magerman 95; Jelinek et al. 94) . These rules are also used to find the head-word of baseNPs, enabling the mapping from S and B to S. from its head-child, the VP. 2. Head-modifier relationships are now extracted from the tree in Figure 2 . Figure 3 illustrates how each constituent contributes a set of dependency relationships. VBD is identified as the head-child of VP ---,\" <VBD NP NP>. The head-words of the two NPs, resignation and yesterday, both modify the head-word of the VBD, announced. Dependencies are labeled by the modifier non-terminal, lip in both of these cases, the parent non-terminal, VP, and finally the head-child non-terminal, VBD. The triple of nonterminals at the start, middle and end of the arrow specify the nature of the dependency relationship -<liP,S,VP> represents a subject-verb dependency, <PP ,liP ,liP> denotes prepositional phrase modification of an liP, and so on 4. Each word in the reduced sentence, with the exception of the sentential head 'announced', modifies exactly one other word. We use the notation AF(j) = (hi, Rj) ( 3)to state that the jth word in the reduced sentence is a modifier to the hjth word, with relationship Rj 5. AF stands for 'arrow from'. Rj is the triple of labels at the start, middle and end of the arrow. For example, wl = Smith in this sentence, 4The triple can also be viewed as representing a semantic predicate-argument relationship, with the three elements being the type of the argument, result and functot respectively. This is particularly apparent in Categorial Grammar formalisms (Wood 93) , which make an explicit link between dependencies and functional application.",
"cite_spans": [
{
"start": 716,
"end": 729,
"text": "(Magerman 95;",
"ref_id": null
},
{
"start": 730,
"end": 748,
"text": "Jelinek et al. 94)",
"ref_id": null
},
{
"start": 1773,
"end": 1781,
"text": "(hi, Rj)",
"ref_id": null
},
{
"start": 2276,
"end": 2285,
"text": "(Wood 93)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 946,
"end": 954,
"text": "Figure 2",
"ref_id": "FIGREF2"
},
{
"start": 957,
"end": 965,
"text": "Figure 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Mapping from Trees to Sets of",
"sec_num": "2.1"
},
{
"text": "5For the head-word of the entire sentence hj = 0, with Rj=<Label of the root of the parse tree >. So in this case, AF(5) = (0, < S >). and ~5 = announced, so AF(1) = (5, <NP,S,VP>).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Mapping from Trees to Sets of",
"sec_num": "2.1"
},
{
"text": "D is now defined as the m-tuple of dependencies: n = {(AF(1),AF(2)...AF(m)}. The model assumes that the dependencies are independent, so that:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Mapping from Trees to Sets of",
"sec_num": "2.1"
},
{
"text": "P(DIS, B) = 11 P(AF(j)IS' B) (4) j=l",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Mapping from Trees to Sets of",
"sec_num": "2.1"
},
{
"text": "This section describes the way P(AF(j)]S, B) is estimated. The same sentence is very unlikely to appear both in training and test data, so we need to back-offfrom the entire sentence context. We believe that lexical information is crucial to attachment decisions, so it is natural to condition on the words and tags. Let 1) be the vocabulary of all words seen in training data, T be the set of all part-of-speech tags, and TTCAZA f be the training set, a set of reduced sentences. We define the following functions:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Calculating Dependency Probabilities",
"sec_num": "2.2"
},
{
"text": "\u2022 ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Calculating Dependency Probabilities",
"sec_num": "2.2"
},
{
"text": "(c,d) with rela- tionship R. Formally, C (R, <a, b), <e, d) ) = Z h(S[k] = (a,b), SIll = (c,d), AF(k) = (l,R)) -\u00a2 c T'R~gZ2q\" k3_-1..1~1, l\u00a2:k (6) \u2022 F(RI(a, b), (c, d) )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Calculating Dependency Probabilities",
"sec_num": "2.2"
},
{
"text": "is the probability that (a, b) modifies (c, d) with relationship R, given that (a, b) and (e, d) appear in the same reduced sentence. The",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Calculating Dependency Probabilities",
"sec_num": "2.2"
},
{
"text": "maximum-likelihood estimate of F(RI (a, b), (c, d) ) is: C(R, (a, b), (c, d) ) (7) fi'(Rl<a ,b), <c,d) )= C( (a,b), (c,d) )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Calculating Dependency Probabilities",
"sec_num": "2.2"
},
{
"text": "We can now make the following approximation:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Calculating Dependency Probabilities",
"sec_num": "2.2"
},
{
"text": "P(AF(j) = (hi, Rj) IS, B)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Calculating Dependency Probabilities",
"sec_num": "2.2"
},
{
"text": "Ek=l P(P I eNote that we count multiple co-occurrences in a single sentence, e.g. if 3=(<a,b>,<c,d>,<c,d>)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "then C(< a,b >,< c,d >) = C(< c,d >,< a,b >) = 2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "where 79 is the set of all triples of non-terminals. The denominator is a normalising factor which ensures that E P(AF(j) = (k,p) l S, B) = 1 k=l..rn,k~j,pe'P From (4) and 8:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "P(DIS, B) ~",
"eq_num": "(9)"
}
],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "YT The denominator of (9) is constant, so maximising P(D [S, B) over D for fixed S, B is equivalent to maximising the product of the numerators, Af(DIS, B). (This considerably simplifies the parsing process):",
"cite_spans": [
{
"start": 57,
"end": 63,
"text": "[S, B)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "m N(DIS, B) = I-[ 6), Zh ) ) (10) j=l 2.3",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "The Distance Measure An estimate based on the identities of the two tokens alone is problematic. Additional context, in particular the relative order of the two words and the distance between them, will also strongly influence the likelihood of one word modifying the other. For example consider the relationship between 'sales' and the three tokens of 'of': Example 2 Shaw, based in Dalton, Ga., has annual sales of about $1.18 billion, and has economies of scale and lower raw-material costs that are expected to boost the profitability of Armstrong's brands, sold under the Armstrong and Evans-Black names .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "In this sentence 'sales' and 'of' co-occur three times. The parse tree in training data indicates a relationship in only one of these cases, so this sentence would contribute an estimate of \u00bd that the two words are related. This seems unreasonably low given that 'sales of' is a strong collocation. The latter two instances of 'of' are so distant from 'sales' that it is unlikely that there will be a dependency.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "This suggests that distance is a crucial variable when deciding whether two words are related. It is included in the model by defining an extra 'distance' variable, A, and extending C, F and /~ to include this variable. For example, C( (a, b), (c, d), A) is the number of times (a, b) and (c, d) appear in the same sentence at a distance A apart. (11) is then maximised instead of (10):",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "rn At(DIS, B) = 1-I P (Rj I ((vj, tj) , (~hj, [hj) , Aj,ni) j=l (11) A simple example of Aj,hj would be Aj,hj = hj -j. However, other features of a sentence, such as punctuation, are also useful when deciding if two words are related. We have developed a heuristic 'distance' measure which takes several such features into account The current distance measure Aj,h~ is the combination of 6 features, or questions (we motivate the choice of these questions qualitatively -section 4 gives quantitative results showing their merit):",
"cite_spans": [
{
"start": 22,
"end": 37,
"text": "(Rj I ((vj, tj)",
"ref_id": null
},
{
"start": 40,
"end": 50,
"text": "(~hj, [hj)",
"ref_id": null
},
{
"start": 53,
"end": 59,
"text": "Aj,ni)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "Question 1 Does the hjth word precede or follow the jth word? English is a language with strong word order, so the order of the two words in surface text will clearly affect their dependency statistics.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "Question 2 Are the hjth word and the jth word adjacent? English is largely right-branching and head-initial, which leads to a large proportion of dependencies being between adjacent words 7. Table 1 shows just how local most dependencies are. Question 3 Is there a verb between the hjth word and the jth word? Conditioning on the exact distance between two words by making Aj,hj = hj -j leads to severe sparse data problems. But Table 1 shows the need to make finer distance distinctions than just whether two words are adjacent. Consider the prepositions 'to', 'in' and 'of' in the following sentence:",
"cite_spans": [],
"ref_spans": [
{
"start": 191,
"end": 198,
"text": "Table 1",
"ref_id": null
},
{
"start": 429,
"end": 436,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "Example 3 Oil stocks escaped the brunt of Friday's selling and several were able to post gains , including Chevron , which rose 5/8 to 66 3//8 in Big Board composite trading of 2.4 million shares.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "The prepositions' main candidates for attachment would appear to be the previous verb, 'rose', and the baseNP heads between each preposition and this verb. They are less likely to modify a more distant verb such as 'escaped'. Question 3 allows the parser to prefer modification of the most recent verb -effectively another, weaker preference for right-branching structures. Table 2 shows that 94% of dependencies do not cross a verb, giving empirical evidence that question 3 is useful.",
"cite_spans": [],
"ref_spans": [
{
"start": 374,
"end": 381,
"text": "Table 2",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "ZFor example in '(John (likes (to (go (to (University (of Pennsylvania)))))))' all dependencies are between adjacent words.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "Questions 4, 5 and 6",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "\u2022 Are there 0, 1, 2, or more than 2 'commas' between the hith word and the jth word? (All symbols tagged as a ',' or ':' are considered to be 'commas').",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "\u2022 Is there a 'comma' immediately following the first of the hjth word and the jth word?",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "\u2022 Is there a 'comma' immediately preceding the second of the hjth word and the jth word?",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "People find that punctuation is extremely useful for identifying phrase structure, and the parser described here also relies on it heavily. Commas are not considered to be words or modifiers in the dependency model -but they do give strong indications about the parse structure. Questions 4, 5 and 6 allow the parser to use this information.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "P(R I (S)",
"sec_num": null
},
{
"text": "The maximum likelihood estimator in (7) is likely to be plagued by sparse data problems -C( (,.~j, {j), (wa~,{h,) , Aj,h i) may be too low to give a reliable estimate, or worse still it may be zero leaving the estimate undefined. (Collins 95) describes how a backed-off estimation strategy is used for making prepositional phrase attachment decisions. The idea is to back-off to estimates based on less context. In this case, less context means looking at the POS tags rather than the specific words.",
"cite_spans": [
{
"start": 104,
"end": 113,
"text": "(wa~,{h,)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Sparse Data",
"sec_num": "2.4"
},
{
"text": "There are four estimates, El, E2, Ea and E4, based respectively on: 1) both words and both tags; 2) ~j and the two POS tags; 3) ~hj and the two POS tags; 4) the two POS tags alone. (y, ~,,j), A~,,,,) xelJ y~/~ where Y is the set of all words seen in training data: the other definitions of C follow similarly.",
"cite_spans": [],
"ref_spans": [
{
"start": 181,
"end": 199,
"text": "(y, ~,,j), A~,,,,)",
"ref_id": null
}
],
"eq_spans": [],
"section": "Sparse Data",
"sec_num": "2.4"
},
{
"text": "Estimates 2 and 3 compete -for a given pair of words in test data both estimates may exist and they are equally 'specific' to the test case example. (Collins 95) suggests the following way of combining them, which favours the estimate appearing more often in training data: E2a -'12 + '~a (14) 62 + 63 This gives three estimates: El, E2a and E4, a similar situation to trigram language modeling for speech recognition (Jelinek 90) , where there are trigram, bigram and unigram estimates. (Jelinek 90) describes a deleted interpolation method which combines these estimates to give a 'smooth' estimate, and the model uses a variation of this idea: 62 + 6a + 1 These A vMues have the desired property of increasing as the denominator of the more 'specific' estimator increases. We think that a proper implementation of deleted interpolation is likely to improve results, although basing estimates on co-occurrence counts alone has the advantage of reduced training times.",
"cite_spans": [
{
"start": 149,
"end": 161,
"text": "(Collins 95)",
"ref_id": null
},
{
"start": 418,
"end": 430,
"text": "(Jelinek 90)",
"ref_id": null
},
{
"start": 488,
"end": 500,
"text": "(Jelinek 90)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Sparse Data",
"sec_num": "2.4"
},
{
"text": "If",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Sparse Data",
"sec_num": "2.4"
},
{
"text": "The overall model would be simpler if we could do without the baseNP model and frame everything in terms of dependencies. However the baseNP model is needed for two reasons. First, while adjacency between words is a good indicator of whether there is some relationship between them, this indicator is made substantially stronger if baseNPs are reduced to a single word. Second, it means that words internal to baseNPs are not included in the co-occurrence counts in training data. Otherwise, in a phrase like 'The Securities and Exchange Commission closed yesterday', pre-modifying nouns like 'Securities' and 'Exchange' would be included in cooccurrence counts, when in practice there is no way that they can modify words outside their baseNP. The baseNP model can be viewed as tagging the gaps between words with S(tart), C(ontinue), E(nd), B(etween) or N(ull) symbols, respectively meaning that the gap is at the start of a BaseNP, continues a BaseNP, is at the end of a BaseNP, is between two adjacent baseNPs, or is between two words which are both not in BaseNPs. We call the gap before the ith word Gi (a sentence with n words has n -1 gaps The baseNP model considers the words directly to the left and right of each gap, and whether there is a comma between the two words (we write ci = 1 if there is a comma, ci = 0 otherwise). Probability estimates are based on counts of consecutive pairs of words in unreduced training data sentences, where baseNP boundaries define whether gaps fall into the S, C, E, B or N categories. The probability of a baseNP sequence in an unreduced sentence S is then:",
"cite_spans": [
{
"start": 843,
"end": 852,
"text": "B(etween)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The BaseNP Model",
"sec_num": "2.5"
},
{
"text": "1-I P (G, I ~,,_,,ti_l, wi,t,,c,) ",
"cite_spans": [
{
"start": 6,
"end": 33,
"text": "(G, I ~,,_,,ti_l, wi,t,,c,)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The BaseNP Model",
"sec_num": "2.5"
},
{
"text": "i=2...n",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The BaseNP Model",
"sec_num": "2.5"
},
{
"text": "The estimation method is analogous to that described in the sparse data section of this paper. The method is similar to that described in (Ramshaw and Marcus 95; Church 88) , where baseNP detection is also framed as a tagging problem.",
"cite_spans": [
{
"start": 138,
"end": 161,
"text": "(Ramshaw and Marcus 95;",
"ref_id": null
},
{
"start": 162,
"end": 172,
"text": "Church 88)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The BaseNP Model",
"sec_num": "2.5"
},
{
"text": "The probability of a parse tree T, given a sentence S, is:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Summary of the Model",
"sec_num": "2.6"
},
{
"text": "P(T[S) = P(B, DIS) = P(BIS ) x P(D[S, B)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Summary of the Model",
"sec_num": "2.6"
},
{
"text": "The denominator in Equation 9is not actually constant for different baseNP sequences, hut we make this approximation for the sake of efficiency and simplicity. In practice this is a good approximation because most baseNP boundaries are very well defined, so parses which have high enough P (BIS ) to be among the highest scoring parses for a sentence tend to have identical or very similar baseNPs. Parses are ranked by the following quantityg: Af (DIS, B) . The parser finds the tree which maximises (20) subject to the hard constraint that dependencies cannot cross.",
"cite_spans": [
{
"start": 290,
"end": 296,
"text": "(BIS )",
"ref_id": null
},
{
"start": 448,
"end": 456,
"text": "(DIS, B)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Summary of the Model",
"sec_num": "2.6"
},
{
"text": "P(BIS ) x AZ(DIS, B)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Summary of the Model",
"sec_num": "2.6"
},
{
"text": "9in fact we also model the set of unary productions, U, in the tree, which are of the form P -~< Ca >. This introduces an additional term, P(UIB , S), into (20).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Summary of the Model",
"sec_num": "2.6"
},
{
"text": "Model This section describes two modifications which improve the model's performance.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Further Improvements to the",
"sec_num": "2.7"
},
{
"text": "\u2022 In addition to conditioning on whether dependencies cross commas, a single constraint concerning punctuation is introduced. If for any constituent Z in the chart Z --+ <.. X \u00a5 . . > two of its children X and \u00a5 are separated by a comma, then the last word in \u00a5 must be directly followed by a comma, or must be the last word in the sentence. In training data 96% of commas follow this rule. The rule also has the benefit of improving efficiency by reducing the number of constituents in the chart.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Further Improvements to the",
"sec_num": "2.7"
},
{
"text": "\u2022 The model we have described thus far takes the single best sequence of tags from the tagger, and it is clear that there is potential for better integration of the tagger and parser. We have tried two modifications. First, the current estimation methods treat occurrences of the same word with different POS tags as effectively distinct types. Tags can be ignored when lexical information is available by defining C(a,c)= E C ((a,b>, (c,d>) ",
"cite_spans": [
{
"start": 427,
"end": 441,
"text": "((a,b>, (c,d>)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Some Further Improvements to the",
"sec_num": "2.7"
},
{
"text": "(21) b,deT",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Further Improvements to the",
"sec_num": "2.7"
},
{
"text": "where 7\" is the set of all tags. Hence C (a, c) is the number of times that the words a and c occur in the same sentence, ignoring their tags. The other definitions in (13) are similarly redefined, with POS tags only being used when backing off from lexical information. This makes the parser less sensitive to tagging errors. Second, for each word wi the tagger can provide the distribution of tag probabilities P(tiIS) (given the previous two words are tagged as in the best overall sequence of tags) rather than just the first best tag. The score for a parse in equation 20then has an additional term, 1-[,'=l P(ti IS), the product of probabilities of the tags which it contains. Ideally we would like to integrate POS tagging into the parsing model rather than treating it as a separate stage. This is an area for future research.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Further Improvements to the",
"sec_num": "2.7"
},
{
"text": "The Parsing Algorithm",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "3",
"sec_num": null
},
{
"text": "The parsing algorithm is a simple bottom-up chart parser. There is no grammar as such, although in practice any dependency with a triple of nonterminals which has not been seen in training data will get zero probability. Thus the parser searches through the space of all trees with nonterminal triples seen in training data. Probabilities of baseNPs in the chart are calculated using (19), while probabilities for other constituents are derived from the dependencies and baseNPs that they contain. A dynamic programming algorithm is used: if two proposed constituents span the same set of words, have the same label, head, and distance from Figure 4 : Diagram showing how two constituents join to form a new constituent. Each operation gives two new probability terms: one for the baseNP gap tag between the two constituents, and the other for the dependency between the head words of the two constituents.",
"cite_spans": [],
"ref_spans": [
{
"start": 641,
"end": 649,
"text": "Figure 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "3",
"sec_num": null
},
{
"text": "the head to the left and right end of the constituent, then the lower probability constituent can be safely discarded. Figure 4 shows how constituents in the chart combine in a bottom-up manner.",
"cite_spans": [],
"ref_spans": [
{
"start": 119,
"end": 127,
"text": "Figure 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "3",
"sec_num": null
},
{
"text": "The parser was trained on sections 02 -21 of the Wall Street Journal portion of the Penn Treebank (Marcus et al. 93) (approximately 40,000 sentences), and tested on section 23 (2,416 sentences). For comparison SPATTER (Magerman 95; Jelinek et al. 94) was also tested on section 23. We use the PARSEVAL measures (Black et al. 91) Crossing Brackets = number of constituents which violate constituent boundaries with a constituent in the treebank parse. For a constituent to be 'correct' it must span the same set of words (ignoring punctuation, i.e. all tokens tagged as commas, colons or quotes) and have the same label l\u00b0 as a constituent in the treebank 1\u00b0SPATTER collapses ADVP and PRT to the same label, for comparison we also removed this distinction when Table 4 : The contribution of various components of the model. The results are for all sentences of < 100 words in section 23 using model (3). For 'no lexical information' all estimates are based on POS tags alone. For 'no distance measure' the distance measure is Question 1 alone (i.e. whether zbj precedes or follows ~hj).",
"cite_spans": [
{
"start": 218,
"end": 231,
"text": "(Magerman 95;",
"ref_id": null
},
{
"start": 232,
"end": 250,
"text": "Jelinek et al. 94)",
"ref_id": null
},
{
"start": 311,
"end": 328,
"text": "(Black et al. 91)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 760,
"end": 767,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "4"
},
{
"text": "parse. Four configurations of the parser were tested:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "4"
},
{
"text": "(1) The basic model; (2) The basic model with the punctuation rule described in section 2.7; (3) Model (2) with tags ignored when lexical information is present, as described in 2.7; and (4) Model (3) also using the full probability distributions for POS tags. We should emphasise that test data outside of section 23 was used for all development of the model, avoiding the danger of implicit training on section 23. Table 3 shows the results of the tests. Table 4 shows results which indicate how different parts of the system contribute to performance.",
"cite_spans": [],
"ref_spans": [
{
"start": 417,
"end": 424,
"text": "Table 3",
"ref_id": null
},
{
"start": 457,
"end": 464,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "4"
},
{
"text": "All tests were made on a Sun SPARCServer 1000E, using 100% of a 60Mhz SuperSPARC processor. The parser uses around 180 megabytes of memory, and training on 40,000 sentences (essentially extracting the co-occurrence counts from the corpus) takes under 15 minutes. Loading the hash table of bigram counts into memory takes approximately 8 minutes.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Performance Issues",
"sec_num": "4.1"
},
{
"text": "Two strategies are employed to improve parsing efficiency. First, a constant probability threshold is used while building the chart -any constituents with lower probability than this threshold are discarded. If a parse is found, it must be the highest ranked parse by the model (as all constituents discarded have lower probabilities than this parse and could calculating scores. not, therefore, be part of a higher probability parse). If no parse is found, the threshold is lowered and parsing is attempted again. The process continues until a parse is found.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Performance Issues",
"sec_num": "4.1"
},
{
"text": "Second, a beam search strategy is used. For each span of words in the sentence the probability, Ph, of the highest probability constituent is recorded. All other constituents spanning the same words must have probability greater than ~-~ for some constant beam size /3 -constituents which fall out of this beam are discarded. The method risks introducing search-errors, but in practice efficiency can be greatly improved with virtually no loss of accuracy. Table 5 shows the trade-off between speed and accuracy as the beam is narrowed. Table 5 : The trade-off between speed and accuracy as the beam-size is varied. Model (3) was used for this test on all sentences < 100 words in section 23.",
"cite_spans": [],
"ref_spans": [
{
"start": 457,
"end": 464,
"text": "Table 5",
"ref_id": null
},
{
"start": 537,
"end": 544,
"text": "Table 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Performance Issues",
"sec_num": "4.1"
},
{
"text": "We have shown that a simple statistical model based on dependencies between words can parse Wall Street Journal news text with high accuracy.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": "5"
},
{
"text": "The method is equally applicable to tree or dependency representations of syntactic structures. There are many possibilities for improvement, which is encouraging. More sophisticated estimation techniques such as deleted interpolation should be tried. Estimates based on relaxing the distance measure could also be used for smoothing-at present we only back-off on words. The distance measure could be extended to capture more context, such as other words or tags in the sentence. Finally, the model makes no account of valency.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": "5"
}
],
"back_matter": [
{
"text": "I would like to thank Mitch Marcus, Jason Eisner, Dan Melamed and Adwait Ratnaparkhi for many useful discussions, and for comments on earlier versions of this paper. I would also like to thank David Magerman for his help with testing SPATTER.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
},
{
"text": "Score = S1 * $2 * P(Gap--S I announced, his) * P (<np,vp,vbd> I resignation, announced) ",
"cite_spans": [
{
"start": 49,
"end": 87,
"text": "(<np,vp,vbd> I resignation, announced)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "annex",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "A Procedure for Quantitatively Comparing the Syntactic Coverage of English Grammars",
"authors": [
{
"first": "E",
"middle": [],
"last": "Black",
"suffix": ""
}
],
"year": 1991,
"venue": "Proceedings of the February 1991 DARPA Speech and Natural Language Workshop",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "E. Black et al. 1991. A Procedure for Quantita- tively Comparing the Syntactic Coverage of En- glish Grammars. Proceedings of the February 1991 DARPA Speech and Natural Language Workshop.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Generalized LR Parsing of Natural Language (Corpora) with Unification-Based Grammars",
"authors": [
{
"first": "T",
"middle": [],
"last": "Briscoe",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Carroll",
"suffix": ""
}
],
"year": 1993,
"venue": "Computational Linguistics",
"volume": "19",
"issue": "1",
"pages": "25--60",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T. Briscoe and J. Carroll. 1993. Generalized LR Parsing of Natural Language (Corpora) with Unification-Based Grammars. Computa- tional Linguistics, 19(1):25-60.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "A Stochastic Parts Program and Noun Phrase Parser for Unrestricted Text",
"authors": [
{
"first": "K",
"middle": [],
"last": "Church",
"suffix": ""
}
],
"year": 1988,
"venue": "Second Conference on Applied Natural Language Processing, A CL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "K. Church. 1988. A Stochastic Parts Program and Noun Phrase Parser for Unrestricted Text. Second Conference on Applied Natural Language Process- ing, A CL.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Prepositional Phrase Attachment through a Backed-off Model",
"authors": [
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Brooks",
"suffix": ""
}
],
"year": 1995,
"venue": "Proceedings of the Third Workshop on Very Large Corpora",
"volume": "",
"issue": "",
"pages": "27--38",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Collins and J. Brooks. 1995. Prepositional Phrase Attachment through a Backed-off Model. Proceed- ings of the Third Workshop on Very Large Cor- pora, pages 27-38.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Self-organized Language Modeling for Speech Recognition",
"authors": [
{
"first": "F",
"middle": [],
"last": "Jelinek",
"suffix": ""
}
],
"year": 1990,
"venue": "Readings in Speech Recognition",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "F. Jelinek. 1990. Self-organized Language Model- ing for Speech Recognition. In Readings in Speech Recognition. Edited by Waibel and Lee. Morgan Kaufmann Publishers.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Decision Tree Parsing using a Hidden Derivation Model",
"authors": [
{
"first": "F",
"middle": [],
"last": "Jelinek",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Lafferty",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Magerman",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Mercer",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Ratnaparkhi",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Roukos",
"suffix": ""
}
],
"year": 1994,
"venue": "Proceedings of the 1994 Human Language Technology Workshop",
"volume": "",
"issue": "",
"pages": "272--277",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "F. Jelinek, J. Lafferty, D. Magerman, R. Mercer, A. Ratnaparkhi, S. Roukos. 1994. Decision Tree Pars- ing using a Hidden Derivation Model. Proceedings of the 1994 Human Language Technology Work- shop, pages 272-277.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Grammatical Trigrams: A Probabilistic Model of Link Grammar",
"authors": [
{
"first": "J",
"middle": [],
"last": "Lafferty",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Sleator And",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Temperley",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of the 1992 AAAI Fall Symposium on Probabilistic Approaches to Natural Language",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Lafferty, D. Sleator and, D. Temperley. 1992. Grammatical Trigrams: A Probabilistic Model of Link Grammar. Proceedings of the 1992 AAAI Fall Symposium on Probabilistic Approaches to Natural Language.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Statistical Decision-Tree Models for Parsing",
"authors": [
{
"first": "D",
"middle": [],
"last": "Magerman",
"suffix": ""
}
],
"year": 1995,
"venue": "Proceedings of the 33rd Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "276--283",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Magerman. 1995. Statistical Decision-Tree Mod- els for Parsing. Proceedings of the 33rd Annual Meeting of the Association for Computational Linguistics, pages 276-283.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Pearl: A Probabilistic Chart Parser",
"authors": [
{
"first": "D",
"middle": [],
"last": "Magerman",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Marcus",
"suffix": ""
}
],
"year": 1991,
"venue": "Proceedings of the 1991 European A CL Conference",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Magerman and M. Marcus. 1991. Pearl: A Prob- abilistic Chart Parser. Proceedings of the 1991 Eu- ropean A CL Conference, Berlin, Germany.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Building a Large Annotated Corpus of English: the Penn Treebank",
"authors": [
{
"first": "M",
"middle": [],
"last": "Marcus",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Santorini",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Marcinkiewicz",
"suffix": ""
}
],
"year": 1993,
"venue": "Computational Linguistics",
"volume": "19",
"issue": "2",
"pages": "313--330",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Marcus, B. Santorini and M. Marcinkiewicz. 1993. Building a Large Annotated Corpus of En- glish: the Penn Treebank. Computational Linguis- tics, 19(2):313-330.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Inside-Outside Reestimation from Partially Bracketed Corpora",
"authors": [
{
"first": "F",
"middle": [],
"last": "Pereira",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Schabes",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of the 30th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "128--135",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "F. Pereira and Y. Schabes. 1992. Inside-Outside Reestimation from Partially Bracketed Corpora. Proceedings of the 30th Annual Meeting of the Association for Computational Linguistics, pages 128-135.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Text Chunking using Transformation-Based Learning",
"authors": [
{
"first": "L",
"middle": [],
"last": "Ramshaw",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Marcus",
"suffix": ""
}
],
"year": 1995,
"venue": "Proceedings of the Third Workshop on Very Large Corpora",
"volume": "",
"issue": "",
"pages": "82--94",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "L. Ramshaw and M. Marcus. 1995. Text Chunk- ing using Transformation-Based Learning. Pro- ceedings of the Third Workshop on Very Large Corpora, pages 82-94.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "A Maximum Entropy Model for Part-Of-Speech Tagging",
"authors": [
{
"first": "A",
"middle": [],
"last": "Ratnaparkhi",
"suffix": ""
}
],
"year": 1996,
"venue": "Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Ratnaparkhi. 1996. A Maximum Entropy Model for Part-Of-Speech Tagging. Conference on Em- pirical Methods in Natural Language Processing, May 1996.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Categorial Grammars, Routledge",
"authors": [
{
"first": "M",
"middle": [
"M"
],
"last": "Wood",
"suffix": ""
}
],
"year": 1993,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. M. Wood. 1993. Categorial Grammars, Rout- ledge.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "(d) shows B and D for this example. For the purposes of our model, T = (B, D), and:",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF2": {
"text": "Parse tree for the reduced sentence in Example 1. The head-child of each constituent is shown in bold. The head-word for each constituent is shown in parentheses.",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF3": {
"text": "Each constituent with n children (in this case n = 3) contributes n -1 dependencies.",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF4": {
"text": "C ( (a, b/, (c, d / ) for a, c c l], and b, d c 7-is the number of times (a,b I and (c,d) are seen in the same reduced sentence in training data. m) is an indicator function which is 1 if m is true, 0 if x is false. \u2022 C (R, (a, b), (c, d) ) is the number of times (a, b / and (c, d) are seen in the same reduced sentence in training data, and {a, b) modifies",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF5": {
"text": "~j), (~-,.j), Aj,,.j ) = ~ C( (~,j, {j), (=, ~-,.~), Aj,,,j ) xCV c((~), <%), %,,,~) = ~ ~ c( <~, ~),",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF6": {
"text": "E1 exists, i.e. 61 > 0 ~(Rj I (~J,~J), (~h~,ih~), A~,h~) :A1 x El + (i-At) x E23 (15) Else If Eus exists, i.e. 62 + 63 > 0 A2 x E23 + (1 -A2) x E4(16)Else ~'(R~I(~.~,~)), (\u00a2hj,t),j),Aj,hj) = E4 (17)(Jelinek 90) describes how to find A values in (15) and (16) which maximise the likelihood of held-out data. We have taken a simpler approach,",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF7": {
"text": "and (11) define P(B]S) and",
"uris": null,
"type_str": "figure",
"num": null
},
"TABREF1": {
"text": "",
"content": "<table><tr><td>Distance</td><td colspan=\"2\">1 < 2</td><td colspan=\"2\">< 5 < 10</td></tr><tr><td colspan=\"4\">Percentage 74.2 86.3 95.6</td><td>99.0</td></tr><tr><td colspan=\"5\">Table 1: Percentage of dependencies vs. distance be-</td></tr><tr><td colspan=\"5\">tween the head words involved. These figures count</td></tr><tr><td colspan=\"5\">baseNPs as a single word, and are taken from WSJ</td></tr><tr><td>training data.</td><td/><td/><td/></tr><tr><td colspan=\"2\">Number of verbs</td><td colspan=\"2\">0 <=1</td><td><=2</td></tr><tr><td>Percentage</td><td/><td>94.1</td><td>98.1</td><td>99.3</td></tr></table>",
"html": null,
"num": null,
"type_str": "table"
}
}
}
} |