File size: 94,447 Bytes
6fa4bc9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 |
{
"paper_id": "O12-3001",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:02:56.983772Z"
},
"title": "Transitivity of a Chinese Verb-Result Compound and Affected Argument of the Result Verb",
"authors": [
{
"first": "You-Shan",
"middle": [],
"last": "Chung",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"settlement": "Taipei",
"country": "Taiwan"
}
},
"email": "yschung@iis.sinica.edu.tw"
},
{
"first": "Keh-Jiann",
"middle": [],
"last": "Chen",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"settlement": "Taipei",
"country": "Taiwan"
}
},
"email": "kchen@iis.sinica.edu.tw"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "The Chinese verb-result compound is productive, but its meaning and syntactic behaviors have posed challenges to theoretical and automatic analyses. Theory-wise, the current study proposes that VRs have inherent affecting direction, which argument mapping principles and selectional restrictions, event structures, or the kinds of semantic/pragmatic principles or real-world knowledge proposed by previous researchers do not seem to account for. Application-wise, we predict the VR's transitivity and whether the result component is predicated of the logical subject or the logical object, based on the transitivity of individual component verbs and the selectional restrictions between component verbs and arguments. Since the transitivity property and selectional restrictions of individual verbs can be annotated in our lexicon, the rules should fare well in automatic processing. Meanwhile, as the rules have been motivated by linguistic theories and have been observed to make correct predictions in most cases, they are worthy of further large-scale testing.",
"pdf_parse": {
"paper_id": "O12-3001",
"_pdf_hash": "",
"abstract": [
{
"text": "The Chinese verb-result compound is productive, but its meaning and syntactic behaviors have posed challenges to theoretical and automatic analyses. Theory-wise, the current study proposes that VRs have inherent affecting direction, which argument mapping principles and selectional restrictions, event structures, or the kinds of semantic/pragmatic principles or real-world knowledge proposed by previous researchers do not seem to account for. Application-wise, we predict the VR's transitivity and whether the result component is predicated of the logical subject or the logical object, based on the transitivity of individual component verbs and the selectional restrictions between component verbs and arguments. Since the transitivity property and selectional restrictions of individual verbs can be annotated in our lexicon, the rules should fare well in automatic processing. Meanwhile, as the rules have been motivated by linguistic theories and have been observed to make correct predictions in most cases, they are worthy of further large-scale testing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Verb-result compounds (VR 1 ) are compounds that are comprised of an event (denoted by the first verb, henceforth V1) and the result of the event (denoted by the second verb, henceforth V2). 2 For example, da-po \u6253\u7834 'broken from being hit,' chi-bao \u5403\u98fd 'full from eating,' and tu-hei \u5857\u9ed1 'paint something black' are VRs, where da \u6253 'hit,' chi \u5403 'eat,' and tu",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "The high productivity of VRs in Chinese makes them a worthwhile topic of investigation for NLP. Nevertheless, this verbal construction poses challenges to traditional linguistic theories of the syntax-semantics interface aimed at mapping the meaning of verbal constructions to their surface structure. This is because most generative frameworks hold that mappings between event meaning representations and syntactic structure are governed by constraints imposed by the verb (e.g. theta theory, cf. Crystal 1997 for its definition). These constraints, however, do not always seem to be applicable to VRs. Since a VR contains two verbs, it is often argued that one of them is to be identified as the \"head,\" which is supposedly responsible for the mapping. Nevertheless, such an assumption encounters difficulties. For one thing, the head is defined as the component that dominates the resulting meaning and syntactic behaviors, but it is controversial which component it is (i.e. V1 or V2) or even if such a component exists at all in Chinese VRs (Huang, 1998; Li, 2009) . Among researchers who do not address head identification, some argue that mappings for VRs are not simply constrained by the argument structures of the component verbs (Yin, 2011; Li, 2007; Huang, 2006) .",
"cite_spans": [
{
"start": 1046,
"end": 1059,
"text": "(Huang, 1998;",
"ref_id": "BIBREF14"
},
{
"start": 1060,
"end": 1069,
"text": "Li, 2009)",
"ref_id": "BIBREF16"
},
{
"start": 1240,
"end": 1251,
"text": "(Yin, 2011;",
"ref_id": "BIBREF27"
},
{
"start": 1252,
"end": 1261,
"text": "Li, 2007;",
"ref_id": "BIBREF17"
},
{
"start": 1262,
"end": 1274,
"text": "Huang, 2006)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "Various explanations have been proposed to accommodate VRs in a larger framework of syntax-semantics interface, including syntactic operations (Mulkeen, 2011; Shen & Lin, 2005) , lexical-semantic properties of the components (Yin, 2011; Li, 2007; Huang, 2006) , or a split approach to different VRs (Lin, 1998) . Syntactic or lexical-semantic, these accounts all appeal either to extensions of certain underlying syntactic operations, such as movement, or to decisions on thematic role mapping. As far as automatic processing is concerned, the former means adjustments to the general parsing rules and the latter requires the incorporation of real-world knowledge.",
"cite_spans": [
{
"start": 143,
"end": 158,
"text": "(Mulkeen, 2011;",
"ref_id": "BIBREF22"
},
{
"start": 159,
"end": 176,
"text": "Shen & Lin, 2005)",
"ref_id": "BIBREF24"
},
{
"start": 225,
"end": 236,
"text": "(Yin, 2011;",
"ref_id": "BIBREF27"
},
{
"start": 237,
"end": 246,
"text": "Li, 2007;",
"ref_id": "BIBREF17"
},
{
"start": 247,
"end": 259,
"text": "Huang, 2006)",
"ref_id": "BIBREF13"
},
{
"start": 299,
"end": 310,
"text": "(Lin, 1998)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "In particular, not only do non-lexical accounts present technical challenges, but also a growing consensus in linguistic studies is that the meaning and syntactic behaviors of larger linguistic structures can be explained by the syntactic and semantic properties of the composing words. Along this lexical approach, Levin (1993) presented a heavily-cited framework to explain how the meaning and grammar that are encoded by verbs are mapped onto the syntactic arguments. Therefore, we began the analysis of the VR compound, a kind of verbal compound, with a lexical approach.",
"cite_spans": [
{
"start": 316,
"end": 328,
"text": "Levin (1993)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "For the sake of accuracy and simplicity as a linguistic account and for ease of computer processing, our treatment of VRs is lexically-based. Unlike some lexical accounts, however, we avoid postulations of underlying representations. We address two basic syntactic and Transitivity of a Chinese Affected Argument of the Result Verb semantic distinctions of VRs by employing information of verbs' transitivity 3 and selectional restrictions encoded in our on-line lexicon. The research questions are how to predict the transitivity of a VR and how to identify V2's affected argument (i.e., the argument predicated by V2).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "Transitivity and selectional restrictions are two of the most basic syntactic and semantic distinctions for verbs. A special characteristic of Chinese VRs is that V2's affected argument can either be the logical subject (i.e., subject-controlled, henceforth SC) or the logical object (i.e., object-controlled, henceforth OC) of a VR. Such a contrast can be seen in the VRs da-po \u6253\u7834 'broken from hitting' and du-dong \uf95a\u61c2 'read something and understand it,' which belong to the OC and SC type, respectively. For example, in Zhangsan da-po-le boli \u5f35\u4e09\u6253 \u7834\uf9ba\u73bb\u7483 'Zhangsan broke the glass,' the affected argument of po \u7834 'broken' is boli \u73bb\u7483 'glass,' V1's object, whereas in Zhangsan du-dong-le naben shu \u5f35 \u4e09 \uf95a \u61c2 \uf9ba \u90a3 \u672c \u66f8 'Zhangsan (finally) understood the book,' it is V1's subject, Zhangsan \u5f35\u4e09, that is being predicated of by V2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Prediction of Transitivity and V2's Affected Argument",
"sec_num": "2."
},
{
"text": "Below, we will briefly introduce how two lexical-semantic accounts (Li, 2007 , Huang, 2006 and one lexical-syntactic account (Lin, 1998) address transitivity and V2's affected argument.",
"cite_spans": [
{
"start": 67,
"end": 76,
"text": "(Li, 2007",
"ref_id": "BIBREF17"
},
{
"start": 77,
"end": 90,
"text": ", Huang, 2006",
"ref_id": "BIBREF13"
},
{
"start": 125,
"end": 136,
"text": "(Lin, 1998)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Prediction of Transitivity and V2's Affected Argument",
"sec_num": "2."
},
{
"text": "Lexical-semantic accounts like Li (2007) and Huang (2006) argue that event structure (and argument structure) can explain the meaning and syntactic behaviors of VRs through a set of linking rules that map event participants of various thematic roles (e.g., agent, patient, causer, causee) onto sentence positions (e.g., subject, object).",
"cite_spans": [
{
"start": 31,
"end": 40,
"text": "Li (2007)",
"ref_id": "BIBREF17"
},
{
"start": 45,
"end": 57,
"text": "Huang (2006)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Review of Lexical-semantic and Lexical-syntactic Works on Chinese VRs",
"sec_num": "2.1"
},
{
"text": "Under Li's framework, transitivity of a VR compound and V2's affected argument fall out of the options in expressing the causing factor and the affected entity, assigned the thematic roles \"causer\" and \"causee,\" respectively; the causee amounts to V2's affected argument in our terms. The roles are assigned by the external and internal arguments of V1 and of V2 as well as by the event structure of the V1+V2 combination.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Li (1997)",
"sec_num": null
},
{
"text": "With the causer and causee, as well as their corresponding arguments (i.e., internal/external/neither), identified, a proposed set of linking rules determine the sentence positions for the two thematic roles to be realized. Below is one of them (Li, 2007: 96) .",
"cite_spans": [
{
"start": 245,
"end": 259,
"text": "(Li, 2007: 96)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Li (1997)",
"sec_num": null
},
{
"text": "(1) The causer argument is realized in subject position and the causee argument in object position, when both arguments are overtly expressed by different linguistic expressions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Li (1997)",
"sec_num": null
},
{
"text": "As can be seen, Li's reference point is the causer and the causee. Nevertheless, as far as automatic processing is concerned, the causer and causee have to be identified rather than taken as given. So, Li's rules are not readily applicable for a system that has no access to knowledge of causer and causee.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Li (1997)",
"sec_num": null
},
{
"text": "Besides methodological issues, Li does not explain his criteria for distinguishing between causer and causee, which his linking rules hinge on. As thematic roles, causer and causee should be defined on semantic grounds rather than by sentence positions. Under his analysis, na-bao yifu \u90a3\u5305\u8863\u670d 'the bundle of clothes' in Na-bao yifu xi-lei-le Zhangsan \u90a3\u5305\u8863\u670d\u6d17 \uf94f\uf9ba\u5f35\u4e09 '(Zhangsan washed that bundle of clothes) and the clothes got Zhangsan tired' (Li, 2007: 119) and shu \u66f8 'book' in Zhangsan kan-lei-le shu \u5f35\u4e09\u770b\uf94f\uf9ba\u66f8 'Zhangsan read a book and as a result became tired' (Li, 2007: 115) differ in thematic roles. According to Li, in the former sentence, the causer is na-bao yifu \u90a3\u5305\u8863\u670d whereas in the latter, the causer is Zhangsan \u5f35\u4e09. In terms of meaning, however, it appears that, in both sentences, it is Zhangsan \u5f35\u4e09 who is the agent engaging in the activities xi \u6d17 'wash' and kan \u770b 'read,' from which he becomes tired. So, it is not clear why the causer-causee mappings in these two sentences are not the same.",
"cite_spans": [
{
"start": 438,
"end": 453,
"text": "(Li, 2007: 119)",
"ref_id": null
},
{
"start": 557,
"end": 572,
"text": "(Li, 2007: 115)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Li (1997)",
"sec_num": null
},
{
"text": "There are two components in Huang's framework: event frames and linking rules. The event frames describe the obligatory and optional participants and predicates for transitive and intransitive verbs. These event participants map to certain syntactic categories and sentence positions by default. For example, the subject of a sentence is usually a noun phrase that receives an agent role. Although Huang's account can explain mappings between thematic roles and sentence positions, his model needs to identify the transitivity of a VR first in order to determine the relevant event participants so as to discover the thematic roles of the subject and the object. Nevertheless, he does not address how to determine the transitivity of a VR compound.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Huang (2006)",
"sec_num": null
},
{
"text": "Meanwhile, the issue of the definitions of causer and causee arises again. In Baozhi kan-hua-le ta de yian \u5831\u7d19\u770b\u82b1\uf9ba\u4ed6\u7684\u773c 'The newspaper got his eyes blurred from reading it' (Huang, 2006: 27) Li (2007) differ in thematic roles. These examples suggest lack of a consistent way to identify causer and causee between researchers and within individual researcher's analyses while such criteria underpin their theories.",
"cite_spans": [
{
"start": 169,
"end": 186,
"text": "(Huang, 2006: 27)",
"ref_id": null
},
{
"start": 187,
"end": 196,
"text": "Li (2007)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Huang (2006)",
"sec_num": null
},
{
"text": "Lin (1998) predicts a VR's transitivity and V2's affected argument based on V1's transitivity and whether V2 is predicative of animate or inanimate entities. This approach seems promising for automatic processing since transitivity properties and selectional restrictions can be annotated.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Lin (1998)",
"sec_num": null
},
{
"text": "Regarding transitivity, she argues that the transitivity value of a VR is the same as that of V1. Her prediction of the affected argument, however, is nondeterministic, as exemplified in her analysis of transitive V1s paired with intransitive V2s predicative of animated noun phrases, e.g., zhui-lei \u8ffd\uf94f 'chase-tired' and chi-bao \u5403\u98fd 'full from eating.' She argues that, in such cases, the V2 can be predicative of either the subject or the object, or both. For example, she thinks that Zhangsan zhui-lei-le Lisi \u5f35\u4e09\u8ffd\uf94f\uf9ba\uf9e1\u56db allows three readings, which are, with descending degrees of acceptability, 'Zhangsan chased Lisi and Lisi became tired,' 'Zhangsan chased Lisi and Zhangsan became tired,' and 'Lisi chased Zhangsan and Lisi became tired.' In contrast, chi-bao \u5403\u98fd can only have an SC reading. Nevertheless, she does not explain the conditions for a reading to be available, or at least preferred.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Lin (1998)",
"sec_num": null
},
{
"text": "In sum, regarding theoretical comprehensiveness, Li's and Huang's identification of causer and causee seems arbitrary. In terms of automatic processing, their predictions depend on already knowing what automatic processing needs to figure out, whereas Lin's account does not address disambiguation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Lin (1998)",
"sec_num": null
},
{
"text": "Despite these suggested theoretical and practical inadequacies, many such lexical-semantic accounts have turned from relying solely on argument structure to what argument structure and selectional restrictions (i.e., the semantic restrictions on what arguments can be taken by a verb) cannot explain. Within the lexical tenets, the general consensus is that, besides the argument structures of individual verbs, the VR construction has its own event structure with thematic roles to assign. The roles from the two structures (i.e., argument structure and event structure) conflate to decide the resulting meaning and syntactic behaviors of the VR. Also frequently considered is the variation in the kinds of composing predicates that exist and whether they are optional/obligatory or general/specific in the event structures of VRs 4 of different event types, consequently taking semantic and syntactic variations between different verbs and within the same verb into account.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Lin (1998)",
"sec_num": null
},
{
"text": "When these interactions and variations allow ambiguities, it is suggested that semantic and pragmatic, or real-world knowledge 5 , motivations screen or rank the remaining readings. Some researchers, like Li (2009) and Huang (2002) , only cite the role of real-world knowledge in determining whether a VR is possible or not but leave the question of whether an acceptable compound can occur in a sentence with certain noun phrases in a certain order or not and, if it can, what the predication relation is to syntactic, semantic, or pragmatic constraints. For example, Li proposes the Animate Subject as Agent or Experiencer Strategy (ASAES) as well as the principle of prototypicality, both of which he considers pragmatic principles. The content of the former has been made clear by its name; the latter states that the entity that carries out the V1-denoted act is less likely to be the V2-affected entity. Both principles are meant to rank the possibility of acceptable readings. Other researchers contend that real-world knowledge remains an element in the reading(s) of a legal VR. Huang (2006) incorporates the role of real-world knowledge in the event frame of VRs, which is the interface where linking rules are applied to map semantic configurations to sentence positions.",
"cite_spans": [
{
"start": 205,
"end": 214,
"text": "Li (2009)",
"ref_id": "BIBREF16"
},
{
"start": 219,
"end": 231,
"text": "Huang (2002)",
"ref_id": "BIBREF12"
},
{
"start": 1088,
"end": 1100,
"text": "Huang (2006)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Lin (1998)",
"sec_num": null
},
{
"text": "The current study suggests an even more central role for real-world knowledge in the interpretation of VRs. So far as we are aware, Huang's (2006) constructional framework is one of the few accounts that formally represents real-world knowledge, if not the only account. Nevertheless, even he thinks that real-world knowledge is only an optional participant in the event frame. In spite of this, we not only agree with Huang that real-world knowledge remains at play in deciding the reading(s) of a legal VR, but we also have found real-world knowledge to be central to the meaning and syntactic behaviors of VRs throughout its formation and interpretation. We will support this position with examples in Section 3.",
"cite_spans": [
{
"start": 132,
"end": 146,
"text": "Huang's (2006)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Lin (1998)",
"sec_num": null
},
{
"text": "We first propose an affecting direction principle to model the transitivity and affected argument of VR compounds. Then, we develop a set of heuristic rules to emulate the principle using only the information of individual transitivity of V1 and V2 and the selectional restrictions of V1 and V2 but not using real-world knowledge. Based on a lexical approach, we encode the semantic and syntactic properties of each word in the lexicon. Transitivity is one of the listed properties, and so are the selectional restrictions. We manually encode such information based on observations of corpus data. For example, da \u6253 'hit' requires an animate agent and a physical theme. This is shown in (2): With the encoded information, when the computer encounters the compound da-po \u6253\u7834 'broken from being hit,' the rules of our model can predict the VR's transitivity and V2's affected argument. Nevertheless, such information cannot always predict the resulting meaning and syntactic behaviors of VRs. We think this is because the fundamental factor that decides a VR's transitivity and V2's affected argument is the affecting direction of the compound.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Model of the Current Study",
"sec_num": "2.2"
},
{
"text": "By \"affecting direction\" we refer to native speakers' knowledge of the range of entities that can be affected by the state resulting from an action or another state and of whether the VR can take an argument/arguments or other noun phrases or not. For instance, Mandarin Chinese speakers know that the entity affected by of the state denoted by chi-bao \u5403\u98fd 'full from eating' is an animate being that eats and that the VR cannot be followed by noun phrases inside or outside of V1's argument structure. In formal terms, we say that chi-bao \u5403\u98fd 'full from eating' is intransitive and SC. Such knowledge is implicit, with linguistic and non-linguistic motivations underlying it. We will discuss the motivations in more detail in Section 3. Two points of clarification are in order here. First, there are some cases where the affecting direction seems to allow both an SC and an OC reading. Two of the oft-cited cases are qi-lei \u9a0e\uf94f 'ride-tired' and zhui-lei \u8ffd\uf94f 'chase-tired,' as in Zhangsan qi-lei le ma \u5f35\u4e09 \u9a0e \uf94f \uf9ba \u99ac and Zhangsan zhui-lei-le Lisi \u5f35 \u4e09 \u8ffd \uf94f \uf9ba \uf9e1 \u56db , both allowing either the \"Zhangsan is tired\" reading or the \"horse/Lisi is tired\" reading. Such VRs are believed to be ambiguous in the sense that they seem to have two readings in the same sentence. Nevertheless, we consider the two readings of these VRs as being separate lexical entries, i.e., polysemous. This is based on Huang et al.'s (2005) criterion for distinguishing different words from different meanings of a word, which states that senses that cannot co-exist in the same context have to be treated under different lexical entries. Accordingly, while qi-lei \u9a0e\uf94f and zhui-lei \u8ffd\uf94f are possible with two readings in the above sentences, the ambiguity can be resolved with a moderate number of contextual clues.",
"cite_spans": [
{
"start": 1382,
"end": 1403,
"text": "Huang et al.'s (2005)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Model of the Current Study",
"sec_num": "2.2"
},
{
"text": "(5) \u9a0e\uf94f 1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Model of the Current Study",
"sec_num": "2.2"
},
{
"text": "Zhangsan fear ride-tired-PERF beloved-horse, decide let it rest 'Fearing that it might be exhausted from extended rides, Zhangsan decided to let his beloved horse take a break.'",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Zhangsan pa qi-lei-le ai-ma, jueding rang ta xiuxi \u5f35\u4e09\u6015\u9a0e\uf94f\uf9ba\u611b\u99ac\uff0c\u6c7a\u5b9a\u8b93\u7260\u4f11\u606f",
"sec_num": null
},
{
"text": "Zhangsan qi-lei-le ma, juede haishi kai-che bijiao qingsong \u5f35\u4e09\u9a0e\uf94f\uf9ba\u99ac\uff0c\u89ba\u5f97\u9084\u662f\u958b\uf902 \u6bd4\u8f03\u8f15\u9b06 Zhangsan ride-tired-PERF horse, feel nevertheless drive-car relatively relax 'Tired from horse-riding, Zhangsan found driving more relaxing.'",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "\u9a0e\uf94f 2",
"sec_num": null
},
{
"text": "A remaining question is how to decide which qi-lei \u9a0e\uf94f or zhui-lei \u8ffd\uf94f is relevant when the computer encounters such VRs. Indeed, currently, we can only identify them as transitive verbs that are polysemous between an SC and OC reading. Context is required to decide the affected argument of V2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity of a Chinese Verb-Result Compound and 9 Affected Argument of the Result Verb",
"sec_num": null
},
{
"text": "Second, when the affecting direction of a VR is not toward the Vt's subject, it is not necessarily toward its object.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity of a Chinese Verb-Result Compound and 9 Affected Argument of the Result Verb",
"sec_num": null
},
{
"text": "In a few cases, it is the adjunct of the Vt that is V2's affected object. For example, qie \ufa00 'cut' has an agent-denoting subject that is an animate being, e.g., Zhangsan \u5f35 \u4e09 , a patient-denoting object that is the physical object being cut, e.g., rou \u8089 'meat,' and an instrument-denoting adjunct that is the tool for cutting, e.g., dao \u5200 'knife.' For the VR qie-dun \ufa00\u920d 'blunt from cutting,' it is the instrument-denoting adjunct instead of the patient-denoting object that is affected by dun \u920d 'blunt.' Nevertheless, although the instrument is not the object of the Vt, the prediction that the VR is OC is still borne out since V2's affected argument is indeed the object of the VR qie-dun \ufa00\u920d because dao \u5200 is the receiver of the action 6 described by the compound.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity of a Chinese Verb-Result Compound and 9 Affected Argument of the Result Verb",
"sec_num": null
},
{
"text": "When V1 is Vi, again, the noun phrase that follows the VR is not necessarily V1's object. Actually, it does not even have to be any possible argument, adjunct, or complement in the verb frame. To show this, we may have to first make clear what is meant by being SC and OC. It may be suggested that the affecting direction of the VR pao-lei \u8dd1\uf94f 'tired from running' is not fixed if sentence pairs like Zhangsan pao-lei-le \u5f35\u4e09\u8dd1\uf94f\uf9ba 'Zhangsan ran and as a result got tired'and Zhangsan pao-lei-le liang-tiao tui \u5f35\u4e09\u8dd1\uf94f\uf9ba\uf978\u689d\u817f 'Zhangsan ran, and as a result his legs got tired' are taken into account. In the former sentence, the affecting direction should be toward Zhangsan \u5f35\u4e09, but, in the latter sentence, it seems to be either toward Zhangsan \u5f35\u4e09 or liang-tiao tui \uf978\u689d\u817f. As a result, the latter sentence seems to have both an SC and an OC reading.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity of a Chinese Verb-Result Compound and 9 Affected Argument of the Result Verb",
"sec_num": null
},
{
"text": "Our view is that both readings belong to the SC type. First, we find liang-tiao tui \uf978\u689d\u817f 'legs' in the sentence to be more like a complement than an object of pao-lei \u8dd1\uf94f 'tired from running.' The first reason is that, for a noun phrase to be allowed to follow the VR pao-lei \u8dd1\uf94f, it has to specify a body part of the subject, thus functions like a subject complement, as defined in Crystal (1997) . Second, it seems that \"Zhangsan's legs being tired\" entails \"Zhangsan being tired.\" To the extent that Zhangsan is also tired, the sentence can be labeled as the SC type.",
"cite_spans": [
{
"start": 380,
"end": 394,
"text": "Crystal (1997)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity of a Chinese Verb-Result Compound and 9 Affected Argument of the Result Verb",
"sec_num": null
},
{
"text": "Sometimes, the NP in question is not V1's argument but is still the VR's object. For example, VRs with intransitive V1s like bing-huang \u75c5\u614c 'sick-nervous' and ji-bing \u6025\u75c5 10 You-shan Chung and Keh-Jiann Chen 'worry-sick' can have OC readings, as in Zhangsan bing-huang-le Lisi \u5f35\u4e09\u75c5\u614c\uf9ba\uf9e1\u56db 'Zhangsan's illness made Lisi nervous,' Zhangsan ji-bing-le Lisi \u5f35 \u4e09 \u6025 \u75c5 \uf9ba \uf9e1 \u56db 'Zhangsan got Lisi so worried, who became sick as a result.' It is difficult to treat \uf9e1\u56db as a participant in the verb frames of bing \u75c5 'sick' and ji \u6025 'worried.' Another probably more drastic example is ku-zou \u54ed\u8d70 'to cause someone to leave by crying.' Although ku \u54ed cannot be subcategorized for objects, the VR obligatorily take objects and is possible with an OC reading only, as in Zhangsan ku-zou-lie Lisi \u5f35\u4e09\u54ed\u8d70\uf9ba\uf9e1\u56db 'Zhangsan cried, making Lisi leave.' Note in passing that, in Section 2, we argued for the treatment of the OC and SC readings of qi-lei \u9a0e\uf94f and zhui-lei \u8ffd\uf94f as belonging to different lexical entries. On this account, bing-huang \u75c5\u614c and ji-bing \u6025\u75c5 are also regarded as different VRs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity of a Chinese Verb-Result Compound and 9 Affected Argument of the Result Verb",
"sec_num": null
},
{
"text": "Since VRs cannot be exhaustively listed, the affecting direction also cannot be exhaustively annotated. Thus, it has to be predicted, too. The affecting direction can generally be predicted by the transitivity properties and selectional restrictions of the two component verbs. Transitivity and selectional restrictions are as exemplified in (4) and are annotated in the lexicon. Therefore, rules based on this information are workable. Where the affecting direction cannot be predicted, however, the VR's transitivity and V2's affected argument become unpredictable as a result. Nevertheless, the results have seemed to be as predicted most of the time so far, suggesting that the affecting direction is usually predictable.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transitivity of a Chinese Verb-Result Compound and 9 Affected Argument of the Result Verb",
"sec_num": null
},
{
"text": "With the possibility of unpredictability in mind, we are ready to look at the following heuristics for the automatic prediction of transitivity and V2's affected argument. Below, we show how the VR's transitivity and V2's affected argument might be predicted by matching a component verb's transitivity and selectional restrictions with the other's. Again, we already know the transitivity and selectional restrictions of the component verbs before the computer encounters a context that contains a VR construction. This means the judgment of the VR's characteristics, except for the cases where both (c) and (d) apply, generally does not depend on on-line context, but we will see exceptions in the following sentences (6), (11) , (12) , and (15) and will address them in Section 3.",
"cite_spans": [
{
"start": 725,
"end": 729,
"text": "(11)",
"ref_id": "BIBREF3"
},
{
"start": 732,
"end": 736,
"text": "(12)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Heuristics",
"sec_num": "2.3"
},
{
"text": "The following sentences from Li (2007) represent some of the most frequent VR patterns, where the subjects and objects are default ones that meet the selectional restrictions of the component verbs. In 6)-(12, V1 is a transitive verb. We will describe the transitivity properties before describing the matching of the selectional restrictions. The relevant rule is given at the end. Prediction: zou \u8d70 is Vi and lei \uf94f is Ri. Since Zhangsan \u5f35\u4e09 can be the subject of lei \uf94f, zou-lei \u8d70\uf94f is predicted to be VRi and SC (Rule (f)). Prediction: bing \u75c5 is Vi and huang \u614c is Ri. Since Zhangsan \u5f35\u4e09 can be the subject of both, bing-huang \u75c5\u614c is predicted to be VRi and SC. Nevertheless, the affecting direction of bing-huang \u75c5\u614c can be either toward the subject or the object. Therefore, bing-huang \u75c5\u614c can be either VRi and SC or VRt and OC. (The affecting direction is not predicted by rules; it is disambiguated by the sentential context.)",
"cite_spans": [
{
"start": 29,
"end": 38,
"text": "Li (2007)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Heuristics",
"sec_num": "2.3"
},
{
"text": "The predictions of rules (a)-(g) are borne out most of the time. Sometimes, though, these heuristics cannot account for the affecting direction. We will discuss some such cases.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Heuristics",
"sec_num": "2.3"
},
{
"text": "Although language processing can benefit from the heuristics, such rules sometimes fail because they are based on lexical information, to which much of the real-world knowledge, which plays an important role in deciding the affecting direction of VRs, is invisible. As opposed to the views of Li (2007) and Huang (2002) , we found real-world knowledge to be no less important in the interpretation of a VR than in its possibility of existence because both a VR's occurrence and its interpretation presume a reasonable cause-effect relationship. Notably, we suggest that the subjectivity involved in such decisions makes it only natural that definite readings are sometimes non-existent. While believing that the affecting direction is largely determined by world knowledge, we also noticed that syntactic constraints regulate how real-world knowledge can be expressed.",
"cite_spans": [
{
"start": 293,
"end": 302,
"text": "Li (2007)",
"ref_id": "BIBREF17"
},
{
"start": 307,
"end": 319,
"text": "Huang (2002)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and the Applicability of the Rules",
"sec_num": "3."
},
{
"text": "Recall that jiao-hui \u6559\u6703 'teach someone and make him/her understand' in (11) is like bing-huang \u75c5\u614c, to have an OC reading, it must have a causative reading. As for the Vt+Vi combination e-bing \u9913\u75c5, the OC reading would be 'someone makes another person starve so that this starving person becomes sick.' While both assuming a causative interpretation under the OC readings, the two VRs contrast in two ways. First, in e-bing \u9913\u75c5, both composing verbs take on causative readings, whereas in bing-huang \u75c5\u614c, only huang \u614c has a causative reading. Second, in the absence of context, the SC reading seems more natural than an OC reading for e-bing \u9913\u75c5. Nevertheless, if such a bias is present at all, it is not as pronounced in bing-huang \u75c5\u614c. This is unexpected in structural terms because, while both VRs have V2s that are Vis, the V1 e \u9913 in e-bing \u9913\u75c5 is a transitive verb, which supposedly is more likely to affect an entity other than the one who acts (thus, have an OC reading) than the intransitive V1 bing \u75c5 in bing-huang \u75c5\u614c does. We are led to the hypothesis that the contrasts could result from judgment of plausibility based on real-world knowledge: E-bing \u9913\u75c5 is less natural with a causative reading because people generally do not intentionally make others suffer; it is unusual to starve people. On the other hand, in the case of bing-huang \u75c5\u614c, bing \u75c5 is involuntary and cannot be put in intentional terms, while it is human to find another person's suffering disturbing.",
"cite_spans": [
{
"start": 71,
"end": 75,
"text": "(11)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and the Applicability of the Rules",
"sec_num": "3."
},
{
"text": "As can be seen, the above judgment is a reflection of the perception of the world. Thus, it is expected that the perceived probability of OC and SC readings will be as varied as people's perception of the world. A definite OC or SC judgment sometimes could be non-existent.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and the Applicability of the Rules",
"sec_num": "3."
},
{
"text": "Finally, we will discuss two cases that seem to be consistent with real-world knowledge but are either downright unacceptable or odd. Sentence (22) presents a reading that is a possible real-world scenario but linguistically unacceptable: In terms of real-world knowledge, it is possible that Zhangsan chased Lisi and as a result Zhangsan got tired, but such a reading is not as natural as one where Lisi is tired.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and the Applicability of the Rules",
"sec_num": "3."
},
{
"text": "Another example is the intransitive-and-SC-only reading of chi-bao \u5403\u98fd 'full from eating.' Consider the following sentence:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and the Applicability of the Rules",
"sec_num": "3."
},
{
"text": "(23) ?Zhangsan chi-bao-le ji \u5f35\u4e09\u5403\u98fd\uf9ba\u96de Zhangsan eat-full-PERF chicken '*Zhangsan ate (something) and the chicken became full.' (OC reading) '?Zhangsan ate the chicken and became full.' (SC reading)",
"cite_spans": [
{
"start": 124,
"end": 136,
"text": "(OC reading)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and the Applicability of the Rules",
"sec_num": "3."
},
{
"text": "Since both chi \u5403 'eat' and bao \u98fd 'full (from eating)' can take animate subjects, the VR is predicted to be transitive and either SC or OC. Nevertheless, the impossibility of Transitivity of a Chinese Affected Argument of the Result Verb becoming full from someone else's eating rules out the transitive-and-OC reading. As for why the transitive-and-SC reading is also impossible, however, real-world knowledge does not seem to be a factor, as there is nothing unusual about eating something and becoming full as a result.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and the Applicability of the Rules",
"sec_num": "3."
},
{
"text": "For now, we have not been able to explain the underlying motivations for every (im)possible reading. Nevertheless, the proposed rules so far have made the correct prediction most of the time in the VRs we encountered.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and the Applicability of the Rules",
"sec_num": "3."
},
{
"text": "In the current study, we explain how we predict a VR's transitivity and identify the argument predicated by the second verb. We propose a set of rules that are motivated by a lexical-semantic analysis. Although these rules have not been tested against a corpus, they are testable and are worth testing. This is because linguistic analyses suggest their theoretical credibility and because these rules have a uniform formalism and are modular in the sense that they use two kinds of formally-represented information, i.e., 1) the transitivity of V1 and V2 and 2) whether the arguments can be the subject and object of the two component verbs or not. If these rules prove to achieve high prediction rates, they can be readily applied.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "4."
},
{
"text": "A transitive verb is one that has a direct object, although the object does not have to be overt (i.e., occurring in the surface structure), whereas an intransitive verb does not allow a direct object at all (overt or covert). For example, the transitive verb eat has a direct object, although both He ate a sandwich and He ate are possible. In contrast, as an intransitive verb, go usually cannot have a direct object. (cf. http://www.glottopedia.de/index.php/Transitive.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Examples of actual representations can be found inLi (2007: 95) andHuang (2006:21).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Some researchers use the terms \"real-world knowledge\" and \"pragmatic constraints\" interchangeably.Li (2007), however, seems to distinguish between them.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "cf.Crystal 1997 for the definition of object as \"the receiver of the action.\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "As mentioned in Section 2.2, the VR is polysemous between an OC reading (i.e. zhui-lei 1 \u8ffd\uf94f 1 ) and an SC reading (i.e. zhui-lei 2 \u8ffd\uf94f 2 ). Nevertheless, while the heuristics are not sufficient to decide the relevant reading, the sentential context of (6) requires the SC reading. The case of (15) is similar to (6) except that, in the former, the relevant rule (i.e. rule (f)) fails to recognize ambiguities.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We think that there are two polysemous e \u9913. Besides the intransitive sense, sentences like Baba guyi e xiaohai \u7238\u7238\u6545\u610f\u9913\u5c0f\u5b69 'The father deliberately made/makes his children starve' suggests the existence of a transitive e \u9913.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "predicted by (c) and (d) to be either SC or OC, but turns out to be OC only because the affecting direction of the VR is toward the object. It might be asked if one of the verbal components has contributed to the affecting direction of the VR. As far as jiao-hui \u6559\u6703 is concerned, the following sentences show that the affecting direction is a co-product of V1 and V2. That jiao-hui \u6559\u6703 'teach someone and make him/her understand' and jiao-fan \u6559\u7169 'teach and got (someone) vexed' differ in the affected arguments indicates that the affecting direction at least is not determined by V1 in all instances. Likewise, a comparison between jiao-hui \u6559\u6703 and xue-hui \u5b78\u6703 'learned something' shows that the affecting direction of the VR in question is not determined by V2 alone, either. Rather, it appears that real-world knowledge as a result of the composition of V1 and V2 deems it unlikely to teach oneself and make oneself understand, hence the inherent OC typing of jiao-hui \u6559\u6703.Li's principle of prototypicality states that the one who acts usually is not the one that is affected. While he calls it a \"pragmatic principle,\" we think it is still derived from experience living in the world. To the extent that the principle of prototypicality is derived from real-world knowledge is true, it is still an abstraction that competes with other kinds of real-world knowledge. Consider the following four sentences where our heuristics make nondeterministic (i.e., (18) and (20)) or wrong predictions (i.e., (19) and (21) ",
"cite_spans": [
{
"start": 1496,
"end": 1500,
"text": "(19)",
"ref_id": "BIBREF6"
},
{
"start": 1505,
"end": 1509,
"text": "(21)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "annex",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Prediction: qie \ufa00 is Vt and dun \u920d is Ri. Since Zhangsan \u5f35\u4e09 cannot be the subject of dun \u920d, and the adjunct of qie \ufa00 can be the subject of dun \u920d, qie-dun \ufa00\u920d is VRt and OC",
"authors": [
{
"first": "",
"middle": [],
"last": "Zhangsan Qie-Dun-Le Dao \u5f35\u4e09\ufa00\u920d\uf9ba\u5200 Zhangsan",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhangsan qie-dun-le dao \u5f35\u4e09\ufa00\u920d\uf9ba\u5200 Zhangsan cut-blunt-PERF knife 'Zhangsan cut (something) with the knife, and as a result the knife became blunt.' Prediction: qie \ufa00 is Vt and dun \u920d is Ri. Since Zhangsan \u5f35\u4e09 cannot be the subject of dun \u920d, and the adjunct of qie \ufa00 can be the subject of dun \u920d, qie-dun \ufa00\u920d is VRt and OC. (Rule (b))",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "\u5f35\u4e09\uf95a\u61c2\uf9ba\u90a3\u9996\u8a69 Zhangsan read-understand-PERF that-CL poem 'Zhangsan read and understood that poem",
"authors": [
{
"first": "",
"middle": [],
"last": "Zhangsan Du-Dong-Le Na-Shou",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Shi",
"suffix": ""
}
],
"year": null,
"venue": "Prediction: du \uf95a is Vt and dong \u61c2 is Rt; du-dong \uf95a\u61c2 is VRt and SC",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhangsan du-dong-le na-shou shi. \u5f35\u4e09\uf95a\u61c2\uf9ba\u90a3\u9996\u8a69 Zhangsan read-understand-PERF that-CL poem 'Zhangsan read and understood that poem.' Prediction: du \uf95a is Vt and dong \u61c2 is Rt; du-dong \uf95a\u61c2 is VRt and SC. (Rule (a))",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "SC reading) Prediction: jiao \u6559 is Vt and \u7169 fan is Ri. Since Zhangsan \u5f35\u4e09 and Lisi \uf9e1\u56db do not differ in the possibility of being the arguments of the two verbs, jiao-fan \u6559\u7169 is predicted to be VRt and either OC",
"authors": [
{
"first": "",
"middle": [],
"last": "Zhangsan Jiao-Fan-Le Lisi \u5f35\u4e09\u6559\u7169\uf9ba\uf9e1\u56db Zhangsan Teach-Vexed-Perf",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Lisi",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhangsan jiao-fan-le Lisi \u5f35\u4e09\u6559\u7169\uf9ba\uf9e1\u56db Zhangsan teach-vexed-PERF Lisi 'Zhangsan taught Lisi and as a result Lisi felt vexed.' (\u6559\u7169 1 , OC reading) 'Zhangsan taught Lisi and as a result Zhangsan felt vexed.' (\u6559\u7169 2 , SC reading) Prediction: jiao \u6559 is Vt and \u7169 fan is Ri. Since Zhangsan \u5f35\u4e09 and Lisi \uf9e1\u56db do not differ in the possibility of being the arguments of the two verbs, jiao-fan \u6559\u7169 is predicted to be VRt and either OC (Rule (c)) or SC (Rule (d)). (Context beyond the sentential level is needed for disambiguation.)",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Prediction: jiao \u6559 is Vt and hui \u6703 is Rt. Since Zhangsan \u5f35\u4e09 and Lisi \uf9e1\u56db do not differ in the possibilities of being the arguments of the two verbs, jiao-hui \u6559\u6703 is predicted to be VRt and either OC (Rule (c)) or SC (Rule (d)). Nevertheless, as the affecting direction of jiao-hui \u6559\u6703 is toward the object of V1, jiao-hui \u6703 is VRt and OC",
"authors": [
{
"first": "",
"middle": [],
"last": "Zhangsan Jiao-Hui-Le Lisi \u5f35\u4e09\u6559\u6703\uf9ba\uf9e1\u56db Zhangsan Teach-Know-Perf",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Lisi",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhangsan jiao-hui-le Lisi \u5f35\u4e09\u6559\u6703\uf9ba\uf9e1\u56db Zhangsan teach-know-PERF Lisi 'Zhangsan taught Lisi (something), and as a result Lisi learned it.' Prediction: jiao \u6559 is Vt and hui \u6703 is Rt. Since Zhangsan \u5f35\u4e09 and Lisi \uf9e1\u56db do not differ in the possibilities of being the arguments of the two verbs, jiao-hui \u6559\u6703 is predicted to be VRt and either OC (Rule (c)) or SC (Rule (d)). Nevertheless, as the affecting direction of jiao-hui \u6559\u6703 is toward the object of V1, jiao-hui \u6703 is VRt and OC. (The affecting direction is not predicted by rules.)",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Since Zhangsan \u5f35\u4e09 can be the subject of bing \u75c5, e-bing \u9913\u75c5 is predicted to be VRi and SC. (The affecting direction, as predicted by (c) and (d), is ambiguous between a VRt and SC and a VRt and OC reading",
"authors": [
{
"first": "",
"middle": [],
"last": "Zhangsan E-Bing-Le \u5f35\u4e09\u9913\u75c5\uf9ba Zhangsan Hungry-Sick-Perf",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhangsan e-bing-le \u5f35\u4e09\u9913\u75c5\uf9ba Zhangsan hungry-sick-PERF 'Zhangsan became sick as a result of being hungry.' Prediction: e \u9913 is Vt 8 and bing \u75c5 is Ri. Since Zhangsan \u5f35\u4e09 can be the subject of bing \u75c5, e-bing \u9913\u75c5 is predicted to be VRi and SC. (The affecting direction, as predicted by (c) and (d), is ambiguous between a VRt and SC and a VRt and OC reading; it is disambiguated by the sentential context.)",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Affected Argument of the Result Verb",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Affected Argument of the Result Verb",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Prediction: jiao \u6559 is Vt and hui \u6703 is Rt. Since Zhangsan \u5f35\u4e09 and Lisi \uf9e1\u56db do not differ in the possibility of being the arguments of the two verbs, jiao-hui \u6559\u6703 is predicted to be VRt and either OC (Rule (c)) or SC (Rule (d)). Nevertheless, as the affecting direction of jiao-hui \u6559\u6703 is toward the object of V1, jiao-hui \u6703 is VRt and OC",
"authors": [
{
"first": "",
"middle": [],
"last": "Zhangsan Jiao-Hui-Le Lisi \u5f35\u4e09\u6559\u6703\uf9ba\uf9e1\u56db Zhangsan Teach-Know-Perf",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Lisi",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhangsan jiao-hui-le Lisi \u5f35\u4e09\u6559\u6703\uf9ba\uf9e1\u56db Zhangsan teach-know-PERF Lisi 'Zhangsan taught Lisi (something), and as a result Lisi learned it.' Prediction: jiao \u6559 is Vt and hui \u6703 is Rt. Since Zhangsan \u5f35\u4e09 and Lisi \uf9e1\u56db do not differ in the possibility of being the arguments of the two verbs, jiao-hui \u6559\u6703 is predicted to be VRt and either OC (Rule (c)) or SC (Rule (d)). Nevertheless, as the affecting direction of jiao-hui \u6559\u6703 is toward the object of V1, jiao-hui \u6703 is VRt and OC. (The affecting direction is not predicted by rules.)",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Since Zhangsan \u5f35\u4e09 can be the subject of bing \u75c5, e-bing \u9913\u75c5 is predicted to be VRi and SC. (The affecting direction, as predicted by (c) and (d), is ambiguous between a VRt and SC and a VRt and OC reading",
"authors": [
{
"first": "",
"middle": [],
"last": "Zhangsan E-Bing-Le \u5f35\u4e09\u9913\u75c5\uf9ba Zhangsan Hungry-Sick-Perf",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhangsan e-bing-le \u5f35\u4e09\u9913\u75c5\uf9ba Zhangsan hungry-sick-PERF 'Zhangsan became sick as a result of being hungry.' Prediction: e \u9913 is Vt and bing \u75c5 is Ri. Since Zhangsan \u5f35\u4e09 can be the subject of bing \u75c5, e-bing \u9913\u75c5 is predicted to be VRi and SC. (The affecting direction, as predicted by (c) and (d), is ambiguous between a VRt and SC and a VRt and OC reading; it is disambiguated by the sentential context.)",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Since Zhangsan \u5f35\u4e09 can be the subject of both, bing-huang \u75c5\u614c is predicted to be VRi and SC. Nevertheless, the affecting direction of bing-huang \u75c5\u614c can be either toward the subject or the object. Therefore, bing-huang \u75c5\u614c can be either VRi and SC or VRt and OC. (The affecting direction is not-predicted by rules",
"authors": [
{
"first": "",
"middle": [],
"last": "Zhangsan Bing-Huang-Le Lisi \u5f35\u4e09\u75c5\u614c\uf9ba\uf9e1\u56db Zhangsan Sick-Nervous-Perf",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Lisi",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhangsan bing-huang-le Lisi \u5f35\u4e09\u75c5\u614c\uf9ba\uf9e1\u56db Zhangsan sick-nervous-PERF Lisi 'Zhangsan's being sick got Lisi nervous.' Prediction: bing \u75c5 is Vi and huang \u614c is Ri. Since Zhangsan \u5f35\u4e09 can be the subject of both, bing-huang \u75c5\u614c is predicted to be VRi and SC. Nevertheless, the affecting direction of bing-huang \u75c5\u614c can be either toward the subject or the object. Therefore, bing-huang \u75c5\u614c can be either VRi and SC or VRt and OC. (The affecting direction is not-predicted by rules; it is disambiguated by the sentential context.)",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "-(22) all satisfy ASAES (Animate Subject as Agent or Experiencer Strategy) because this paper only deals with such VR patterns. The other principle, i.e., prototypicality, makes SC readings less likely. Nevertheless, SC readings are not only preferred but are the only possibility in (19) and (21). Therefore, the knowledge that \"the one who acts is unlikely to be the one that is affected\" is not only insufficient to rank readings but actually allows impossible readings. That (19) and (21) allow SC readings seems to come from real-world knowledge that verifies the possibility for the one who acts (i.e., Zhangsan \u5f35\u4e09) to be the affected one. A comparison between (21) and (22) suggests that the ultimate difficulty in pinpointing the most possible reading of a VR lies in the fluidity of real-world knowledge",
"authors": [],
"year": null,
"venue": "Such fluidity sometimes comes from subjectivity. Take the readings of e-bing \u9913\u75c5 'hungry-sick' and bing-huang \u75c5\u614c 'sick-nervous' for example",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "As far as Li's (2007) two principles for ranking possible readings are concerned, (19)-(22) all satisfy ASAES (Animate Subject as Agent or Experiencer Strategy) because this paper only deals with such VR patterns. The other principle, i.e., prototypicality, makes SC readings less likely. Nevertheless, SC readings are not only preferred but are the only possibility in (19) and (21). Therefore, the knowledge that \"the one who acts is unlikely to be the one that is affected\" is not only insufficient to rank readings but actually allows impossible readings. That (19) and (21) allow SC readings seems to come from real-world knowledge that verifies the possibility for the one who acts (i.e., Zhangsan \u5f35\u4e09) to be the affected one. A comparison between (21) and (22) suggests that the ultimate difficulty in pinpointing the most possible reading of a VR lies in the fluidity of real-world knowledge. Such fluidity sometimes comes from subjectivity. Take the readings of e-bing \u9913\u75c5 'hungry-sick' and bing-huang \u75c5\u614c 'sick-nervous' for example. It seems that, for a VR composed of two Vis, References",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Extended-HowNet-A representational framework for concepts",
"authors": [
{
"first": "K.-J",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "S.-L",
"middle": [],
"last": "Huang",
"suffix": ""
},
{
"first": "Y.-Y",
"middle": [],
"last": "Shih",
"suffix": ""
},
{
"first": "Y.-J",
"middle": [],
"last": "Chen",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of OntoLex 2005",
"volume": "",
"issue": "",
"pages": "1--6",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Chen, K.-J., Huang, S.-L., Shih, Y.-Y., & Chen, Y.-J. (2005). Extended-HowNet-A representational framework for concepts. In Proceedings of OntoLex 2005, 1-6.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Dictionary of phonetics and linguistics",
"authors": [
{
"first": "D",
"middle": [],
"last": "Crystal",
"suffix": ""
}
],
"year": 1997,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Crystal, D. (1997). Dictionary of phonetics and linguistics. Oxford: Wiley-Blackwell.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Resultatives and unaccusatives: a parametric view",
"authors": [
{
"first": "C.-T",
"middle": [
"J"
],
"last": "Huang",
"suffix": ""
}
],
"year": 2002,
"venue": "Bulletin of the Chinese Linguistic Society of Japan",
"volume": "253",
"issue": "",
"pages": "1--43",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Huang, C.-T. J. (2002). Resultatives and unaccusatives: a parametric view. Bulletin of the Chinese Linguistic Society of Japan, 253, 1-43.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "A constructional approach to argument realization of Chinese resultatives",
"authors": [
{
"first": "H.-C",
"middle": [],
"last": "Huang",
"suffix": ""
}
],
"year": 2006,
"venue": "UST Working Papers in Linguistics",
"volume": "2",
"issue": "",
"pages": "13--31",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Huang, H.-C. (2006). A constructional approach to argument realization of Chinese resultatives. UST Working Papers in Linguistics, 2, 13-31.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Chinese as a headless language in compounding",
"authors": [
{
"first": "S",
"middle": [],
"last": "Huang",
"suffix": ""
}
],
"year": 1998,
"venue": "New approaches to Chinese word formation: Morphology, phonology and the lexicon in modern and ancient Chinese",
"volume": "",
"issue": "",
"pages": "261--284",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Huang, S. (1998). Chinese as a headless language in compounding, In J. L. Packard (Ed.), New approaches to Chinese word formation: Morphology, phonology and the lexicon in modern and ancient Chinese, 261-284. Berlin: Mouton De Gruyter.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "English verb classes and alternations: A preliminary investigation",
"authors": [
{
"first": "B",
"middle": [],
"last": "Levin",
"suffix": ""
}
],
"year": 1993,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Levin, B. (1993). English verb classes and alternations: A preliminary investigation. Chicago: University of Chicago Press.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "On the headedness of Mandarin resultative verb compounds. Concentric: Studies in Linguistics",
"authors": [
{
"first": "C",
"middle": [],
"last": "Li",
"suffix": ""
}
],
"year": 2009,
"venue": "",
"volume": "35",
"issue": "",
"pages": "27--63",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Li, C. (2009). On the headedness of Mandarin resultative verb compounds. Concentric: Studies in Linguistics, 35(1), 27-63.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Mandarin resultative verb compounds: Where syntax, semantics, and pragmatics meet",
"authors": [
{
"first": "C",
"middle": [],
"last": "Li",
"suffix": ""
}
],
"year": 2007,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Li, C. (2007). Mandarin resultative verb compounds: Where syntax, semantics, and pragmatics meet. Ph. D [Dissertation].",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Mandarin Chinese: A functional reference grammar",
"authors": [
{
"first": "C",
"middle": [
"N"
],
"last": "Li",
"suffix": ""
},
{
"first": "S",
"middle": [
"A"
],
"last": "Thompson",
"suffix": ""
}
],
"year": 1981,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Li, C. N. & Thompson, S. A. (1981). Mandarin Chinese: A functional reference grammar. Taipei: Crane.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "The syntax-morphology interface of verb-complement compounds in Mandarin Chinese",
"authors": [
{
"first": "H.-L",
"middle": [],
"last": "Lin",
"suffix": ""
}
],
"year": 1998,
"venue": "Available: ProQuest",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lin, H.-L. (1998). The syntax-morphology interface of verb-complement compounds in Mandarin Chinese. Ph. D [Dissertation]. University of Illinois at Urbana-Champaign, Urbana-Champaign, Illinois, USA. [Online]. Available: ProQuest. [Accessed: 2011/7/13].",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "A conflation account of mono-clausal resultatives in English and Chinese",
"authors": [
{
"first": "S",
"middle": [],
"last": "Mulkeen",
"suffix": ""
}
],
"year": 2011,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mulkeen, S. (2011). A conflation account of mono-clausal resultatives in English and Chinese. MA thesis. National Cheng-Kung University. [Online].",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Available",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Available: http://www.airitilibrary.com/searchdetail.aspx?DocIDs=U0026-0802201119204700 [Accessed:2012",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Agentivity agreement and lexicalization in Resultative Verbal Compounding, Paper Space",
"authors": [
{
"first": "L",
"middle": [],
"last": "Shen",
"suffix": ""
},
{
"first": "T.-H",
"middle": [
"J"
],
"last": "Lin",
"suffix": ""
}
],
"year": 2005,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Shen, L., & Lin, T.-H. J. (2005). Agentivity agreement and lexicalization in Resultative Verbal Compounding, Paper Space, 2005. [Online].",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Available",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Available: http://ling.nthu.edu.tw/faculty/thlin/pdf/Shen_Lin.pdf. [Accessed: 2011/7/9].",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "The parameter of aspect",
"authors": [
{
"first": "C",
"middle": [
"C"
],
"last": "Smith",
"suffix": ""
}
],
"year": 1994,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Smith, C. C. (1994). The parameter of aspect. New York: Kluwer Academic Press.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "The semantic structures of Chinese verb-resultatives",
"authors": [
{
"first": "H",
"middle": [],
"last": "Yin",
"suffix": ""
}
],
"year": 2011,
"venue": "International Journal of English Linguistics",
"volume": "1",
"issue": "2",
"pages": "126--133",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yin, H. (2011). The semantic structures of Chinese verb-resultatives. International Journal of English Linguistics, 1(2), 126-133.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"num": null,
"text": "Affected Argument of the Result Verb (2) Zhangsan da Lisi \u5f35\u4e09\u6253\uf9e1\u56db Zhangsan hit Lisi 'Zhangsan hit Lisi.' In contrast, the verb po \u7834 'broken' requires an inanimate theme (PERF=perfective marker): (3) Boli po le \u73bb\u7483\u7834\uf9ba glass broken-PERF 'The glass is broken.' Thus, the lexical entries of da \u6253 'hit' and po \u7834 'broken' would be partially represented as (4) below (Vt=transitive verb; Vi=intransitive verb; [+ANI]=animate entity; [+PHY]=physical entity; [-ANI]=inanimate entity): (4) da \u6253 'hit' Transitivity: Vt Selectional restrictions: [+ANI] agent, [+PHY] theme po \u7834 'broken' Transitivity: Vi Selectional restrictions: [-ANI] theme",
"type_str": "figure"
},
"FIGREF1": {
"uris": null,
"num": null,
"text": "Zhangsan zhui-lei le \u5f35\u4e09\u8ffd\uf94f\uf9baZhangsan chase-tired-PERF 'Zhangsan chased (someone) and became tired.' Prediction: zhui \u8ffd is Vt and lei \uf94f is Ri. Since Zhangsan \u5f35\u4e09 can be the subject of lei \uf94f, zhui-lei \u8ffd\uf94f is VRi and SC. (Affecting direction, as predicted by (c) and (d), is ambiguous between VRt and OC and VRi and SC; it is disambiguated by the sentential context 7 .)(7) Zhangsan ca-liang le boli \u5f35\u4e09\u64e6\uf977\uf9ba\u73bb\u7483 Zhangsan wipe-shiny-PERF glass 'Zhangsan wiped the glass shiny.' Prediction: ca \u64e6 is Vt and liang \uf977 is Ri. Since Zhangsan \u5f35\u4e09 cannot be the subject of liang \uf977, and the object of ca \u64e6 can be the subject of liang \uf977, ca-liang \u64e6\uf977 is VRt and OC. (Rule (b)) Affected Argument of the Result Verb In sentences (13)-(15), V1 is an intransitive verb: (13) Zhangsan zou-lei-le tui \u5f35\u4e09\u8d70\uf94f\uf9ba\u817f Zhangsan walk-tired-PERF leg 'Zhang walked until his legs got tired.'",
"type_str": "figure"
},
"FIGREF2": {
"uris": null,
"num": null,
"text": "Zhangsan zhui-lei-le Lisi \u5f35\u4e09\u8ffd\uf94f\uf9ba\uf9e1\u56db Zhangsan chase-tired-PERF Lisi 'Zhangsan chased Lisi and as a result Zhangsan got tired.'",
"type_str": "figure"
},
"TABREF0": {
"type_str": "table",
"text": ", Huang regards baozhi \u5831\u7d19 'newspaper,' instead of ta \u4ed6 'he,' who engages in the action that leads to the result state, as the causer. It is not clear why baozhi \u5831 Affected Argument of the Result Verb \u7d19 here, yifu \u8863\u670d in Na-bao yifu xi-lei-le Zhangsan \u90a3\u5305\u8863\u670d\u6d17\uf94f\uf9ba\u5f35\u4e09 and shu \u66f8 in Zhangsan kan-lei-le shu \u5f35\u4e09\u770b\uf94f\uf9ba\u66f8 from",
"content": "<table><tr><td>Transitivity of a Chinese Verb-Result Compound and</td><td>5</td></tr></table>",
"num": null,
"html": null
},
"TABREF1": {
"type_str": "table",
"text": "; if the affecting direction of the VR is toward Vt's subject, e.g., da-ying \u6253\u8d0f 'fight and win,' du-dong \uf95a\u61c2 'read something and understand it'",
"content": "<table><tr><td>8</td><td>You-shan Chung and Keh-Jiann Chen</td></tr><tr><td colspan=\"2\">The affecting direction principle:</td></tr><tr><td colspan=\"2\">Case 1: When V1 is Vt</td></tr><tr><td colspan=\"2\">Vt+R VRt and SCVt+R VRt and OC; if the affecting direction of the VR is not toward Vt's subject, e.g.,</td></tr><tr><td colspan=\"2\">jiao-hui \u6559\u6703 'teach someone and make him/her understand'</td></tr><tr><td colspan=\"2\">Case 2: When V1 is Vi</td></tr><tr><td colspan=\"2\">Vi + Rt VRt and SC, e.g., pao-shu \u8dd1\u8f38 'lose in running'</td></tr><tr><td>Vi + Ri</td><td>VRi and SC; if the affecting direction of the VR is toward Vi's subject, e.g.,</td></tr><tr><td colspan=\"2\">pao-lei \u8dd1\uf94f 'tired from running'</td></tr><tr><td>Vi + Ri</td><td>VRt and OC; if the affecting direction of the VR is toward Ri's subject, e.g.,</td></tr><tr><td colspan=\"2\">pao-po \u8dd1\u7834 'broken from running'</td></tr></table>",
"num": null,
"html": null
},
"TABREF2": {
"type_str": "table",
"text": "\u9a0e\uf94f 2 'tired from engaging in the activity of riding,' zhui-lei 2 \u8ffd\uf94fThe following rules deal with VRs where V1 is an intransitive verb.",
"content": "<table><tr><td/><td/><td>Transitivity of a Chinese Verb-Result Compound and</td><td>11</td></tr><tr><td/><td/><td>Affected Argument of the Result Verb</td></tr><tr><td colspan=\"3\">Case 2: When V1 is Vi</td></tr><tr><td colspan=\"3\">(e) Vi + Rt VRt and SC, e.g., pao-shu \u8dd1\u8f38 'lose in running'</td></tr><tr><td colspan=\"2\">(f) Vi + Ri</td><td>VRi and SC; if Vi's subject satisfies the selectional restrictions of Ri's</td></tr><tr><td/><td colspan=\"2\">subject, e.g., pao-lei \u8dd1\uf94f 'tired from running'</td></tr><tr><td colspan=\"2\">(g) Vi + Ri</td><td>VRt and OC; if Vi's subject does not satisfy the selectional restrictions of</td></tr><tr><td/><td colspan=\"2\">Ri's subject, e.g., pao-po \u8dd1\u7834 'broken from running'</td></tr><tr><td colspan=\"3\">Case 1: When V1 is Vt</td></tr><tr><td colspan=\"2\">(a) Vt + Rt</td><td>VRt and SC, e.g., da-ying \u6253\u8d0f 'fight and win,' du-dong \uf95a\u61c2 'read</td></tr><tr><td/><td colspan=\"2\">something and understand it'</td></tr><tr><td colspan=\"2\">(b) Vt + Ri</td><td>VRt and OC; if Vt's object or adjunct satisfies the selectional restrictions of</td></tr><tr><td/><td colspan=\"2\">Ri's subject, e.g., da-po \u6253\u7834 'broken from hitting,' qie-dun \ufa00\u920d 'blunt from</td></tr><tr><td/><td>cutting'</td></tr><tr><td colspan=\"2\">(c) Vt + Ri</td><td>VRt and OC; if Vt's subject and object both satisfy the selectional</td></tr><tr><td/><td colspan=\"2\">restrictions of Ri's subject, e.g., qi-lei`1 \u9a0e\uf94f 1 'tired from being ridden,' zhui-lei 1 \u8ffd\uf94f</td></tr><tr><td/><td colspan=\"2\">1 'tired from being chased,' jiao-fan 1 \u6559\u7169 1 'vexed from being taught'</td></tr><tr><td>(d)</td><td colspan=\"2\">Vt + Ri VRt and SC; if Vt's subject satisfies the selectional restrictions of Ri's</td></tr><tr><td/><td colspan=\"2\">subject, e.g., qi-lei 2 2 'vexed from</td></tr><tr><td/><td colspan=\"2\">engaging in the activity of teaching'</td></tr></table>",
"num": null,
"html": null
},
"TABREF3": {
"type_str": "table",
"text": "ku \u54ed is Vi and ya \u555e is Ri. Since Zhangsan \u5f35\u4e09 cannot be the subject of ya \u555e, ku-ya \u54ed\u555e is VRt and OC.",
"content": "<table><tr><td>(14) Zhangsan ku-ya-le sangzi \u5f35\u4e09\u54ed\u555e\uf9ba\u55d3\u5b50</td></tr><tr><td>Zhangsan cry-hoarse-PERF throat</td></tr><tr><td>'Zhangsan cried his throat hoarse.'</td></tr><tr><td>Prediction: (Rule (g))</td></tr><tr><td>(15) Zhangsan bing-huang-le Lisi \u5f35\u4e09\u75c5\u614c\uf9ba\uf9e1\u56db</td></tr><tr><td>Zhangsan sick-nervous-PERF Lisi</td></tr><tr><td>'Zhangsan's being sick got Lisi nervous.'</td></tr></table>",
"num": null,
"html": null
}
}
}
} |