File size: 64,696 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 | {
"paper_id": "P01-1045",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T09:30:15.384839Z"
},
"title": "From Chunks to Function-Argument Structure: A Similarity-Based Approach",
"authors": [
{
"first": "Sandra",
"middle": [],
"last": "K\u00fcbler",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of T\u00fcbingen",
"location": {
"postCode": "D-72074",
"settlement": "T\u00fcbingen",
"country": "Germany"
}
},
"email": "kuebler@sfs.nphil.uni-tuebingen.de"
},
{
"first": "Erhard",
"middle": [
"W"
],
"last": "Hinrichs",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of T\u00fcbingen",
"location": {
"postCode": "D-72074",
"settlement": "T\u00fcbingen",
"country": "Germany"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Chunk parsing has focused on the recognition of partial constituent structures at the level of individual chunks. Little attention has been paid to the question of how such partial analyses can be combined into larger structures for complete utterances. Such larger structures are not only desirable for a deeper syntactic analysis. They also constitute a necessary prerequisite for assigning function-argument structure. The present paper offers a similaritybased algorithm for assigning functional labels such as subject, object, head, complement, etc. to complete syntactic structures on the basis of prechunked input. The evaluation of the algorithm has concentrated on measuring the quality of functional labels. It was performed on a German and an English treebank using two different annotation schemes at the level of function-argument structure. The results of 89.73 % correct functional labels for German and 90.40 % for English validate the general approach. 1 With the exception of dependency-grammar-based parsers (Tapanainen and J\u00e4rvinen, 1997; Br\u00f6ker et al., 1994; Lesmo and Lombardo, 2000), where functional labels are treated as first-class citizens as relations between words, and recent work on a semi-automatic method for treebank construction (Brants et al., 1997), little has been reported on",
"pdf_parse": {
"paper_id": "P01-1045",
"_pdf_hash": "",
"abstract": [
{
"text": "Chunk parsing has focused on the recognition of partial constituent structures at the level of individual chunks. Little attention has been paid to the question of how such partial analyses can be combined into larger structures for complete utterances. Such larger structures are not only desirable for a deeper syntactic analysis. They also constitute a necessary prerequisite for assigning function-argument structure. The present paper offers a similaritybased algorithm for assigning functional labels such as subject, object, head, complement, etc. to complete syntactic structures on the basis of prechunked input. The evaluation of the algorithm has concentrated on measuring the quality of functional labels. It was performed on a German and an English treebank using two different annotation schemes at the level of function-argument structure. The results of 89.73 % correct functional labels for German and 90.40 % for English validate the general approach. 1 With the exception of dependency-grammar-based parsers (Tapanainen and J\u00e4rvinen, 1997; Br\u00f6ker et al., 1994; Lesmo and Lombardo, 2000), where functional labels are treated as first-class citizens as relations between words, and recent work on a semi-automatic method for treebank construction (Brants et al., 1997), little has been reported on",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Current research on natural language parsing tends to gravitate toward one of two extremes: robust, partial parsing with the goal of broad data coverage versus more traditional parsers that aim at complete analysis for a narrowly defined set of data. Chunk parsing (Abney, 1991; Abney, 1996 ) offers a particularly promising and by now widely used example of the former kind. The main insight that underlies the chunk parsing strategy is to isolate the (finite-state) analysis of non-recursive syntactic structure, i.e. chunks, from larger, recursive structures. This results in a highly-efficient parsing architecture that is realized as a cascade of finite-state transducers and that pursues a leftmost longest-match patternmatching strategy at each level of analysis.",
"cite_spans": [
{
"start": 265,
"end": 278,
"text": "(Abney, 1991;",
"ref_id": "BIBREF0"
},
{
"start": 279,
"end": 290,
"text": "Abney, 1996",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Despite the popularity of the chunk parsing approach, there seems to be a gap in current research:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Chunk parsing research has focused on the recognition of partial constituent structures at the level of individual chunks. By comparison, little or no attention has been paid to the question of how such partial analyses can be combined into larger structures for complete utterances. Such larger structures are not only desirable for a deeper syntactic analysis; they also constitute a necessary prerequisite for assigning function-argument structure.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Automatic assignment of function-argument structure has long been recognized as a desideratum beyond pure syntactic labeling (Marcus et al., 1994) 1 . The present paper offers a similarity-based algorithm for assigning functional labels such as subject, object, head, complement, etc. to complete syntactic structures on the basis of pre-chunked input. The evaluation of the algorithm has concentrated on measuring the quality of these functional labels.",
"cite_spans": [
{
"start": 125,
"end": 146,
"text": "(Marcus et al., 1994)",
"ref_id": "BIBREF14"
},
{
"start": 254,
"end": 284,
"text": "object, head, complement, etc.",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In order to ensure a robust and efficient architecture, T\u00fcSBL, a similarity-based chunk parser, is organized in a three-level architecture, with the output of each level serving as input for the next higher level. The first level is part-of-speech (POS) tagging of the input string with the help of the bigram tagger LIKELY (Feldweg, 1993) . 2 The parts of speech serve as pre-terminal elements for the next step, i.e. the chunk analysis. Chunk parsing is carried out by an adapted version of Abney's (1996) CASS parser, which is realized as a cascade of finite-state transducers. The chunks, which extend if possible to the simplex clause level, are then remodeled into complete trees in the tree construction level.",
"cite_spans": [
{
"start": 324,
"end": 339,
"text": "(Feldweg, 1993)",
"ref_id": "BIBREF10"
},
{
"start": 342,
"end": 343,
"text": "2",
"ref_id": null
},
{
"start": 493,
"end": 507,
"text": "Abney's (1996)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The T\u00fcSBL Architecture",
"sec_num": "2"
},
{
"text": "The tree construction level is similar to the DOP approach (Bod, 1998; Bod, 2000) in that it uses complete tree structures instead of rules. Contrary to Bod, we only use the complete trees and do not allow tree cuts. Thus the number of possible combinations of partial trees is strictly controlled. The resulting parser is highly efficient (3770 English sentences took 106.5 seconds to parse on an Ultra Sparc 10).",
"cite_spans": [
{
"start": 59,
"end": 70,
"text": "(Bod, 1998;",
"ref_id": "BIBREF2"
},
{
"start": 71,
"end": 81,
"text": "Bod, 2000)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The T\u00fcSBL Architecture",
"sec_num": "2"
},
{
"text": "The division of labor between the chunking and tree construction modules can best be illustrated by an example.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chunking and Tree Construction",
"sec_num": "3"
},
{
"text": "For sentences such as the input shown in Fig. 1 , the chunker produces a structure in which some constituents remain unattached or partially annotated in keeping with the chunk-parsing strategy to factor out recursion and to resolve only unambiguous attachments.",
"cite_spans": [],
"ref_spans": [
{
"start": 41,
"end": 48,
"text": "Fig. 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Chunking and Tree Construction",
"sec_num": "3"
},
{
"text": "Since chunks are by definition non-recursive structures, a chunk of a given category cannot fully automatic recognition of functional labels.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chunking and Tree Construction",
"sec_num": "3"
},
{
"text": "2 The inventory of POS tags is based on the STTS (Schiller et al., 1995) for German and on the Penn Treebank tagset (Santorini, 1990) contain another chunk of the same type. In the case at hand, the two prepositional phrases ('prep p') about nine and in the evening in the chunk output cannot be combined into a single chunk, even though semantically these words constitute a single constituent. At the level of tree construction, as shown in Fig. 2 , the prohibition against recursive phrases is suspended. Therefore, the proper PP attachment becomes possible. Additionally, the phrase about nine was wrongly categorized as a 'prep p'. Such miscategorizations can arise if a given word can be assigned more than one POS tag. In the case of about the tags 'in' (for: preposition) or 'rb' (for: adverb) would be appropriate. However, since the POS tagger cannot resolve this ambiguity from local context, the underspecified tag 'about' is assigned, instead. However, this can in turn lead to misclassification in the chunker.",
"cite_spans": [
{
"start": 49,
"end": 72,
"text": "(Schiller et al., 1995)",
"ref_id": "BIBREF16"
},
{
"start": 116,
"end": 133,
"text": "(Santorini, 1990)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [
{
"start": 443,
"end": 449,
"text": "Fig. 2",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Chunking and Tree Construction",
"sec_num": "3"
},
{
"text": "The most obvious deficiency of the chunk output shown in Fig. 1 is that the structure does not contain any information about the functionargument structure of the chunked phrases. However, once a (more) complete parse structure is created, the grammatical function of each major constituent needs to be identified. The labels SUBJ (for: subject), HD (for: head), ADJ (for: adjunct) COMP (for: complement), SPR (for: specifier), which appear as edge-labels between tree nodes in Fig. 2 , signify the grammatical functions of the constituents in question. E.g. the label SUBJ encodes that the NP that is the subject of the whole sentence. The label ADJ above the phrase about nine in the evening signifies that this phrase is an adjunct of the verb get. T\u00fcSBL currently uses as its instance base two semi-automatically constructed treebanks of German and English that consist of appr. 67,000 and 35,000 fully annotated sentences, respectively 3 . Each treebank uses a different annotation scheme at the level of function-argument structure 4 . As shown in Table 1 , the English treebank uses a total of 13 functional labels, while the German treebank has a richer set of 36 function labels.",
"cite_spans": [],
"ref_spans": [
{
"start": 57,
"end": 63,
"text": "Fig. 1",
"ref_id": "FIGREF0"
},
{
"start": 478,
"end": 484,
"text": "Fig. 2",
"ref_id": "FIGREF1"
},
{
"start": 1054,
"end": 1061,
"text": "Table 1",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Chunking and Tree Construction",
"sec_num": "3"
},
{
"text": "For German, therefore, the task of tree construction is slightly more complex because of the larger set of functional labels. Fig. 3 gives an example for a German input sentence and its corresponding chunk parser output.",
"cite_spans": [],
"ref_spans": [
{
"start": 126,
"end": 132,
"text": "Fig. 3",
"ref_id": "FIGREF2"
}
],
"eq_spans": [],
"section": "Chunking and Tree Construction",
"sec_num": "3"
},
{
"text": "In this case, the subconstituents of the extraposed coordinated noun phrase are not attached to the simplex clause that ends with the non-finite verb that is typically in clause-final position in declarative main clauses of German. Moreover, each conjunct of the coordinated noun phrase forms a completely flat structure. T\u00fcSBL's tree construction module enriches the chunk output as shown in Fig. 4 . Here the internally recursive NP conjuncts have been coordinated and in-Input: dann w\"urde ich vielleicht noch vorschlagen Donnerstag den elften und Freitag den zw\"olften August ( tegrated correctly into the clause as a whole. In addition, function labels such as MOD (for: modifier), HD (for head), ON (for: subject), OA (for: direct object), OV (for: verbal object), and APP (for: apposition) have been added that encode the function-argument structure of the sentence.",
"cite_spans": [
{
"start": 580,
"end": 581,
"text": "(",
"ref_id": null
}
],
"ref_spans": [
{
"start": 393,
"end": 399,
"text": "Fig. 4",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "Chunking and Tree Construction",
"sec_num": "3"
},
{
"text": "The tree construction algorithm is based on the machine learning paradigm of memory-based learning (Stanfill and Waltz, 1986) . 5 Memorybased learning assumes that the classification of a given input should be based on the similarity to previously seen instances of the same type that have been stored in memory. This paradigm is an instance of lazy learning in the sense that these previously encountered instances are stored \"as is\" and are crucially not abstracted over, as is typically the case in rule-based systems or other learning approaches. Previous applications of 5 Memory-based learning has recently been applied to a variety of NLP classification tasks, including part-of-speech tagging, noun phrase chunking, grapheme-phoneme conversion, word sense disambiguation, and PP attachment (see (Daelemans et al., 1999; Veenstra et al., 2000; Zavrel et al., 1997) for details). memory-based learning to NLP tasks consisted of classification problems in which the set of classes to be learnt was simple in the sense that the class items did not have any internal structure and the number of distinct items was small. Since in the current application, the set of classes are parse trees, the classification task is much more complex. The classification is simple only in those cases where a direct hit is found, i.e. where a complete match of the input with a stored instance exists. In all other cases, the most similar tree from the instance base needs to be modified to match the chunked input. This means that the output tree will group together only those elements from the chunked input for which there is evidence in the instance base. If these strategies fail for complete chunks, T\u00fcSBL attempts to match smaller subchunks.",
"cite_spans": [
{
"start": 99,
"end": 125,
"text": "(Stanfill and Waltz, 1986)",
"ref_id": "BIBREF17"
},
{
"start": 128,
"end": 129,
"text": "5",
"ref_id": null
},
{
"start": 803,
"end": 827,
"text": "(Daelemans et al., 1999;",
"ref_id": "BIBREF9"
},
{
"start": 828,
"end": 850,
"text": "Veenstra et al., 2000;",
"ref_id": "BIBREF20"
},
{
"start": 851,
"end": 871,
"text": "Zavrel et al., 1997)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Similarity-based Tree Construction",
"sec_num": "4"
},
{
"text": "The algorithm used for tree construction is presented in a slightly simplified form in Figs. 5-8. For readability, we assume here that chunks and complete trees share the same data structure so that subroutines like string yield can operate on both of them indiscriminately.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Similarity-based Tree Construction",
"sec_num": "4"
},
{
"text": "The main routine construct tree in Fig. 5 separates the list of input chunks and passes each one to the subroutine process chunk in Fig. 6 where the chunk is then turned into one or more (partial) trees. process chunk first checks if a complete match with an instance from the instance base is possible. 6 If this is not the case, a partial match on the lexical level is attempted. If a partial tree is found, attach next chunk in Fig. 7 and extend tree in Fig. 8 are used to extend the tree by either attaching one more chunk or by resorting to a comparison of the missing parts of the chunk with tree extensions on the POS level. attach next chunk is necessary to ensure that the best possible tree is found even in the rare case that the original segmentation into chunks contains mistakes. If no partial tree is found, the tree construction backs off to finding a complete match at the POS level or to starting the subroutine for processing a chunk recursively with all the subchunks of the present chunk.",
"cite_spans": [],
"ref_spans": [
{
"start": 35,
"end": 41,
"text": "Fig. 5",
"ref_id": null
},
{
"start": 132,
"end": 138,
"text": "Fig. 6",
"ref_id": null
},
{
"start": 431,
"end": 437,
"text": "Fig. 7",
"ref_id": null
},
{
"start": 457,
"end": 463,
"text": "Fig. 8",
"ref_id": "FIGREF4"
}
],
"eq_spans": [],
"section": "Similarity-based Tree Construction",
"sec_num": "4"
},
{
"text": "The application of memory-based techniques is implemented in the two subroutines complete match and partial match. The presentation of the two cases as two separate subroutines is for expository purposes only. In the actual implementation, the search is carried out only once. The two subroutines exist because of the postprocessing of the chosen tree, which is necessary for partial matches and which also deviates from standard memory-based applications. Postprocessing mainly consists of shortening the tree from the instance base so that it covers only those parts of the chunk that could be matched. However, if the match is done on the lexical level, a correction of tagging errors is possible if there is enough evidence in the instance base. T\u00fcSBL currently uses an overlap metric, the most basic metric for in- 6 string yield returns the sequence of words included in the input structure, pos yield the sequence of POS tags. stances with symbolic features, as its similarity metric. This overlap metric is based on either lexical or POS features. Instead of applying a more sophisticated metric like the weighted overlap metric, T\u00fcSBL uses a backing-off approach that heavily favors similarity of the input with prestored instances on the basis of substring identity. Splitting up the classification and adaptation process into different stages allows T\u00fcSBL to prefer analyses with a higher likelihood of being correct. This strategy enables corrections of tagging and segmentation errors that may occur in the chunked input.",
"cite_spans": [
{
"start": 820,
"end": 821,
"text": "6",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Similarity-based Tree Construction",
"sec_num": "4"
},
{
"text": "Quantitive evaluations of robust parsers typically focus on the three PARSEVAL measures: labeled precision, labeled recall and crossing accuracy. It has frequently been pointed out that these evaluation parameters provide little or no information as to whether a parser assigns the correct semantic structure to a given input, if the set of category labels comprises only syntactic categories in the narrow sense, i.e. includes only names of lexical and phrasal categories. This justified criticism observes that a measure of semantic accuracy can only be obtained if the gold standard includes annotations of syntactic-semantic dependencies between bracketed constituents. It is to answer this criticism that the evaluation of the T\u00fcSBL system presented here focuses on the correct assignment of functional labels. For an in-depth evaluation that focuses on syntactic categories, we refer the interested reader to (K\u00fcbler and Hinrichs, 2001) .",
"cite_spans": [
{
"start": 915,
"end": 942,
"text": "(K\u00fcbler and Hinrichs, 2001)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Quantitative Evaluation",
"sec_num": "5"
},
{
"text": "The quantitative evaluation of T\u00fcSBL has been conducted on the treebanks of German and English described in section 3. Each treebank uses a different annotation scheme at the level of function-argument structure. As shown in Table 1 , the English treebank uses a total of 13 functional labels, while the German treebank has a richer set of 36 function labels.",
"cite_spans": [],
"ref_spans": [
{
"start": 225,
"end": 233,
"text": "Table 1",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Quantitative Evaluation",
"sec_num": "5"
},
{
"text": "The evaluation consisted of a ten-fold crossvalidation test, where the training data provide an instance base of already seen cases for T\u00fcSBL's tree construction module. The evaluation was performed for both the German and English data. For each language, the following parameters were measured: 1. labeled precision for syntactic cat- ing approach like ours. We have, therefore divided the incorrectly matched nodes into three categories: the genuine false positives where a tree structure is found that matches the gold standard, but is assigned the wrong label; nodes which, relative to the gold standard, remain unattached in the output tree; and nodes contained in the gold standard for which no match could be found in the parser output. Our approach follows a strategy of positing and attaching nodes only if sufficient evidence can be found in the instance base. Therefore the latter two categories cannot really be considered errors in the strict sense. Nevertheless, in future research we will attempt to significantly reduce the proportion of unattached and unmatched nodes by exploring matching algorithms that permit a higher level of generalization when matching the input against the instance base. What is encouraging about the recall results reported in Table 2 is that the parser produces genuine false positives for an average of only 3.03 % for German and 3.25 % for English.",
"cite_spans": [],
"ref_spans": [
{
"start": 1271,
"end": 1278,
"text": "Table 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Quantitative Evaluation",
"sec_num": "5"
},
{
"text": "For German, labeled precision for syntactic categories yielded 81.56 % correctness. While these results do not reach the performance reported for other parsers (cf. (Collins, 1999; Charniak, 1997) ), it is important to note that the two treebanks consist of transliterated spontaneous speech data. The fragmentary and partially illformed nature of such spoken data makes them harder to analyze than written data such as the Penn treebank typically used as gold standard.",
"cite_spans": [
{
"start": 165,
"end": 180,
"text": "(Collins, 1999;",
"ref_id": "BIBREF7"
},
{
"start": 181,
"end": 196,
"text": "Charniak, 1997)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Quantitative Evaluation",
"sec_num": "5"
},
{
"text": "It should also be kept in mind that the basic PARSEVAL measures were developed for parsers that have as their main goal a complete analysis that spans the entire input. This runs counter to the basic philosophy underlying an amended chunk parser such as T\u00fcSBL, which has as its main goal robustness of partially analyzed structures.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Quantitative Evaluation",
"sec_num": "5"
},
{
"text": "Labeled precision of functional labels for the German data resulted in a score of 89.73 % correctness. For English, precision of functional labels was 90.40 %. The slightly lower correctness rate for German is a reflection of the larger set of function labels used by the grammar. This raises interesting more general issues about trade-offs in accuracy and granularity of functional annotations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Quantitative Evaluation",
"sec_num": "5"
},
{
"text": "The results of 89.73 % (German) and 90.40 % (English) correctly assigned functional labels validate the general approach. We anticipate further improvements by experimenting with more sophisticated similarity metrics 7 and by enriching the linguistic information in the instance base. The latter can, for example, be achieved by preserving more structural information contained in the chunk parse. Yet another dimension for experimentation concerns the way in which the algorithm generalizes over the instance base. In the current version of the algorithm, generalization heavily relies on lexical and part-of-speech information. However, a richer set of backing-off strategies that rely on larger domains of structure are easy to envisage and are likely to significantly improve recall performance.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Research",
"sec_num": "6"
},
{
"text": "While we intend to pursue all three dimensions of refining the basic algorithm reported here, we have to leave an experimentation of which modifications yield improved results to future research.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Research",
"sec_num": "6"
},
{
"text": "See(Stegmann et al., 2000;Kordoni, 2000) for further details.4 The annotation for German follows the topologicalfield-model standardly used in empirical studies of German syntax. The annotation for English is modeled after the theoretical assumptions of Head-Driven Phrase Structure Grammar.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "construct tree(chunk list, treebank):while (chunk list is not empty) do remove first chunk from chunk list process chunk(chunk, treebank)Figure 5: Pseudo-code for tree construction, main routine.process chunk(chunk, treebank): words := string yield(chunk) tree := complete match(words, treebank) if (tree is not empty) direct hit, then output(tree)i.e. complete chunk found in treebank else tree := partial match(words, treebank) if (tree is not empty) then if (tree = postfix of chunk) then tree1 := attach next chunk(tree, treebank) if (tree is not empty) then tree := tree1 if ((chunk -tree) is not empty)if attach next chunk succeeded then tree := extend tree(chunk -tree, tree, treebank) chunk might consist of both chunks output(tree) if ((chunk -tree) is not empty) chunk might consist of both chunks (s.a.) then process chunk(chunk -tree, treebank)i.e. process remaining chunk else back off to POS sequence pos := pos yield(chunk) tree := complete match(pos, treebank) if (tree is not empty) then output(tree) else back off to subchunks while (chunk is not empty) do remove first subchunk c1 from chunk process chunk(c1, treebank) Figure 6 : Pseudo-code for tree construction, subroutine process chunk.attach next chunk(tree, treebank): attempts to attach the next chunk to the tree take first chunk chunk2 from chunk list words2 := string yield(tree, chunk2) tree2 := complete match(words2, treebank) if (tree2 is not empty) then remove chunk2 from chunk list return tree2 else return empty Figure 7 : Pseudo-code for tree construction, subroutine attach next chunk. extend tree(rest chunk, tree, treebank): extends the tree on basis of POS comparison words := string yield(tree) rest pos := pos yield(rest chunk) tree2 := partial match(words + rest pos, treebank) if ((tree2 is not empty) and (subtree(tree, tree2))) then return tree2 else return empty",
"cite_spans": [],
"ref_spans": [
{
"start": 1139,
"end": 1147,
"text": "Figure 6",
"ref_id": null
},
{
"start": 1500,
"end": 1508,
"text": "Figure 7",
"ref_id": null
}
],
"eq_spans": [],
"section": "annex",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Parsing by chunks",
"authors": [
{
"first": "Steven",
"middle": [],
"last": "Abney",
"suffix": ""
}
],
"year": 1991,
"venue": "Principle-Based Parsing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Steven Abney. 1991. Parsing by chunks. In Robert Berwick, Steven Abney, and Caroll Tenney, editors, Principle-Based Parsing. Kluwer Academic Pub- lishers.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Partial parsing via finite-state cascades",
"authors": [
{
"first": "Steven",
"middle": [],
"last": "Abney",
"suffix": ""
}
],
"year": 1996,
"venue": "Workshop on Robust Parsing (ESSLLI '96)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Steven Abney. 1996. Partial parsing via finite-state cascades. In John Carroll, editor, Workshop on Ro- bust Parsing (ESSLLI '96).",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Beyond Grammar: An Experience-Based Theory of Language",
"authors": [
{
"first": "Rens",
"middle": [],
"last": "Bod",
"suffix": ""
}
],
"year": 1998,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rens Bod. 1998. Beyond Grammar: An Experience- Based Theory of Language. CSLI Publications, Stanford, California.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Parsing with the shortest derivation",
"authors": [
{
"first": "Rens",
"middle": [],
"last": "Bod",
"suffix": ""
}
],
"year": 2000,
"venue": "Proceedings of COLING 2000",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rens Bod. 2000. Parsing with the shortest derivation. In Proceedings of COLING 2000, Saarbr\u00fccken, Germany.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Tagging grammatical functions",
"authors": [
{
"first": "Thorsten",
"middle": [],
"last": "Brants",
"suffix": ""
},
{
"first": "Wojiech",
"middle": [],
"last": "Skut",
"suffix": ""
},
{
"first": "Brigitte",
"middle": [],
"last": "Krenn",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of EMNLP-2 1997",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Thorsten Brants, Wojiech Skut, and Brigitte Krenn. 1997. Tagging grammatical functions. In Proceed- ings of EMNLP-2 1997, Providence, RI.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Concurrent lexicalized dependency parsing: the ParseTalk model",
"authors": [
{
"first": "Norbert",
"middle": [],
"last": "Br\u00f6ker",
"suffix": ""
},
{
"first": "Udo",
"middle": [],
"last": "Hahn",
"suffix": ""
},
{
"first": "Susanne",
"middle": [],
"last": "Schacht",
"suffix": ""
}
],
"year": 1994,
"venue": "Proceedings of COLING 94",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Norbert Br\u00f6ker, Udo Hahn, and Susanne Schacht. 1994. Concurrent lexicalized dependency parsing: the ParseTalk model. In Proceedings of COLING 94, Kyoto, Japan.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Statistical parsing with a context-free grammar and word statistics",
"authors": [
{
"first": "Eugene",
"middle": [],
"last": "Charniak",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of the Fourteenth National Conference on Artifical Intelligence",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Eugene Charniak. 1997. Statistical parsing with a context-free grammar and word statistics. In Pro- ceedings of the Fourteenth National Conference on Artifical Intelligence, Menlo Park.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Head-Driven Statistical Models for Natural Language Parsing",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 1999,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael Collins. 1999. Head-Driven Statistical Mod- els for Natural Language Parsing. Ph.D. thesis, University of Pennsylvania.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "1999) reports that the gain ratio similarity metric has yielded excellent results for the NLP applications considered by these investigators",
"authors": [
{
"first": "",
"middle": [],
"last": "Daelemans",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "7 (Daelemans et al., 1999) reports that the gain ratio sim- ilarity metric has yielded excellent results for the NLP appli- cations considered by these investigators.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Forgetting exceptions is harmful in language learning",
"authors": [
{
"first": "Walter",
"middle": [],
"last": "Daelemans",
"suffix": ""
},
{
"first": "Jakub",
"middle": [],
"last": "Zavrel",
"suffix": ""
},
{
"first": "Antal",
"middle": [],
"last": "Van Den",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Bosch",
"suffix": ""
}
],
"year": 1999,
"venue": "Machine Learning: Special Issue on Natural Language Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Walter Daelemans, Jakub Zavrel, and Antal van den Bosch. 1999. Forgetting exceptions is harmful in language learning. Machine Learning: Special Is- sue on Natural Language Learning, 34.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Stochastische Wortartendisambiguierung f\u00fcr das Deutsche: Untersuchungen mit dem robusten System LIKELY. Technical report",
"authors": [
{
"first": "Helmut",
"middle": [],
"last": "Feldweg",
"suffix": ""
}
],
"year": 1993,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Helmut Feldweg. 1993. Stochastische Wortartendis- ambiguierung f\u00fcr das Deutsche: Untersuchungen mit dem robusten System LIKELY. Technical re- port, Universit\u00e4t T\u00fcbingen. SfS-Report-08-93.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Stylebook for the English Treebank in VERBMOBIL",
"authors": [
{
"first": "",
"middle": [],
"last": "Valia Kordoni",
"suffix": ""
}
],
"year": 2000,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Valia Kordoni. 2000. Stylebook for the English Treebank in VERBMOBIL. Technical Report 241, Verbmobil.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "T\u00fcSBL: A similarity-based chunk parser for robust syntactic processing",
"authors": [
{
"first": "Sandra",
"middle": [],
"last": "K\u00fcbler",
"suffix": ""
},
{
"first": "Erhard",
"middle": [
"W"
],
"last": "Hinrichs",
"suffix": ""
}
],
"year": 2001,
"venue": "Proceedings of HLT 2001",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sandra K\u00fcbler and Erhard W. Hinrichs. 2001. T\u00fcSBL: A similarity-based chunk parser for robust syntactic processing. In Proceedings of HLT 2001, San Diego, Cal.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Automatic assignment of grammatical relations",
"authors": [
{
"first": "Leonardo",
"middle": [],
"last": "Lesmo",
"suffix": ""
},
{
"first": "Vincenzo",
"middle": [],
"last": "Lombardo",
"suffix": ""
}
],
"year": 2000,
"venue": "Proceedings of LREC 2000",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Leonardo Lesmo and Vincenzo Lombardo. 2000. Au- tomatic assignment of grammatical relations. In Proceedings of LREC 2000, Athens, Greece.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "The Penn Treebank: Annotating predicate argument structure",
"authors": [
{
"first": "Mitchell",
"middle": [],
"last": "Marcus",
"suffix": ""
},
{
"first": "Grace",
"middle": [],
"last": "Kim",
"suffix": ""
},
{
"first": "Mary",
"middle": [
"Ann"
],
"last": "Marcinkiewicz",
"suffix": ""
},
{
"first": "Robert",
"middle": [],
"last": "Macintyre",
"suffix": ""
},
{
"first": "Anne",
"middle": [],
"last": "Bies",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Ferguson",
"suffix": ""
},
{
"first": "Karen",
"middle": [],
"last": "Katz",
"suffix": ""
},
{
"first": "Britta",
"middle": [],
"last": "Schasberger",
"suffix": ""
}
],
"year": 1994,
"venue": "Proceedings of HLT 94",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mitchell Marcus, Grace Kim, Mary Ann Marcinkiewicz, Robert MacIntyre, Anne Bies, Mark Ferguson, Karen Katz, and Britta Schas- berger. 1994. The Penn Treebank: Annotating predicate argument structure. In Proceedings of HLT 94, Plainsboro, New Jersey.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Part-Of-Speech Tagging Guidelines for the Penn Treebank Project. University of Pennsylvania",
"authors": [
{
"first": "Beatrice",
"middle": [],
"last": "Santorini",
"suffix": ""
}
],
"year": 1990,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Beatrice Santorini. 1990. Part-Of-Speech Tagging Guidelines for the Penn Treebank Project. Univer- sity of Pennsylvania, 3rd Revision, 2nd Printing.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Guidelines f\u00fcr das Tagging deutscher Textkorpora mit STTS",
"authors": [
{
"first": "Anne",
"middle": [],
"last": "Schiller",
"suffix": ""
},
{
"first": "Simone",
"middle": [],
"last": "Teufel",
"suffix": ""
},
{
"first": "Christine",
"middle": [],
"last": "Thielen",
"suffix": ""
}
],
"year": 1995,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Anne Schiller, Simone Teufel, and Christine Thielen. 1995. Guidelines f\u00fcr das Tagging deutscher Text- korpora mit STTS. Technical report, Universit\u00e4ten Stuttgart and T\u00fcbingen. http://www.sfs.nphil.uni- tuebingen.de/Elwis/stts/stts.html.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Towards memory-based reasoning",
"authors": [
{
"first": "Craig",
"middle": [],
"last": "Stanfill",
"suffix": ""
},
{
"first": "David",
"middle": [
"L"
],
"last": "Waltz",
"suffix": ""
}
],
"year": 1986,
"venue": "Communications of the ACM",
"volume": "29",
"issue": "12",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Craig Stanfill and David L. Waltz. 1986. Towards memory-based reasoning. Communications of the ACM, 29(12).",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Stylebook for the German Treebank in VERBMOBIL",
"authors": [
{
"first": "Rosmary",
"middle": [],
"last": "Stegmann",
"suffix": ""
},
{
"first": "Heike",
"middle": [],
"last": "Schulz",
"suffix": ""
},
{
"first": "Erhard",
"middle": [
"W"
],
"last": "Hinrichs",
"suffix": ""
}
],
"year": 2000,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rosmary Stegmann, Heike Schulz, and Erhard W. Hinrichs. 2000. Stylebook for the German Tree- bank in VERBMOBIL. Technical Report 239, Verbmobil.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "A nonprojective dependency parser",
"authors": [
{
"first": "Pasi",
"middle": [],
"last": "Tapanainen",
"suffix": ""
},
{
"first": "Timo",
"middle": [],
"last": "J\u00e4rvinen",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of ANLP'97",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Pasi Tapanainen and Timo J\u00e4rvinen. 1997. A non- projective dependency parser. In Proceedings of ANLP'97, Washington, D.C.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Memory-based word sense disambiguation. Computers and the Humanities, Special Issue on Senseval",
"authors": [
{
"first": "Jorn",
"middle": [],
"last": "Veenstra",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Van Den",
"suffix": ""
},
{
"first": "Sabine",
"middle": [],
"last": "Bosch",
"suffix": ""
},
{
"first": "Walter",
"middle": [],
"last": "Buchholz",
"suffix": ""
},
{
"first": "Jakub",
"middle": [],
"last": "Daelemans",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Zavrel",
"suffix": ""
}
],
"year": 2000,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jorn Veenstra, Antal van den Bosch, Sabine Buch- holz, Walter Daelemans, and Jakub Zavrel. 2000. Memory-based word sense disambiguation. Com- puters and the Humanities, Special Issue on Sense- val, Word Sense Disambiguations, 34.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Resolving PP attachment ambiguities with memory-based learning",
"authors": [
{
"first": "Jakub",
"middle": [],
"last": "Zavrel",
"suffix": ""
},
{
"first": "Walter",
"middle": [],
"last": "Daelemans",
"suffix": ""
},
{
"first": "Jorn",
"middle": [],
"last": "Veenstra",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of CoNLL'97",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jakub Zavrel, Walter Daelemans, and Jorn Veen- stra. 1997. Resolving PP attachment ambiguities with memory-based learning. In Proceedings of CoNLL'97, Madrid, Spain.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"num": null,
"uris": null,
"text": "Chunk parser output.",
"type_str": "figure"
},
"FIGREF1": {
"num": null,
"uris": null,
"text": "Sample tree construction output for the sentence inFig. 1.",
"type_str": "figure"
},
"FIGREF2": {
"num": null,
"uris": null,
"text": "Chunk parser output for a German sentence.",
"type_str": "figure"
},
"FIGREF3": {
"num": null,
"uris": null,
"text": "Tree construction output for the German sentence inFig. 3.",
"type_str": "figure"
},
"FIGREF4": {
"num": null,
"uris": null,
"text": "Pseudo-code for tree construction, subroutine extend tree. egories alone, and 2. labeled precision for functional labels.",
"type_str": "figure"
},
"TABREF3": {
"num": null,
"text": "The functional label set for the German and the English treebanks.",
"html": null,
"content": "<table/>",
"type_str": "table"
},
"TABREF5": {
"num": null,
"text": "Quantitative evaluation: precision.",
"html": null,
"content": "<table/>",
"type_str": "table"
}
}
}
} |