File size: 74,741 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 |
{
"paper_id": "O06-3001",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:07:37.008641Z"
},
"title": "Two-Fold Filtering for Chinese Subcategorization Acquisition with Diathesis Alternations Used as Heuristic Information 1",
"authors": [
{
"first": "Xiwu",
"middle": [],
"last": "Han",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Harbin Institute of Technology",
"location": {
"postCode": "150001",
"settlement": "Harbin",
"country": "China"
}
},
"email": ""
},
{
"first": "Tiejun",
"middle": [],
"last": "Zhao",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Harbin Institute of Technology",
"location": {
"postCode": "150001",
"settlement": "Harbin",
"country": "China"
}
},
"email": "tjzhao@mtlab.hit.edu.cn"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Automatically acquired lexicons with subcategorization information have been shown to be accurate and useful for some purposes, but their accuracy still shows room for improvement and their usefulness in many applications remains to be investigated. This paper proposes a twofold filtering method, which in experiments improved the performance of a Chinese acquisition system remarkably, with an increased precision rate of 76.94% and a recall rate of 83.83%, making the acquired lexicon much more practical for further manual proofreading and other NLP uses. And as far as we know, at the present time, these figures represent the best overall performance achieved in Chinese subcategorization acquisition and in similar researches focusing on other languages.",
"pdf_parse": {
"paper_id": "O06-3001",
"_pdf_hash": "",
"abstract": [
{
"text": "Automatically acquired lexicons with subcategorization information have been shown to be accurate and useful for some purposes, but their accuracy still shows room for improvement and their usefulness in many applications remains to be investigated. This paper proposes a twofold filtering method, which in experiments improved the performance of a Chinese acquisition system remarkably, with an increased precision rate of 76.94% and a recall rate of 83.83%, making the acquired lexicon much more practical for further manual proofreading and other NLP uses. And as far as we know, at the present time, these figures represent the best overall performance achieved in Chinese subcategorization acquisition and in similar researches focusing on other languages.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Subcategorization is a process that classifies a syntactic category into its subsets. [Chomsky 1965 ] defined the function of strict subcategorization features as appointing a set of constraints that dominate the selection of verbs and other arguments in deep structure. Subcategorization of verbs, as well as categorization of all words in a language, is often implemented by means of functional distributions, which constitute different environments or distributional patterns accessible for a verb or word. Such a distribution or environment is called a subcategorization frame (SCF), and is usually combined with both syntactic and semantic information. Therefore, verb subcategorization involves much more information than verb classification, which usually only classifies verbs into groups. SCFs, on the other hand, specify the category of the main anchor (verb hereby), the number of arguments, each argument's category and position with respect to the anchor, and other information, such as feature equations or node expansions 2 .",
"cite_spans": [
{
"start": 86,
"end": 99,
"text": "[Chomsky 1965",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "Recently, large subcategorized verbal lexicons have been shown to be crucially important for many tasks in natural language processing, such as probabilistic parsing [Korhonen 2001] and verb classifications [Schulte im Walde 2002; Korhonen 2003 ]. Since Brent reported his findings [Brent 1993 ], a considerable amount of research has focused on large-scale automatic acquisition of subcategorization frames and achieved some success, not only in English but also in many other languages, including German [Schulte im Walde 2002] , Spanish [Chrupala 2003 ], Czech [Sarkar and Zeman 2000] , Portuguese [Gamallo et al. 2002] , and Chinese [Han et al. 2004ab] . However, the relevant results are still far from sufficiently accurate and indicate that most of the existing methods are not yet practical. This is especially true for the Chinese subcategorization acquisition system, which has achieved a precision rate of 60.6%\u00b12.39% and a recall rate of 51.3%\u00b12.45% [Han et al. 2004b] . Detailed analysis of the system and acquisition results shows that besides the imperfect hypothesis generator, there are sources of both linguistic and statistical errors. Linguistic errors mainly result from the Zipfian distributions of syntactic patterns, and statistical errors derive mostly from the inappropriate assumption of independence among SCFs that verbs enter. Hence, the statistical filter of maximum likelihood estimation (MLE) performs badly with respect to lower-frequency SCF hypotheses. In this paper, the independence assumption is eliminated on the basis of diathesis alternations reported by [Han 2004] , and a two-fold filtering method is introduced, which first filters the hypotheses by means of a comparatively higher threshold and secondly, filters the left-out ones by means of a much lower threshold with diathesis alternatives of those accepted SCFs seeded as heuristic information.",
"cite_spans": [
{
"start": 166,
"end": 181,
"text": "[Korhonen 2001]",
"ref_id": "BIBREF9"
},
{
"start": 207,
"end": 230,
"text": "[Schulte im Walde 2002;",
"ref_id": null
},
{
"start": 231,
"end": 244,
"text": "Korhonen 2003",
"ref_id": "BIBREF10"
},
{
"start": 282,
"end": 293,
"text": "[Brent 1993",
"ref_id": "BIBREF0"
},
{
"start": 518,
"end": 529,
"text": "Walde 2002]",
"ref_id": "BIBREF15"
},
{
"start": 540,
"end": 554,
"text": "[Chrupala 2003",
"ref_id": "BIBREF3"
},
{
"start": 564,
"end": 587,
"text": "[Sarkar and Zeman 2000]",
"ref_id": "BIBREF14"
},
{
"start": 601,
"end": 622,
"text": "[Gamallo et al. 2002]",
"ref_id": "BIBREF4"
},
{
"start": 637,
"end": 656,
"text": "[Han et al. 2004ab]",
"ref_id": null
},
{
"start": 962,
"end": 980,
"text": "[Han et al. 2004b]",
"ref_id": "BIBREF6"
},
{
"start": 1597,
"end": 1607,
"text": "[Han 2004]",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "Experimental evaluation of the acquisition results of 48 Chinese verbs showed that the acquisition performance was improved remarkably, with the precision rate increased to 76.94% and the recall rate to 83.83%, making the acquired lexicon much more practical for further manual proofreading and other NLP uses. Although cross-lingual comparison may lack concrete significance, at the present time, these figures represent the best overall performance achieved in both Chinese subcategorization acquisition and in similar researches focusing on other languages.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "Section 2 introduces and analyzes the present Chinese SCF acquisition system and, in particular, its MLE filter. Section 3 briefly discusses the diathesis alternations used. Section 4 gives a complete description of our Two-fold filtering method. In section 5, the general Diathesis Alternations Used as Heuristic Information performance of the modified system is evaluated on the basis experiments. Finally, section 6 discusses our achievements, weak points and possible focuses for future work.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "In the system proposed by [Han et al. 2004b] , there are, generally, 4 steps in the auto-acquisition process of Chinese subcategorization. First, the corpus is processed with a cascaded HMM parser; second, all possible local patterns for verbs are abstracted; third, the verb patterns are classified into SCF hypotheses according to the predefined set; fourth, the hypotheses are checked statistically with an MLE filter. The actual application program consists of 6 parts, described in the following paragraphs.",
"cite_spans": [
{
"start": 26,
"end": 44,
"text": "[Han et al. 2004b]",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Subcategorization Acquisition and MLE Filtering",
"sec_num": "2."
},
{
"text": "a. Segmenting and tagging: The raw corpus is segmented into words and tagged with POS's by the comprehensive segmenting and tagging processor developed by MTLAB of the Computer Department in the Harbin Institute of Technology. The advantage of the POS definition is that it describes some subsets of nouns and verbs in Chinese.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Subcategorization Acquisition and MLE Filtering",
"sec_num": "2."
},
{
"text": "b. Parsing: The tagged sentences are parsed with a cascaded HMM parser 3 , developed by MTLAB of HIT, but only intermediate portion of the parsing results is used, which means that only the syntactic skeletons make difference and, thus, that the negative effects of some errors in the deep structures can be avoided. The training set of the parser consists of 20,000 sentences from the Chinese Tree Bank 4 [Zhao 2002 ].",
"cite_spans": [
{
"start": 406,
"end": 416,
"text": "[Zhao 2002",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Subcategorization Acquisition and MLE Filtering",
"sec_num": "2."
},
{
"text": "c. Error-driven correction: Some key errors occurring in the former two parts are corrected according to manually obtained error-driven rules, which generally concern words or POS in the corpus.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Subcategorization Acquisition and MLE Filtering",
"sec_num": "2."
},
{
"text": "d. Pattern abstraction: Verbs with the largest governing ranges are regarded as predicates; then, local patterns, previous phrases and syntactic tags are abstracted and generalized as argument types (see Table 1 ), and isolated parts are combined, generalized or omitted according to basic phrase rules presented in [Zhao 2002 ].",
"cite_spans": [
{
"start": 316,
"end": 326,
"text": "[Zhao 2002",
"ref_id": "BIBREF16"
}
],
"ref_spans": [
{
"start": 204,
"end": 211,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Subcategorization Acquisition and MLE Filtering",
"sec_num": "2."
},
{
"text": "e. Hypothesis generation: Based on linguistic restraining rules e.g., no more than two nominal phrases (NP) may occur in a series and no more than three in one pattern; and no positional phrase (PP), temporal complement (TP) or quantifier complement (MP) may occur with a nominal phrase before any predicate [Han et al. 2004a ] (see also ",
"cite_spans": [
{
"start": 308,
"end": 325,
"text": "[Han et al. 2004a",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Subcategorization Acquisition and MLE Filtering",
"sec_num": "2."
},
{
"text": "No serial occurrences nor occurrences in adjacency before NP f. Hypothesis filtering: According to the statistical reliability of each type of SCF hypothesis and the linguistic principle that arguments occur more frequently with predicates than adjuncts do, the hypotheses are filtered by means of maximum likelihood estimation (MLE), which has been shown to work better than other methods, such as the binomial hypothesis test (BHT), log likelihood ratio (LLR), and T-test [Korhonen 2001; Han et al. 2004b] . Table 3 shows an example of Chinese SCF acquisition performed using the proposed system. When SCF information is acquired for the verb \"zheng4ming2 \u8bc1\u660e\" (prove), a related sentence in the corpus is (a), our tagger and parser returns (b), and error-driven correction returns (c) with NDE errors and with the first BVP corrected 6 . Since the governing range of \"\u8bc1\u660e\" is larger than that of the verb \"zhui1wen4 \u8ffd\u95ee\" (ask), the other verb in this sentence, the program abstracts its local pattern BVP[vg LE] and previous phrase BNP, generalizes BNP and NDE as NP, combines the second NP with the isolated part \"\u5728/p\" in PP, and returns (d). Then, the hypothesis generator returns (e) as the possible SCF in which the verb may occur. Actually, in the corpus, 621 hypothesis tokens are generated, and among them, 92 ones are of same argument structures with (e); and thus, (e) can pass the MLE hypothesis test, so we obtain one SCF for \"zheng4ming2 \u8bc1\u660e\" as (f).",
"cite_spans": [
{
"start": 474,
"end": 489,
"text": "[Korhonen 2001;",
"ref_id": "BIBREF9"
},
{
"start": 490,
"end": 507,
"text": "Han et al. 2004b]",
"ref_id": "BIBREF6"
}
],
"ref_spans": [
{
"start": 510,
"end": 517,
"text": "Table 3",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "MP",
"sec_num": null
},
{
"text": "Due to noises that accumulate during segmenting, tagging, and parsing of the corpus, even though error-driven correction is implemented, the hypothesis generator does not perform as efficiently as hoped. Experimental results show that its imperfect performance accounts for about 12% of the falsely accepted SCFs and 15% of the unrecalled ones. However, detailed analysis of a considerable amount of data indicates that a larger source of errors is the MLE filter.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "MP",
"sec_num": null
},
{
"text": "The MLE method is closely related to the general distributional situation of the corpus. First, from the applied corpus a training set is drawn randomly; it must be large enough to ensure a similar SCF frequency distribution. Then, the frequency of a subcategorization frame scf i occurring with a verb v is recorded and used to estimate the possible probability p(scf i |v).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "MP",
"sec_num": null
},
{
"text": "Thirdly, an empirical threshold is determined, which ensures that a maximum value of the F measure will result for the training set. Finally, the threshold is used to filter out those SCF hypotheses with lower frequencies from the total set. Therefore, the statistical foundation of this filtering method is the assumption of independence among the SCFs that a verb enters, which can be probabilistically expressed in two formulas as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "MP",
"sec_num": null
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": ", , , ( | , ) 0 i j i j i j p scf scf v \u2200 \u2200 \u2260 = ,",
"eq_num": "(1)"
}
],
"section": "MP",
"sec_num": null
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "1 ( | ) 1 n i i p scf v = = \u2211 .",
"eq_num": "(2)"
}
],
"section": "MP",
"sec_num": null
},
{
"text": "In actual application, the probability p(scf i |v) is estimated from the observed frequency, and the conditional probability p(scf i |scf j , v) is assumed to be zero. However, this assumption can sometimes be far from appropriate.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "MP",
"sec_num": null
},
{
"text": "Much linguistic research focusing on child language acquisition has revealed that many children are able to create grammatical sentences previously unseen by them according to what they have learned, which implies that the widely-used independence assumption in the field of NLP may not be very appropriate, at least for syntactic patterns. If this assumption is removed, a possible heuristic could be the information of diathesis alternations, which is also another convincing anti-proof. Diathesis alternations are generally regarded as alternative ways, in which verbs express their arguments. Examples are as follows: (\u4ed6 \u628a \u82f9\u679c \u5403 \uf9ba\u3002)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Diathesis Alternations",
"sec_num": "3."
},
{
"text": "Here, the English verb break takes the causative-inchoative alternation as shown in sentences a and b, while sentences c and d indicate that the Chinese verb chi1 (\u5403, eat) may enter the ba-object-raising alternation where the object is shifted forward by the syntactic morpheme ba3 (\u628a) to the location between the subject and the predicate, as illustrated in Figure 1 .",
"cite_spans": [],
"ref_spans": [
{
"start": 359,
"end": 367,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Diathesis Alternations Used as Heuristic Information",
"sec_num": null
},
{
"text": "Therefore, we can conclude that for subcategorization acquisition, the independence assumption supporting the MLE filter is not as appropriate as previously thought. For a given verb, the assumption holds if and only if there is no diathesis alternation among all the SCFs it enters, and formulas (1) and (2) in Section 2 are efficient enough to serve as a foundation for an MLE method. Otherwise, if there are diathesis alternations among some of the SCFs that a verb enters, then formulas (1) and (2) must be modified as illustrated in formulas (3) and (4). In either case, for the sake of convenience, it is even better to combine the formulas as shown in (5) and (6). , , ,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Figure 1. An example of ba-object-raising alternation",
"sec_num": null
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "j i j i j p scf scf v \u2203 \u2203 \u2260 > ,",
"eq_num": "( | , ) 0 i"
}
],
"section": "Figure 1. An example of ba-object-raising alternation",
"sec_num": null
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "1 ( | ) 1 n i i p scf v = > \u2211 ,",
"eq_num": "(3)"
}
],
"section": "Figure 1. An example of ba-object-raising alternation",
"sec_num": null
},
{
"text": ", , ,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Figure 1. An example of ba-object-raising alternation",
"sec_num": null
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "j i j i j p scf scf v \u2200 \u2200 \u2260 \u2265 ,",
"eq_num": "( | , ) 0 i"
}
],
"section": "Figure 1. An example of ba-object-raising alternation",
"sec_num": null
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "1 ( | ) 1 n i i p scf v = \u2265 \u2211 .",
"eq_num": "(5)"
}
],
"section": "Figure 1. An example of ba-object-raising alternation",
"sec_num": null
},
{
"text": "For English verbs, much research has focused on diathesis alternation and relative applications [Levin 1993; Korhonen 1998; McCarthy 2001] , whereas for Chinese verbs, only a comprehensive set of 82 diathesis alternations that seem suitable for NLP tasks has been reported [Han 2004 ]. Han's diathesis alternations are defined on the basis of verb subcategorization for Chinese described in [Han et al. 2004b] ; among them, the arguments and SCFs are briefly defined in Table 1 and Table 2 8 in Section 2. Table 1 gives the definitions of argument types in Chinese SCFs, and Table 3 lists some constraints placed on both predicate verbs and their arguments. 8 Detailed descriptions of the SCFs and their arguments can be found in [Han et al. 2004a] .",
"cite_spans": [
{
"start": 96,
"end": 108,
"text": "[Levin 1993;",
"ref_id": "BIBREF11"
},
{
"start": 109,
"end": 123,
"text": "Korhonen 1998;",
"ref_id": "BIBREF8"
},
{
"start": 124,
"end": 138,
"text": "McCarthy 2001]",
"ref_id": "BIBREF12"
},
{
"start": 273,
"end": 282,
"text": "[Han 2004",
"ref_id": "BIBREF7"
},
{
"start": 391,
"end": 409,
"text": "[Han et al. 2004b]",
"ref_id": "BIBREF6"
},
{
"start": 658,
"end": 659,
"text": "8",
"ref_id": null
},
{
"start": 730,
"end": 748,
"text": "[Han et al. 2004a]",
"ref_id": "BIBREF5"
}
],
"ref_spans": [
{
"start": 470,
"end": 489,
"text": "Table 1 and Table 2",
"ref_id": "TABREF0"
},
{
"start": 506,
"end": 513,
"text": "Table 1",
"ref_id": null
},
{
"start": 575,
"end": 582,
"text": "Table 3",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Figure 1. An example of ba-object-raising alternation",
"sec_num": null
},
{
"text": "Ta1 chi1 le0 pin2guo3.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Figure 1. An example of ba-object-raising alternation",
"sec_num": null
},
{
"text": "From a corpus of 42,000 Chinese sentences automatically tagged with such SCFs, Han's alternation information was acquired via a combined approach, which makes use of linguistic knowledge and statistical methods. First, a set of candidates was generated according to the semantic and syntactic similarities between each pair of related sentences with the same predicate verb. Then, the candidates were checked by means of a frequency-based MLE filter. Finally, 67 SCF alternatives were automatically acquired, and 15 complemented, resulting in a statistically and linguistically reliable syntactic alternation set, a part of which is shown in Table 4 .",
"cite_spans": [],
"ref_spans": [
{
"start": 642,
"end": 649,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "ba-object-raising ba3",
"sec_num": null
},
{
"text": "scf i \u2190\u2192 scf j NP BAP V \u2190\u2192 NP BAP V BP NP NP V VP \u2190\u2192 NP V VP NP V MP VP \u2190\u2192 NP V VP NP BAP V VP \u2190\u2192 NP NP V VP NP BIP V JP \u2190\u2192 NP BIP V NP NP BIP V JP \u2190\u2192 NP BIP V QP NP BIP V JP \u2190\u2192 NP V JP MP NP BIP V MP \u2190\u2192 NP BIP V NP NP BIP V MP \u2190\u2192 NP BIP V QP NP V NP \u2190\u2192 NP NP V NP V JP NP \u2190\u2192 NP NP V JP ...... \u2190\u2192 ......",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Table 4. Some examples of Chinese diathesis alternations",
"sec_num": null
},
{
"text": "SCFs listed in the first and the third columns are alternatives of each other, and our analysis of the verbs that take certain alternation pairs shows that one alternative SCF almost always ensures the existence of the other. This means that the value of p(scf i |scf j , v) is much larger than zero if scf i and scf j form an alternation pair for a given verb.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Table 4. Some examples of Chinese diathesis alternations",
"sec_num": null
},
{
"text": "We can see from Section 3 that Han's diathesis alternations may well play a useful role as heuristic information for Chinese subcategorization acquisition. However, determining where and how to seed the heuristic remains difficult. [Korhonen 1998 ] applied diathesis alternations in Briscoe and Carroll's system to improve the performance of their BHT filter. Although the precision rate increased from 61.22% to 69.42% and the recall rate from 44.70% to 50.81%, the results were still not very accurate for possible practical NLP uses. Korhonen generated her one-way diathesis alternations from the ANLT dictionary, calculated the alternating Diathesis Alternations Used as Heuristic Information probability p(scf j |scfi) according to the number of common verbs that took the alternation (scf i \u2192scf j ), and used formulas 7and 8, where w is an empirical weight, to revise the observed",
"cite_spans": [
{
"start": 232,
"end": 246,
"text": "[Korhonen 1998",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Two-Fold Filtering Method",
"sec_num": "4."
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "p(scf i |v): if p(scf i |scf j , v) > 0, p(scf i |v) = p(scf i |v) -w(p(scf i |v)p(scf j | scf i ));",
"eq_num": "(7)"
}
],
"section": "Two-Fold Filtering Method",
"sec_num": "4."
},
{
"text": "if p(scf i |v) > 0 and p(scf j |v) = 0,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Two-Fold Filtering Method",
"sec_num": "4."
},
{
"text": "p(scf i |v) = p(scf i |v) + w(p(scf i |v)p(scf j |scfi)). (8) 9",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Two-Fold Filtering Method",
"sec_num": "4."
},
{
"text": "Following the revision, a BHT filter with a confidence rate of 95% was used to check the SCF hypotheses.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Two-Fold Filtering Method",
"sec_num": "4."
},
{
"text": "This method removes the assumption of independence among SCF types but establishes another assumption of independence between p(scf j |scf i ) and certain verbs, which means that all verbs take each diathesis alternation with the same probability. Nevertheless, linguistic knowledge tells us that verbs often enter different diathesis alternations and can be classified accordingly. Consider the following examples: e. He broke the glass. / The glass broke. Both of the English verbs \"break\" and \"disperse\" can take the causative-inchoative alternation and, hence, may be classified together, while the verb \"cut\" does not take this alternation. Also, the Chinese verb \"chi1 \u5403\" can take the ba-object-raising alternation, while the verb \"xie3 \u5199\"(write) cannot. Therefore, this newly established assumption does not hold either, and the probabilistic sum of p(scf i |v) need not and cannot be normalized.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Two-Fold Filtering Method",
"sec_num": "4."
},
{
"text": "For dealing with this problem, our basic principle is that enough exploitation should be made on the observable data, yet no more than what can be observed. If both sentences in e, f or h are observed in the corpus, and if the SCF type of the first one has a high enough frequency to pass the MLE testing, while that of the second type does not, then both SCF types should be taken into consideration. Otherwise, the one with lower frequency might be falsely rejected. On the other hand, if the first sentence in i or g has a satisfactory SCF type frequency, while the SCF type of the second sentence does not occur in the input corpus, then the SCF type of the sentence may well be rejected.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Two-Fold Filtering Method",
"sec_num": "4."
},
{
"text": "Based on the above methodology, we formed our two-fold filtering method, which is, in fact, derived from the simple MLE filter and based on formulas (5) and (6). In our method, two filters are employed. First, a common MLE filter is used, except that it employs a threshold \u03b8 1 that is much higher than usual, and those SCF hypotheses that satisfy the requirement are accepted. Then, all of the rest hypotheses are checked by another MLE filter that is seeded with diathesis alternations as heuristic information and equipped with a much lower threshold \u03b8 2 . Any hypothesis scf i left out by the first filter will be accepted if its probability exceeds \u03b8 2 , which means that p(scf i |scf j , v) > 0, and if it is an alternative of any SCF type accepted by the first filter, which means that the verb v almost surely enters scf j . The algorithm can be briefly expressed as shown in Table 5 .",
"cite_spans": [],
"ref_spans": [
{
"start": 884,
"end": 891,
"text": "Table 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Two-Fold Filtering Method",
"sec_num": "4."
},
{
"text": "For hypotheses of a given verb v,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Table 5. Two-fold filtering algorithm",
"sec_num": null
},
{
"text": "if p(scf i |v) > \u03b8 1 , scf i is accepted; else if p(scf i |v) > \u03b8 2 , p(scf i |scf j , v) > 0, and p(scf j |v) > \u03b8 1 , scf i is accepted for v.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Table 5. Two-fold filtering algorithm",
"sec_num": null
},
{
"text": "The testing set included 48 verbs, as shown in Table 6 . Thirty of them were of multiple syntactic patterns, while the rest were syntactically simple.",
"cite_spans": [],
"ref_spans": [
{
"start": 47,
"end": 54,
"text": "Table 6",
"ref_id": "TABREF2"
}
],
"eq_spans": [],
"section": "Experimental Evaluation and Analysis",
"sec_num": "5."
},
{
"text": "In the experiment, SCF hypotheses for the 48 verbs were generated from a corpus of the People's Daily from January to June of 1998 as described in Section 2. The resulting minimum number of SCF tokens for a verb was 86, and the maximum was 3200. The thresholds were experientially set as follows: \u03b8 1 = 0.017, which is much larger than the 0.008 threshold used by [Han et al. 2004b] ; \u03b8 2 = 0.0004, which generally means a hypothesis would have a chance to check its diathesis alternations if it occurs even just one time in a token set no larger than 2,500. The probabilities that verbs take SCF types were also estimated according to the observed frequencies. The evaluation standard was the manually analyzed results obtained from the applied corpus, and the precision and recall rates were calculated based on the following expressions used by [Korhonen 2001] and [Han et al. 2004b ",
"cite_spans": [
{
"start": 364,
"end": 382,
"text": "[Han et al. 2004b]",
"ref_id": "BIBREF6"
},
{
"start": 848,
"end": 863,
"text": "[Korhonen 2001]",
"ref_id": "BIBREF9"
},
{
"start": 868,
"end": 885,
"text": "[Han et al. 2004b",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Evaluation and Analysis",
"sec_num": "5."
},
{
"text": "Here, true positives are correct SCF types proposed by the system, false positives are incorrect SCF types proposed by system, and false negatives are correct SCF types not proposed by the system. For comparison, the performance of the system without any filter, with the simple MLE filter of a 0.008 threshold, and with a two-fold filter applied to the above-mentioned data is shown in Table 7 . The comparison shows that acquisition performance of the two-fold filter was remarkably improved, with a precision rate 16.64% better and a recall rate 26.31% better than that of the simple MLE, making the acquired lexicon much more practical for further manual proofreading and other NLP uses.",
"cite_spans": [],
"ref_spans": [
{
"start": 387,
"end": 394,
"text": "Table 7",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Diathesis Alternations Used as Heuristic Information",
"sec_num": null
},
{
"text": "Meanwhile, the data shown in Table 7 imply that there is little room left for improvement of the statistical filter, since the precision rate achieved by the two-fold method is more than double that for the unfiltered results, and the recall rate is only 2.72% lower than that of the no-filter method. As far as we know, for English subcategorization, the best F-measure result previously reported by [Korhonen 2001 ], which used semantic backoff, was 78.4, while the best F-measure result for German obtained by [Shulte im Walde 2002] was 72.05, and that for Spanish by [Chrupala 2003 ] was 74. Therefore, although cross-lingual comparison may lack concrete significance, at present, ours is the best result obtained for Chinese and other languages.",
"cite_spans": [
{
"start": 401,
"end": 415,
"text": "[Korhonen 2001",
"ref_id": "BIBREF9"
},
{
"start": 571,
"end": 585,
"text": "[Chrupala 2003",
"ref_id": "BIBREF3"
}
],
"ref_spans": [
{
"start": 29,
"end": 36,
"text": "Table 7",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Diathesis Alternations Used as Heuristic Information",
"sec_num": null
},
{
"text": "Our two-fold filtering method makes more exploitation of what can be observed in the corpus by drawing on the alternative relationship between SCF hypotheses with higher and lower frequencies. Unlike the semantic motivated method [Korhonen 2001 ], which is dependent on verb classifications that linguistic resources are able to provide, two-fold filtering assumes no pre-knowledge other than reasonable diathesis alternation information and may work well for Diathesis Alternations Used as Heuristic Information most verbs in other languages with sufficient predicative tokens.",
"cite_spans": [
{
"start": 230,
"end": 244,
"text": "[Korhonen 2001",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6."
},
{
"text": "Our experimental results suggest that the proposed technique improves the Chinese subcategorization acquisition system, and leaves only a little room for further improvement in statistical filtering methods. Certainly, more sophisticated approaches still exist theoretically; for instance, some unseen SCFs found by a generator may be recalled by integrating verb-classification information into the system. More essential aspects of our future work, however, will focus on improving the performance of the hypothesis generator, and testing and applying the acquired subcategorization information in some common NLP tasks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6."
},
{
"text": "See also the definition of SCF at http://www.cis.upenn.edu/~xtag/tech-report/node248.html.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "When evaluated on an auto-tagged open corpus, the parser's phrase precision rate was 62.3%, and the phrase recall rate was 60.9%[Meng 2003].4 A sample of the tree bank or relevant introduction could be found at http://mtlab.hit.edu.cn.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "{01000} projects to the Chinese syntactic morphemes {\"zhe0 \u7740\", \"le0 \uf9ba\", \"guo4 \u8fc7\", \"mei2 \u6ca1\", \"bu4 \uf967\"}, where 1 means that the SCF may occur with the respective morpheme, while 0 means that it may not[Han et al. 2004a].6 Note that not all of the errors in this example have been corrected, but this does not affect further procession. Also, NDE refers to phrases ending with \"de4 \u7684\", BVP to basic verbal phrases[Zhao 2002], and LE to the Chinese syntactic morpheme \"le0 \uf9ba\"[Han et al. 2004a].",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Sentences c and d generally mean He ate an apple.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "For the sake of consistency in this paper and for the convenience to understand, the formats of formulas here are different from those of[Korhonen 1998], but they are actually the same.10 The Chinese sentence means She wrote a book.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "The second and third columns give the relevant English meanings for the Chinese verbs, but they are far from being equivalents in English; they are just provided for reference for readers who don't know Chinese.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "From Grammar to Lexicon: unsupervised learning of lexical syntax",
"authors": [
{
"first": "M",
"middle": [],
"last": "Brent",
"suffix": ""
}
],
"year": 1993,
"venue": "Computational Linguistics",
"volume": "19",
"issue": "3",
"pages": "243--262",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Brent, M., \"From Grammar to Lexicon: unsupervised learning of lexical syntax,\" Computational Linguistics, 19(3), 1993, pp. 243-262.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Automatic extraction of subcategorization from corpora",
"authors": [
{
"first": "T",
"middle": [],
"last": "Briscoe",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Carroll",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of the 5th ACL Conference on Applied Natural Language Processing",
"volume": "",
"issue": "",
"pages": "356--363",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Briscoe, T., and J. Carroll, \"Automatic extraction of subcategorization from corpora,\" In Proceedings of the 5th ACL Conference on Applied Natural Language Processing, Washington, DC, 1997, pp. 356-363.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Aspects of the Theory of Syntax",
"authors": [
{
"first": "N",
"middle": [],
"last": "Chomsky",
"suffix": ""
}
],
"year": 1965,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Chomsky, N., Aspects of the Theory of Syntax, MIT Press, Cambridge, 1965.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Acquiring Verb Subcategorization from Spanish Corpora",
"authors": [
{
"first": "G",
"middle": [],
"last": "Chrupala",
"suffix": ""
}
],
"year": 2003,
"venue": "Cognitive Science and Language",
"volume": "",
"issue": "",
"pages": "67--68",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Chrupala, G., \"Acquiring Verb Subcategorization from Spanish Corpora\", PhD program \"Cognitive Science and Language,\" Universitat de Barcelona, 2003, pp. 67-68.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Using Co-Composition for Acquiring Syntactic and Semantic Subcategorisation",
"authors": [
{
"first": "P",
"middle": [],
"last": "Gamallo",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Agustini",
"suffix": ""
},
{
"first": "P. Lopes",
"middle": [],
"last": "Gabriel",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of the Workshop of the ACL Special Interest Group on the Lexicon (SIGLEX)",
"volume": "",
"issue": "",
"pages": "34--41",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gamallo, P., A. Agustini, and P. Lopes Gabriel, \"Using Co-Composition for Acquiring Syntactic and Semantic Subcategorisation,\" In Proceedings of the Workshop of the ACL Special Interest Group on the Lexicon (SIGLEX), Philadelphia, 2002, pp. 34-41.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "FML-Based SCF Predefinition Learning for Chinese Verbs",
"authors": [
{
"first": "X",
"middle": [],
"last": "Han",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Zhao",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Yang",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the International Joint Conference of NLP",
"volume": "",
"issue": "",
"pages": "115--122",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Han, X., T. Zhao, and M. Yang, \"FML-Based SCF Predefinition Learning for Chinese Verbs,\" In Proceedings of the International Joint Conference of NLP 2004, 2004a, pp. 115-122.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Subcategorization Acquisition and Evaluation for Chinese Verbs",
"authors": [
{
"first": "X",
"middle": [],
"last": "Han",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Zhao",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Qi",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Yu",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the COLING",
"volume": "",
"issue": "",
"pages": "723--728",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Han, X., T. Zhao, H. Qi, and H. Yu, \"Subcategorization Acquisition and Evaluation for Chinese Verbs,\" In Proceedings of the COLING 2004, 2004b pp. 723-728.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Chinese Syntactic Alternation Acquisition Based on Verb Subcategorization Frames",
"authors": [
{
"first": "X",
"middle": [],
"last": "Han",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the Chinese SWCL",
"volume": "",
"issue": "",
"pages": "197--202",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Han, X., \"Chinese Syntactic Alternation Acquisition Based on Verb Subcategorization Frames,\" In Proceedings of the Chinese SWCL 2004, 2004, pp. 197-202. [in Chinese]",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Automatic Extraction of Subcategorization Frames from Corpora-Improving Filtering with Diathesis Alternations",
"authors": [
{
"first": "A",
"middle": [],
"last": "Korhonen",
"suffix": ""
}
],
"year": 1998,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Korhonen, A., \"Automatic Extraction of Subcategorization Frames from Corpora-Improving Filtering with Diathesis Alternations,\" 1998. Please refer to http://www.folli. uva.nl/CD/1998/ pdf/keller /korhonen.pdf",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Subcategorization Acquistion",
"authors": [
{
"first": "A",
"middle": [],
"last": "Korhonen",
"suffix": ""
}
],
"year": 2001,
"venue": "",
"volume": "",
"issue": "",
"pages": "29--77",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Korhonen, A., Subcategorization Acquistion, Dissertation for Ph.D, Trinity Hall University of Cambridge, 2001, pp. 29-77.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Clustering Polysemic Subcategorization Frame Distributions Semantically",
"authors": [
{
"first": "A",
"middle": [],
"last": "Korhonen",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Krymolowski",
"suffix": ""
},
{
"first": "Z",
"middle": [],
"last": "Marx",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the 41st Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "64--71",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Korhonen, A., Y. Krymolowski, and Z. Marx, \"Clustering Polysemic Subcategorization Frame Distributions Semantically,\" In Proceedings of the 41st Annual Meeting of the Association for Computational Linguistics, 2003, pp. 64-71.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "English Verb Classes and Alternations",
"authors": [
{
"first": "B",
"middle": [],
"last": "Levin",
"suffix": ""
}
],
"year": 1993,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Levin, B., English Verb Classes and Alternations, Chicago University Press, Chicago, 1993.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Lexical Acquisition at the Syntax-Semantics Interface: Diathesis Alternations, Subcategorization Frames and Selectional Preferences",
"authors": [
{
"first": "D",
"middle": [],
"last": "Mccarthy",
"suffix": ""
}
],
"year": 2001,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "McCarthy, D., Lexical Acquisition at the Syntax-Semantics Interface: Diathesis Alternations, Subcategorization Frames and Selectional Preferences, PhD thesis, University of Sussex, 2001.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Research on Global Chinese Parsing Model and Algorithm Based on Maximum Entropy, Dissertation for Ph.D. of Computer Department, HIT",
"authors": [
{
"first": "Y",
"middle": [],
"last": "Meng",
"suffix": ""
}
],
"year": 2003,
"venue": "",
"volume": "",
"issue": "",
"pages": "33--34",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Meng, Y., Research on Global Chinese Parsing Model and Algorithm Based on Maximum Entropy, Dissertation for Ph.D. of Computer Department, HIT. 2003, pp. 33-34.[in Chinese]",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Automatic Extraction of Subcategorization Frames for Czech",
"authors": [
{
"first": "A",
"middle": [],
"last": "Sarkar",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Zeman",
"suffix": ""
}
],
"year": 2000,
"venue": "Proceedings of the 19th International Conference on Computational Linguistics, aarbrucken",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sarkar, A., and D. Zeman, \"Automatic Extraction of Subcategorization Frames for Czech,\" In Proceedings of the 19th International Conference on Computational Linguistics, aarbrucken, Germany, 2000. Please refer to http://www.sfu.ca/~anoop /papers/pdf/coling 00_final.pdf",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Inducing German Semantic Verb Classes from Pure-ly Syntactic Subcategorization Information",
"authors": [
{
"first": "S",
"middle": [],
"last": "Shulte Im Walde",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of the 40st Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "223--230",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Shulte im Walde, S., \"Inducing German Semantic Verb Classes from Pure-ly Syntactic Subcategorization Information,\" In Proceedings of the 40st Annual Meeting of the Association for Computational Linguistics, 2002, pp. 223-230.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Knowledge Engineering Report for MTS2000. Machine Translation Laboratory",
"authors": [
{
"first": "T",
"middle": [],
"last": "Zhao",
"suffix": ""
}
],
"year": 2002,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhao, T., Knowledge Engineering Report for MTS2000. Machine Translation Laboratory, Harbin Institute of Technology, Harbin, 2002. [in Chinese]",
"links": null
}
},
"ref_entries": {
"FIGREF1": {
"num": null,
"text": "f. The police dispersed the crowd. / The crowd dispersed. g. Mum cut the bread. / *The bread cut. h. Ta1 chi1 le0 pin2guo3.(\u4ed6\u5403\uf9ba\u82f9\u679c\u3002) / Ta1 ba3 pin2guo3 chi1 le0.(\u4ed6\u628a\u82f9\u679c\u5403\uf9ba\u3002) i. Ta1 xie3 le0 ben3 shu1.(\u5979\u5199\uf9ba\u672c\u4e66\u3002) 10 / *Ta1 ba3 shu1 xie3 le0.(\u5979\u628a\u4e66\u5199\uf9ba\u3002)",
"type_str": "figure",
"uris": null
},
"TABREF0": {
"num": null,
"content": "<table><tr><td colspan=\"3\">Table 1. Argument types for Chinese SCFs</td></tr><tr><td>Type</td><td>Definition</td><td/></tr><tr><td>NP</td><td colspan=\"2\">Nominal phrase</td></tr><tr><td>VP</td><td colspan=\"2\">Verbal phrase</td></tr><tr><td>QP</td><td colspan=\"2\">Tendency verbal complement</td></tr><tr><td>BP</td><td colspan=\"2\">Resulting verbal complement</td></tr><tr><td>PP</td><td colspan=\"2\">Positional phrase</td></tr><tr><td>BAP</td><td colspan=\"2\">Phrase headed by \"ba3\" (\u628a)</td></tr><tr><td>BIP</td><td colspan=\"2\">Phrase headed by \"bei4\" (\u88ab) or other characters with the passive sense</td></tr><tr><td>TP</td><td colspan=\"2\">Temporal complement</td></tr><tr><td>MP</td><td colspan=\"2\">Quantifier complement</td></tr><tr><td>JP</td><td colspan=\"2\">Adjective or adverb or \"de\" (\u5f97) headed complement</td></tr><tr><td>S</td><td colspan=\"2\">Clause or sentence</td></tr><tr><td colspan=\"3\">Table 2. Constraints placed on predicates and arguments</td></tr><tr><td/><td>Predicate v</td><td>Only one v except in repeating positions with one v but two slots</td></tr><tr><td/><td>NP</td><td>No more than two in a series and no more than three in one SCF</td></tr><tr><td>Argument Types</td><td>VP, S QP, BP, JP BAP, BIP TP, PP</td><td>No serial occurrences No serial occurrences and occurrence only after a v No more than one occurrence No co-occurrences with NP before a v</td></tr></table>",
"html": null,
"type_str": "table",
"text": ", the patterns are coordinated and classified into the predefined SCF groups."
},
"TABREF1": {
"num": null,
"content": "<table><tr><td>No.</td><td>Actions</td><td>Results</td></tr><tr><td>(a)</td><td>Input</td><td>\u4e24\u4e2a\u4eba\u5728\u5927\u4f19\u513f\u7684\u8ffd\u95ee\u4e0b\u8bc1\u660e\uf9ba\uf934\u4eba\u7684\u8eab\u4efd\u3002</td></tr><tr><td>(b)</td><td>Tag and</td><td>BNP[BMP[\u4e24/m \u4e2a/q ]\u4eba/ng ]\u5728/p NDE[\u5927\u4f19\u513f/r</td></tr><tr><td/><td>parse</td><td>\u7684 /usde ]BVP[ \u8ffd \u95ee /vg \u4e0b /vq ]BVP[ \u8bc1 \u660e /vg \uf9ba</td></tr><tr><td/><td/><td>/ut ]NP[\uf934\u4eba/nc \u7684/usde \u8eab\u4efd/ng ]\u3002/wj</td></tr><tr><td>(c)</td><td>Correct</td><td>BNP[BMP[\u4e24/m \u4e2a/q ]\u4eba/ng ]\u5728/p NDE[\u5927\u4f19\u513f/r</td></tr><tr><td/><td>errors</td><td>\u7684 /usde \u8ffd \u95ee /vg \u4e0b /vq ]BVP[ \u8bc1 \u660e /vg \uf9ba</td></tr><tr><td/><td/><td>/LE ]NP[\uf934\u4eba/nc \u7684/usde \u8eab\u4efd/ng ]\u3002/wj</td></tr><tr><td>(d)</td><td>Abstract patterns</td><td>BNP PP BVP[vg LE ] NP</td></tr><tr><td>(e)</td><td>Generate hypothesis</td><td>NP v NP \uff5b01000\uff5d</td></tr><tr><td>(f)</td><td>Filter hypotheses</td><td>NP v NP {01111} 5</td></tr></table>",
"html": null,
"type_str": "table",
"text": ""
},
"TABREF2": {
"num": null,
"content": "<table><tr><td>Chinese Verbs</td><td>English</td><td>Chinese Verbs</td><td>English</td></tr><tr><td>jie4 jian4(\u501f\u9274)</td><td>refer</td><td>chao1(\u6284)</td><td>copy</td></tr><tr><td>biao3 xian4(\u8868\u73b0)</td><td>behave</td><td>du2(\u8bfb)</td><td>read</td></tr><tr><td>jue2 ding4(\u51b3\u5b9a)</td><td>decide</td><td>fang4(\u653e)</td><td>put</td></tr><tr><td>cui1 can2(\u6467\u6b8b)</td><td>torture</td><td>kan4(\u770b)</td><td>see</td></tr><tr><td>dong4 jie2(\u51bb\u7ed3)</td><td>freeze</td><td>la1(\uf925)</td><td>pull</td></tr><tr><td>fa1 xian4(\u53d1\u73b0)</td><td>find</td><td>mo2(\u78e8)</td><td>grind</td></tr><tr><td>fa1 zhan3(\u53d1\u5c55)</td><td>develop</td><td>shan3(\u95ea)</td><td>flash</td></tr><tr><td>fan3 kang4(\u53cd\u6297)</td><td>rebel</td><td>song4(\u9001)</td><td>send</td></tr><tr><td>fan3 ying4(\u53cd\u6620)</td><td>reflect</td><td>tai2(\u62ac)</td><td>carry</td></tr><tr><td>fen1 san4(\u5206\u6563)</td><td>disperse</td><td>tun1(\u541e)</td><td>devour</td></tr><tr><td>feng1 suo3(\u5c01\u9501)</td><td>blank</td><td>xi1(\u5438)</td><td>sock</td></tr><tr><td>shou1 fu4(\u6536\u590d)</td><td>reoccupy</td><td>xiang3(\u60f3)</td><td>Think</td></tr><tr><td>jian1 chi2(\u575a\u6301)</td><td>insist</td><td>xiao4(\u7b11)</td><td>laugh</td></tr><tr><td>jian4 li4(\u5efa\uf9f7)</td><td>set up</td><td>xie3(\u5199)</td><td>write</td></tr><tr><td>jie2 shu4(\u7ed3\u675f)</td><td>end</td><td>yong4(\u7528)</td><td>use</td></tr><tr><td>jie3 fang4(\u89e3\u653e)</td><td>release</td><td>zhe1(\u906e)</td><td>cover</td></tr><tr><td>xi1 wang4(\u5e0c\u671b)</td><td>wish</td><td>tao2 tai4(\u6dd8\u6c70)</td><td>reject</td></tr><tr><td>yao1 qiu2(\u8981\u6c42)</td><td>require</td><td>cai3 na4(\u91c7\u7eb3)</td><td>adopt</td></tr><tr><td colspan=\"2\">zeng1 qiang2(\u589e\u5f3a) enforce</td><td>tou2 ru4(\u6295\u5165)</td><td>invest</td></tr><tr><td>zheng3 dun4(\u6574\u987f)</td><td>neaten</td><td>bi1 jin4(\u903c\u8fd1)</td><td>approach</td></tr><tr><td>zhu3 guan3(\u4e3b\u7ba1)</td><td>charge</td><td>gu3 wu3(\u9f13\u821e)</td><td>encourage</td></tr><tr><td>tong3 yi1(\u7edf\u4e00)</td><td>unify</td><td>kai1 shi3(\u5f00\u59cb)</td><td>begin</td></tr><tr><td>suo1 duan3(\u7f29\u77ed)</td><td>shorten</td><td>kao3 lv4(\u8003\u8651)</td><td>consider</td></tr><tr><td>tan4 wang4(\u63a2\u671b)</td><td>visit</td><td>ren4 shi5(\u8ba4\u8bc6)</td><td>know</td></tr></table>",
"html": null,
"type_str": "table",
"text": ""
},
"TABREF3": {
"num": null,
"content": "<table><tr><td>Method</td><td>Precision</td><td>Recall</td><td>F-measure</td></tr><tr><td>No-filter</td><td>37.64%</td><td>86.55%</td><td>52.46</td></tr><tr><td>MLE</td><td>60.3%</td><td>57.52%</td><td>58.89</td></tr><tr><td>Two-fold</td><td>76.94%</td><td>83.83%</td><td>80.24</td></tr></table>",
"html": null,
"type_str": "table",
"text": ""
}
}
}
} |