File size: 78,531 Bytes
6fa4bc9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 | {
"paper_id": "P99-1015",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T09:31:48.085176Z"
},
"title": "Corpus-Based Linguistic Indicators for Aspectual Classification",
"authors": [
{
"first": "Eric",
"middle": [
"V"
],
"last": "Siegel",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Columbia University New York",
"location": {
"postCode": "10027",
"region": "NY"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Fourteen indicators that measure the frequency of lexico-syntactic phenomena linguistically related to aspectual class are applied to aspectual classification. This group of indicators is shown to improve classification performance for two aspectual distinctions, stativity and completedness (i.e., telicity), over unrestricted sets of verbs from two corpora. Several of these indicators have not previously been discovered to correlate with aspect.",
"pdf_parse": {
"paper_id": "P99-1015",
"_pdf_hash": "",
"abstract": [
{
"text": "Fourteen indicators that measure the frequency of lexico-syntactic phenomena linguistically related to aspectual class are applied to aspectual classification. This group of indicators is shown to improve classification performance for two aspectual distinctions, stativity and completedness (i.e., telicity), over unrestricted sets of verbs from two corpora. Several of these indicators have not previously been discovered to correlate with aspect.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Aspectual classification maps clauses to a small set of primitive categories in order to reason about time.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "For example, events such as, \"You called your father,\" are distinguished from states such as, \"You resemble your father.\" These two high-level categories correspond to primitive distinctions in many domains, e.g., the distinction between procedure and diagnosis in the medical domain.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Aspectual classification further distinguishes events according to completedness (i.e., telicity), which determines whether an event reaches a culmination point in time at which a new state is introduced. For example, \"I made a fire\" is culminated, since a new state is introduced -something is made, whereas, \"I gazed at the sunset\" is non-culminated.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Aspectual classification is necessary for interpreting temporal modifiers and assessing temporal entailments (Vendler, 1967; Dowty, 1979; Moens and Steedman, 1988; Dorr, 1992) , and is therefore a necessary component for applications that perform certain natural language interpretation, natural language generation, summarization, information retrieval, and machine translation tasks.",
"cite_spans": [
{
"start": 109,
"end": 124,
"text": "(Vendler, 1967;",
"ref_id": "BIBREF25"
},
{
"start": 125,
"end": 137,
"text": "Dowty, 1979;",
"ref_id": "BIBREF5"
},
{
"start": 138,
"end": 163,
"text": "Moens and Steedman, 1988;",
"ref_id": "BIBREF13"
},
{
"start": 164,
"end": 175,
"text": "Dorr, 1992)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Aspect introduces a large-scale, domaindependent lexical classification problem. Although an aspectual lexicon of verbs would suffice to classify many clauses by their main verb only, a verb's primary class is often domaindependent (Siegel, 1998b) . Therefore, it is necessary to produce a specialized lexicon for each domain.",
"cite_spans": [
{
"start": 232,
"end": 247,
"text": "(Siegel, 1998b)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Most approaches to automatically categorizing words measure co-occurrences between open-class lexical items (Schfitze, 1992; Hatzivassiloglou and McKeown, 1993; Pereira et al., 1993) . This approach is limited since cooccurrences between open-class lexical items is sparse, and is not specialized for particular semantic distinctions such as aspect.",
"cite_spans": [
{
"start": 108,
"end": 124,
"text": "(Schfitze, 1992;",
"ref_id": "BIBREF19"
},
{
"start": 125,
"end": 160,
"text": "Hatzivassiloglou and McKeown, 1993;",
"ref_id": "BIBREF8"
},
{
"start": 161,
"end": 182,
"text": "Pereira et al., 1993)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper, we describe an expandable framework to classify verbs with linguisticallyspecialized numerical indicators. Each linguistic indicator measures the frequency of a lexicosyntactic marker, e.g. the perfect tense. These markers are linguistically related to aspect, so the indicators are specialized for aspectual classification in particular. We perform an evaluation of fourteen linguistic indicators over unrestricted sets of verbs from two corpora. When used in combination, this group of indicators is shown to improve classification performance for two aspectual distinctions: stativity and completedness. Moreover, our analysis reveals a predictive value for several indicators that have not previously been discovered to correlate with aspect in the linguistics literature.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The following section further describes aspect, and introduces linguistic insights that are exploited by linguistic indicators. The next section describes the set of linguistic indicators evaluated in this paper. Then, our experimental method and results are given, followed by a discussion and conclusions. (Moens and Steedman, 1988 Table 1 summarizes the three aspectual distinctions, which compose five aspectual categories. In addition to the two distinctions described in the previous section, atomicity distinguishes events according to whether they have a time duration (punctual versus extended). Therefore, four classes of events are derived: culmination, culminated process, process, and point. These aspectual distinctions are defined formally by Dowty (1979) . Several researchers have developed models that incorporate aspectual class to assess temporal constraints between clauses (Passonneau, 1988; Dorr, 1992) . For example, stativity must be identified to detect temporal constraints between clauses connected with when, e.g., in interpreting (1),",
"cite_spans": [
{
"start": 308,
"end": 333,
"text": "(Moens and Steedman, 1988",
"ref_id": "BIBREF13"
},
{
"start": 758,
"end": 770,
"text": "Dowty (1979)",
"ref_id": "BIBREF5"
},
{
"start": 895,
"end": 913,
"text": "(Passonneau, 1988;",
"ref_id": "BIBREF14"
},
{
"start": 914,
"end": 925,
"text": "Dorr, 1992)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [
{
"start": 334,
"end": 341,
"text": "Table 1",
"ref_id": "TABREF0"
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "(1) She had good strength when objectively tested. (2) Phototherapy was discontinued when the bilirubin came down to 13. the temporal relationship is different:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "COme I I discontinue I I",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "These aspectual distinctions are motivated by a series of entailment constraints. In particular, certain lexico-syntactic features of a clause, such as temporal adjuncts and tense, are constrained by and contribute to the aspectual class of the clause (Vendler, 1967; Dowty, 1979) . Tables 2 illustrates an array of linguistic con- As a second example, an event must be culminated to appear in the perfect tense, for example,",
"cite_spans": [
{
"start": 252,
"end": 267,
"text": "(Vendler, 1967;",
"ref_id": "BIBREF25"
},
{
"start": 268,
"end": 280,
"text": "Dowty, 1979)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "She had made an attempt. (culm.), which contrasts with, (7) *He has cowered down. (non-culm.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The best way to exploit aspectual markers is not obvious, since, while the presence of a marker in a particular clause indicates a constraint on the aspectual class of the clause, the absence thereof does not place any constraint. Therefore, as with most statistical methods for natural language, the linguistic constraints associated with markers are best exploited by a system that measures co-occurrence frequencies. For example, a verb that appears more frequently in the progressive is more likely to describe an event. Klavans and Chodorow (1992) pioneered the application of statistical corpus analysis to aspectuai classification by ranking verbs according to the frequencies with which they occur with certain aspectual markers. tor has a unique value for each verb. The first indicator, frequency, is simply the frequency with which each verb occurs over the entire corpus. The remaining 13 indicators measure how frequently each verb occurs in a clause with the named linguistic marker. For example, the next three indicators listed measure the frequency with which verbs 1) are modified by not or never, 2) are modified by a temporal adverb such as then or frequently, and 3) have no deep subject (e.g., passive phrases such as, \"She was admitted to the hospital\"). Further details regarding these indicators and their linguistic motivation is given by Siegel (1998b) .",
"cite_spans": [
{
"start": 525,
"end": 552,
"text": "Klavans and Chodorow (1992)",
"ref_id": "BIBREF9"
},
{
"start": 1365,
"end": 1379,
"text": "Siegel (1998b)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Linguistic Indicators",
"sec_num": "3"
},
{
"text": "There are several reasons to expect superior classification performance when employing multiple linguistic indicators in combination rather than using them individually. While individual indicators have predictive value, they are predictively incomplete. This incompleteness has been illustrated empirically by showing that some indicators help for only a subset of verbs (Siegel, 1998b) . Such incompleteness is due in \u2022 part to sparsity and noise of data when computing indicator values over a corpus with limited size and some parsing errors. However, this incompleteness is also a consequence of the linguistic characteristics of various indicators. For example:",
"cite_spans": [
{
"start": 372,
"end": 387,
"text": "(Siegel, 1998b)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Linguistic Indicators",
"sec_num": "3"
},
{
"text": "\u2022 Aspectual coercion such as iteration compromises indicator measurements (Moens and Steedman, 1988) . For example, a punctual event appears with the progressive in, \"She was sneezing for a week.\" (point --, process --. culminated process) In this example, for a week can only modify an extended event, requiring the first coercion. In addition, this for-PP also makes an event culminated, causing the second transformation.",
"cite_spans": [
{
"start": 74,
"end": 100,
"text": "(Moens and Steedman, 1988)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Linguistic Indicators",
"sec_num": "3"
},
{
"text": "\u2022 Some aspectual markers such as the pseudo-cleft and manner adverbs test for intentional events, and therefore are not compatible with all events, e.g., \"*I died diligently.\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Linguistic Indicators",
"sec_num": "3"
},
{
"text": "\u2022 The progressive indicator's predictiveness for stativity is compromised by the fact that many location verbs can appear with the progressive, even in their stative sense, e.g. \"The book was lying on the shelf.\" (Dowty, 1979) \u2022 Several indicators measure phenomena that are not linguistically constrained by any aspectuM category, e.g., the present tense, frequency and not/never indicators.",
"cite_spans": [
{
"start": 213,
"end": 226,
"text": "(Dowty, 1979)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Linguistic Indicators",
"sec_num": "3"
},
{
"text": "In this section, we evaluate the set of fourteen linguistic indicators for two aspectual distinctions: stativity and completedness. Evaluation is over corpora of medical reports and novels, respectively. This data is summarized in Table 4 (available at www. CS. columbia, edu/~evs/YerbData).",
"cite_spans": [],
"ref_spans": [
{
"start": 231,
"end": 252,
"text": "Table 4 (available at",
"ref_id": "TABREF6"
}
],
"eq_spans": [],
"section": "Method and Results",
"sec_num": "4"
},
{
"text": "First, linguistic indicators are each evaluated individually. A training set is used to select indicator value thresholds for classification. Then, we report the classification performance achieved by combining multiple indicators. In this case, the training set is used to optimize a model for combining indicators. In both cases, evaluation is performed over a separate test set of clauses.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Method and Results",
"sec_num": "4"
},
{
"text": "The combination of indicators is performed by four standard supervised learning algorithms: decision tree induction (Quinlan, 1986) , CART (Friedman, 1977) , log-linear regression (Santner and Duffy, 1989) and genetic programming (GP) (Cramer, 1985; Koza, 1992) .",
"cite_spans": [
{
"start": 116,
"end": 131,
"text": "(Quinlan, 1986)",
"ref_id": "BIBREF16"
},
{
"start": 139,
"end": 155,
"text": "(Friedman, 1977)",
"ref_id": "BIBREF7"
},
{
"start": 180,
"end": 205,
"text": "(Santner and Duffy, 1989)",
"ref_id": "BIBREF18"
},
{
"start": 235,
"end": 249,
"text": "(Cramer, 1985;",
"ref_id": "BIBREF3"
},
{
"start": 250,
"end": 261,
"text": "Koza, 1992)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Method and Results",
"sec_num": "4"
},
{
"text": "A pilot study showed no further improvement in accuracy or recall tradeoff by additional learning algorithms: Naive Bayes ( Hart, 1973) , Ripper (Cohen, 1995) , ID3 (Quinlan, 1986), C4.5 (Quinlan, 1993) , and metalearning to combine learning methods (Chan and Stolfo, 1993) .",
"cite_spans": [
{
"start": 122,
"end": 123,
"text": "(",
"ref_id": null
},
{
"start": 124,
"end": 135,
"text": "Hart, 1973)",
"ref_id": "BIBREF6"
},
{
"start": 145,
"end": 158,
"text": "(Cohen, 1995)",
"ref_id": "BIBREF2"
},
{
"start": 187,
"end": 202,
"text": "(Quinlan, 1993)",
"ref_id": "BIBREF17"
},
{
"start": 250,
"end": 273,
"text": "(Chan and Stolfo, 1993)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Method and Results",
"sec_num": "4"
},
{
"text": "Our experiments are performed across a corpus of 3,224 medical discharge summaries. A medical discharge summary describes the symptoms, history, diagnosis, treatment and outcome of a patient's visit to the hospital. These reports were parsed with the English Slot Grammar (ESG) (McCord, 1990) , resulting in 97,973 clauses that were parsed fully with no selfdiagnostic errors (ESG produced error messages on 12,877 of this corpus' 51,079 complex sentences).",
"cite_spans": [
{
"start": 278,
"end": 292,
"text": "(McCord, 1990)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Stativity",
"sec_num": "4.1"
},
{
"text": "Be and have, the two most popular verbs, covering 31.9% of the clauses in this corpus, are handled separately from all other verbs. Clauses with be as their main verb, comprising 23.9% of the corpus, always denote a state. Clauses with have as their main verb, composing 8.0% of the corpus, are highly ambiguous, and have been addressed separately by considering the direct object of such clauses (Siegel, 1998a) . 4.1.1 Manual Marking 1,851 clauses from the parsed corpus were manually marked according to stativity. As a linguistic test for marking, each clause was tested for readability with \"What happened was... ,1 A comparison between human markers for this test performed over a different corpus is reported below in Section 4.2.1. Of these, 373",
"cite_spans": [
{
"start": 397,
"end": 412,
"text": "(Siegel, 1998a)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Stativity",
"sec_num": "4.1"
},
{
"text": "1 Manual labeling followed a strict set of linguisticallymotivated guidelines, e.g., negations were ignored (Siegel, 199Sb Table 5 : Indicators discriminate between states and events.",
"cite_spans": [
{
"start": 108,
"end": 116,
"text": "(Siegel,",
"ref_id": null
},
{
"start": 117,
"end": 122,
"text": "199Sb",
"ref_id": null
}
],
"ref_spans": [
{
"start": 123,
"end": 130,
"text": "Table 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Stativity",
"sec_num": "4.1"
},
{
"text": "clauses were rejected because of parsing problems. This left 1,478 clauses, divided equally into training and testing sets. 83.8% of clauses with main verbs other than be and have are events, which thus provides a baseline method of 83.8% for comparison. Since our approach examines only the main verb of a clause, classification accuracy over the test cases has a maximum of 97.4% due to the presence of verbs with multiple classes.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Stativity",
"sec_num": "4.1"
},
{
"text": "The values of the indicators listed in Table 5 were computed, for each verb, across the 97,973 parsed clauses from our corpus of medical discharge summaries.",
"cite_spans": [],
"ref_spans": [
{
"start": 39,
"end": 46,
"text": "Table 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Individual Indicators",
"sec_num": "4.1.2"
},
{
"text": "The second and third columns of Table 5 show the average value for each indicator over stative and event clauses, as measured over the training examples. For example, 4.44% of stative clauses are modified by either not or never, but only 1.56% of event clauses were so modified.",
"cite_spans": [],
"ref_spans": [
{
"start": 32,
"end": 39,
"text": "Table 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Individual Indicators",
"sec_num": "4.1.2"
},
{
"text": "The fourth column shows the results of Ttests that compare indicator values over stative training cases to those over event cases for each indicator. As shown, the differences in stative and event means are statistically significant (p < .01) for the first seven indicators.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Individual Indicators",
"sec_num": "4.1.2"
},
{
"text": "Each indicator was tested individually for classification accuracy by establishing a classification threshold over the training data, and validating performance over the testing data using the same threshold. Only the frequency indicator succeeded in significantly improving clas- ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Individual Indicators",
"sec_num": "4.1.2"
},
{
"text": "Three machine learning methods successfully combined indicator values, improving classification accuracy over the baseline measure. As shown in Table 6 , the decision tree attained the highest accuracy, 93.9%. Binomial tests showed this to be a significant improvement over the 88.0% accuracy achieved by the frequency indicator alone, as well as over the other two learning methods. No further improvement in classification performance was achieved by CART. The increase in the number of stative clauses correctly classified, i.e. stative recall, illustrates an even greater improvement over the baseline. As shown in Table 6 , the three learning methods achieved stative recalls of 74.2%, 47.4% and 34.2%, as compared to the 0.0% stative recall achieved by the baseline, while only a small loss in recall over event clauses was suffered. The baseline does not classify any stative clauses correctly because it classifies all clauses as events.",
"cite_spans": [],
"ref_spans": [
{
"start": 144,
"end": 151,
"text": "Table 6",
"ref_id": "TABREF9"
},
{
"start": 619,
"end": 626,
"text": "Table 6",
"ref_id": "TABREF9"
}
],
"eq_spans": [],
"section": "Indicators in Combination",
"sec_num": "4.1.3"
},
{
"text": "Classification performance is equally competitive without the frequency indicator, although this indicator appears to dominate over others. When decision tree induction was employed to combine only the 13 indicators other than frequency, the resulting decision tree achieved 92.4% accuracy and 77.5% stative recall.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Indicators in Combination",
"sec_num": "4.1.3"
},
{
"text": "In medical discharge summaries, nonculminated event clauses are rare. Therefore, our experiments for classification according to completedness are performed across a corpus of ten novels comprising 846,913 words. These novels were parsed with ESG, resulting in 75,289 fully-parsed clauses (22,505 of 59,816 sentences produced errors).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Completedness",
"sec_num": "4.2"
},
{
"text": "884 clauses from the parsed corpus were manually marked according to completedness. Of these, 109 were rejected because of parsing problems, and 160 rejected because they described states. The remaining 615 clauses were divided into training and test sets such that the distribution of classes was equal. The baseline method in this case achieves 63.3% accuracy.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Manual Marking",
"sec_num": "4.2.1"
},
{
"text": "The linguistic test was selected for this task by Passonneau (1988) : If a clause in the past progressive necessarily entails the past tense reading, the clause describes a non-culminated event. For example, We were talking just like men (non-culm.) entails that We talked just like men, but The woman was building a house (culm.) does not necessarily entail that The woman built a house. Cross-checking between linguists shows high agreement. In particular, in a pilot study manually annotating 89 clauses from this corpus according to stativity, two linguists agreed 81 times. Of 57 clauses agreed to be events, 46 had agreement with respect to completedness.",
"cite_spans": [
{
"start": 50,
"end": 67,
"text": "Passonneau (1988)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Manual Marking",
"sec_num": "4.2.1"
},
{
"text": "The verb say (point), which occurs nine times in the test set, was initially marked incorrectly as culminated, since points are non-extended and therefore cannot be placed in the progressive. After some initial experimentation, we corrected the class of each occurrence of say in the data. Table 7 is analogous to Table 5 for completeness. The differences in culminated and nonculminated means are statistically significant (p < .05) for the first six indicators. However, for completedness, no indicator was shown to significantly improve classification accuracy over the baseline. Table 8 : Comparison of four learning methods and two performance baselines, distinguishing culminated from non-culminated events.",
"cite_spans": [],
"ref_spans": [
{
"start": 290,
"end": 297,
"text": "Table 7",
"ref_id": "TABREF11"
},
{
"start": 314,
"end": 321,
"text": "Table 5",
"ref_id": null
},
{
"start": 583,
"end": 590,
"text": "Table 8",
"ref_id": null
}
],
"eq_spans": [],
"section": "Manual Marking",
"sec_num": "4.2.1"
},
{
"text": "As shown in Table 8 , the highest accuracy, 74.0%, was attained by CART. A binomial test shows this is a significant improvement over the 63.3% baseline.",
"cite_spans": [],
"ref_spans": [
{
"start": 12,
"end": 19,
"text": "Table 8",
"ref_id": null
}
],
"eq_spans": [],
"section": "Indicators in Combination",
"sec_num": "4.2.3"
},
{
"text": "The increase in non-culminated recall illustrates a greater improvement over the baseline. As shown in Table 8 , non-culminated recalls of up to 53.6% were achieved by the learning methods, compared to 0.0%, achieved by the baseline.",
"cite_spans": [],
"ref_spans": [
{
"start": 103,
"end": 110,
"text": "Table 8",
"ref_id": null
}
],
"eq_spans": [],
"section": "Indicators in Combination",
"sec_num": "4.2.3"
},
{
"text": "Additionally, a non-culminated F-measure of 61.9 was achieved by GP, when optimizing for F-Measure, improving over 53.7 attained by the optimal uninformed baseline. F-measure computes a tradeoff between recall and precision (Van Rijsbergen, 1979) . In this work, we weigh recall and precision equally, in which case, recall*precision F -measure = (recall+precision)f2 Automatic methods highly prioritized the perfect indicator. The induced decision tree uses the perfect indicator as its first discriminator, log-linear regression ranked the perfect indicator as fourth out of fourteen, function trees created by GP include the perfect indicator as one of five indicators used together to increase classification performance, and the perfect indicator tied as most highly correlated with completedness (cf. Table 7) .",
"cite_spans": [
{
"start": 224,
"end": 246,
"text": "(Van Rijsbergen, 1979)",
"ref_id": "BIBREF24"
}
],
"ref_spans": [
{
"start": 807,
"end": 815,
"text": "Table 7)",
"ref_id": "TABREF11"
}
],
"eq_spans": [],
"section": "Indicators in Combination",
"sec_num": "4.2.3"
},
{
"text": "Since certain verbs are aspectually ambiguous, and, in this work, clauses are classified by their main verb only, a second baseline approach would be to simply memorize the majority aspect of each verb in the training set, and classify verbs in the test set accordingly. In this case, test verbs that did not appear in the training set would be classified according to majority class. However, classifying verbs and clauses according to numerical indicators has several important advantages over this baseline:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "\u2022 Handles rare or unlabeled verbs. The results we have shown serve to estimate classification performance over \"unseen\" verbs that were not included in the supervised training sample. Once the system has been trained to distinguish by indicator values, it can automatically classify any verb that appears in unlabeled corpora, since measuring linguistic indicators for a verb is fully automatic. This also applies to verbs that are underrepresented in the training set. For example, one node of the resulting decision tree trained to distinguish according to stativity identifies 19 stative test cases without misclassifying any of 27 event test cases with verbs that occur only one time each in the training set. \u2022 Success when training doesn't include test verbs. To test this, all test verbs were eliminated from the training set, and log-linear regression was trained over this smaller set to distinguish according to completedness. The result is shown in Table 8 (\"llr2\"). Accuracy remained higher than the baseline \"br' (bl2 not applicable), and the recall tradeoff is felicitous. . Improved performance.",
"cite_spans": [],
"ref_spans": [
{
"start": 960,
"end": 967,
"text": "Table 8",
"ref_id": null
}
],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "Memorizing majority aspect does not achieve as high an accuracy as the linguistic indicators for completedness, nor does it achieve as wide a recall tradeff for both stativity and completedness. These results are indicated as the second baselines (\"bl2\") in tables 6 and 8, respectively.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "\u2022 Scalar values assigned to each verb allow the tradeoff between recall and precision to be selected for particular applications by selecting the classification threshold. For example, in a separate study, optimizing for F-measure resulted in a more dramatic tradeoff in recall values as compared to those attained when optimizing for accuracy (Siegel, 1998b) . Moreover, such scalar values can provide input to systems that perform reasoning on fuzzy or uncertainty knowledge. \u2022 This framework is expandable since additional indicators can be introduced by measuring the frequencies of additional aspectual markers. Furthermore, indicators measured over multiple clausal constituents, e.g., main verb-object pairs, alleviate verb ambiguity and sparsity and improve classification performance (Siegel, 1998b) .",
"cite_spans": [
{
"start": 344,
"end": 359,
"text": "(Siegel, 1998b)",
"ref_id": "BIBREF23"
},
{
"start": 793,
"end": 808,
"text": "(Siegel, 1998b)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "We have developed a full-scale system for aspectual classification with multiple linguistic indicators. Once trained, this system can automatically classify all verbs appearing in a corpus, including \"unseen\" verbs that were not included in the supervised training sample. This framework is expandable, since additional lexicosyntactic markers may also correlate with aspectual class. Future work will extend this approach to other semantic distinctions in natural language. Linguistic indicators successfully exploit linguistic insights to provide a much-needed method for aspectual classification. When combined with a decision tree to classify according to stativity, the indicators achieve an accuracy of 93.9% and stative recall of 74.2%. When combined with CART to classify according to completedness, indicators achieved 74.0% accuracy and 53.1% non-culminated recall.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
},
{
"text": "A favorable tradeoff in recall presents an advantage for applications that weigh the identification of non-dominant classes more heavily (Cardie and Howe, 1997) . For example, correctly identifying occurrences of for that denote event durations relies on positively identifying non-culminated events. A system that summarizes the duration of events which incorrectly classifies \"She ran (for a minute)\" as culminated will not detect that \"for a minute\" describes the duration of the run event. This is because durative for-PPs that modify culminated events denote the duration of the ensuing state, e.g., I leJt the room for a minute. (Vendler, 1967) Our analysis has revealed several insights regarding individual indicators. For example, both duration in-PP and manner adverb are particularly valuable for multiple aspectual distinctions -they were ranked in the top two positions by log-linear modeling for both stativity and completedness.",
"cite_spans": [
{
"start": 137,
"end": 160,
"text": "(Cardie and Howe, 1997)",
"ref_id": "BIBREF0"
},
{
"start": 635,
"end": 650,
"text": "(Vendler, 1967)",
"ref_id": "BIBREF25"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
},
{
"text": "We have discovered several new linguistic indicators that are not traditionally linked to aspectual class. In particular, verb frequency with no deep subject was positively correlated with both stativity and completedness. Moreover, four other indicators are newly linked to stativity: (1) Verb frequency, (2) occurrences modified by \"not\" or \"never\", (3) occurrences in the past or present participle, and (4) occurrences in the perfect tense. Additionally, another three were newly linked to completedness: (1) occurrences modified by a manner adverb, (2) occurrences in the past or present participle, and (3) occurrences in the progressive.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
},
{
"text": "These new correlations can be understood in pragmatic terms. For example, since points (non-culminated, punctual events, e.g., hiccup) are rare, punctual events are likely to be culminated. Therefore, an indicator that discriminates events according to extendedness, e.g., the progressive, past/present participle, and duration for-PP, is likely to also discriminate between culminated and non-culminated events.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
},
{
"text": "As a second example, the not/never indicator correlates with stativity in medical reports because diagnoses (i.e., states) are often ruled out in medical discharge summaries, e.g., \"The patient was not hypertensive,\" but procedures (i.e., events) that were not done are not usually mentioned, e.g., '~.An examination was not performed.\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
}
],
"back_matter": [
{
"text": "Kathleen R. McKeown was extremely helpful regarding the formulation of this work and Judith L. Klavans regarding linguistic techniques, and they, along with Min-Yen Kan and Dragomir R. Radev provided useful feedback on an earlier draft of this paper.This research was supported in part by the Columbia University Center for Advanced Technology in High Performance Computing and Communications in Healthcare (funded by the New York State Science and Technology Foundation), the Office of Naval Research under contract N00014-95-1-0745 and by the National Science Foundation under contract GER-90-24069.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Improving minority class prediction using case-specific feature weights",
"authors": [
{
"first": "C",
"middle": [],
"last": "Cardie",
"suffix": ""
},
{
"first": "N",
"middle": [],
"last": "Howe",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of the Fourteenth International Conference on Machine Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. Cardie and N. Howe. 1997. Improving mi- nority class prediction using case-specific feature weights. In D. Fisher, editor, Proceedings of the Fourteenth International Conference on Machine Learning. Morgan Kaufmann.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Toward multistrategy parallel and distributed learning in sequence analysis",
"authors": [
{
"first": "P",
"middle": [
"K"
],
"last": "Chan",
"suffix": ""
},
{
"first": "S",
"middle": [
"J"
],
"last": "Stolfo",
"suffix": ""
}
],
"year": 1993,
"venue": "Proceedings of the First International Conference on Intelligent Systems for Molecular Biology",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "P.K. Chan and S.J. Stolfo. 1993. Toward multistrat- egy parallel and distributed learning in sequence analysis. In Proceedings of the First International Conference on Intelligent Systems for Molecular Biology.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Fast effective rule induction",
"authors": [
{
"first": "W",
"middle": [],
"last": "Cohen",
"suffix": ""
}
],
"year": 1995,
"venue": "Proc. 12th Intl. Conf. Machine Learning",
"volume": "",
"issue": "",
"pages": "115--123",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "W. Cohen. 1995. Fast effective rule induction. In Proc. 12th Intl. Conf. Machine Learning, pages 115-123.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "A representation for the adaptive generation of simple sequential programs",
"authors": [
{
"first": "N",
"middle": [],
"last": "Cramer",
"suffix": ""
}
],
"year": 1985,
"venue": "Proceedings of the [First] International Conference on Genetic Algorithms. Lawrence Erlbaum",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "N. Cramer. 1985. A representation for the adap- tive generation of simple sequential programs. In J. Grefenstette, editor, Proceedings of the [First] International Conference on Genetic Algorithms. Lawrence Erlbaum.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "A two-level knowledge representation for machine translation: lexical semantics and tense/aspect",
"authors": [
{
"first": "B",
"middle": [],
"last": "Dorr",
"suffix": ""
}
],
"year": 1992,
"venue": "Lexieal Semantics and Knowledge Representation",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "B.& Dorr. 1992. A two-level knowledge represen- tation for machine translation: lexical seman- tics and tense/aspect. In James Pustejovsky and Sabine Bergler, editors, Lexieal Semantics and Knowledge Representation. Springer Verlag, Berlin.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Word Meaning and Montague Grammar",
"authors": [
{
"first": "D",
"middle": [
"R"
],
"last": "Dowty",
"suffix": ""
}
],
"year": 1979,
"venue": "D. Reidel",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D.R. Dowty. 1979. Word Meaning and Montague Grammar. D. Reidel, Dordrecht, W. Germany.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Pattern Classification and Scene Analysis",
"authors": [
{
"first": "R",
"middle": [
"O"
],
"last": "Duda",
"suffix": ""
},
{
"first": "P",
"middle": [
"E"
],
"last": "Hart",
"suffix": ""
}
],
"year": 1973,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. O. Duda and P.E. Hart. 1973. Pattern Classifi- cation and Scene Analysis. Wiley, New York.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "A recursive partitioning decision rule for non-parametric classification",
"authors": [
{
"first": "J",
"middle": [
"H"
],
"last": "Friedman",
"suffix": ""
}
],
"year": 1977,
"venue": "IEEE Transactions on Computers",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J.H. Friedman. 1977. A recursive partitioning deci- sion rule for non-parametric classification. IEEE Transactions on Computers.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Towards the automatic identification of adjectival scales: clustering adjectives according to meaning",
"authors": [
{
"first": "V",
"middle": [],
"last": "Hatzivassiloglou",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Mckeown",
"suffix": ""
}
],
"year": 1993,
"venue": "Proceedings of the 31st Annual Meeting of the ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "V. Hatzivassiloglou and K. McKeown. 1993. To- wards the automatic identification of adjectival scales: clustering adjectives according to mean- ing. In Proceedings of the 31st Annual Meeting of the ACL, Columbus, Ohio, June. Association for Computational Linguistics.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Degrees of stativity: the lexical representation of verb aspect",
"authors": [
{
"first": "J",
"middle": [
"L"
],
"last": "Klavans",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Chodorow",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of the 14th International Conference on Computation Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J.L. Klavans and M. Chodorow. 1992. Degrees of stativity: the lexical representation of verb as- pect. In Proceedings of the 14th International Conference on Computation Linguistics.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Linguistic tests over large corpora: aspectual classes in the lexicon",
"authors": [
{
"first": "J",
"middle": [
"L"
],
"last": "Klavans",
"suffix": ""
}
],
"year": 1994,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J.L. Klavans. 1994. Linguistic tests over large cor- pora: aspectual classes in the lexicon. Technical report, Columbia University Dept. of Computer Science. unpublished manuscript.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Genetic Programming: On the programming of computers by means of natural selection",
"authors": [
{
"first": "J",
"middle": [
"R"
],
"last": "Koza",
"suffix": ""
}
],
"year": 1992,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J.R. Koza. 1992. Genetic Programming: On the programming of computers by means of natural selection. MIT Press, Cambridge, MA.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "SLOT GRAMMAR",
"authors": [
{
"first": "M",
"middle": [
"C"
],
"last": "Mccord",
"suffix": ""
}
],
"year": 1990,
"venue": "International Symposium on Natural Language and Logic",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M.C. McCord. 1990. SLOT GRAMMAR. In R. Studer, editor, International Symposium on Natural Language and Logic. Springer Verlag.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Temporal ontology and temporal reference",
"authors": [
{
"first": "M",
"middle": [],
"last": "Moens",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Steedman",
"suffix": ""
}
],
"year": 1988,
"venue": "Computational Linguistics",
"volume": "14",
"issue": "2",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Moens and M. Steedman. 1988. Temporal ontol- ogy and temporal reference. Computational Lin- guistics, 14(2).",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "A computational model of the semantics of tense and aspect",
"authors": [
{
"first": "R",
"middle": [
"J"
],
"last": "Passonneau",
"suffix": ""
}
],
"year": 1988,
"venue": "Computational Linguistics",
"volume": "",
"issue": "2",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R.J. Passonneau. 1988. A computational model of the semantics of tense and aspect. Computational Linguistics, 14(2).",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Distributional clustering of english words",
"authors": [
{
"first": "F",
"middle": [],
"last": "Pereira",
"suffix": ""
},
{
"first": "N",
"middle": [],
"last": "Tishby",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Lee",
"suffix": ""
}
],
"year": 1993,
"venue": "Proceedings of the 31st Conference of the ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "F. Pereira, N. Tishby, and L. Lee. 1993. Distribu- tional clustering of english words. In Proceedings of the 31st Conference of the ACL, Columbus, Ohio. Association for Computational Linguistics.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Induction of decision trees. Machine Learning",
"authors": [
{
"first": "J",
"middle": [
"R"
],
"last": "Quinlan",
"suffix": ""
}
],
"year": 1986,
"venue": "",
"volume": "1",
"issue": "",
"pages": "81--106",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J.R. Quinlan. 1986. Induction of decision trees. Ma- chine Learning, 1(1):81-106.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "C~.5: Programs for Machine Learning",
"authors": [
{
"first": "J",
"middle": [
"R"
],
"last": "Quinlan",
"suffix": ""
}
],
"year": 1993,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J.R. Quinlan. 1993. C~.5: Programs for Machine Learning. Morgan Kaufmann, San Mateo, CA.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "The Statistical Analysis of Discrete Data",
"authors": [
{
"first": "J",
"middle": [],
"last": "Santner",
"suffix": ""
},
{
"first": "D",
"middle": [
"E"
],
"last": "Duffy",
"suffix": ""
}
],
"year": 1989,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Santner and D.E. Duffy. 1989. The Statistical Analysis of Discrete Data. Springer-Verlag, New York.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Dimensions of meaning",
"authors": [
{
"first": "H",
"middle": [],
"last": "Schfitze",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of Supereomputing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Schfitze. 1992. Dimensions of meaning. In Pro- ceedings of Supereomputing.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Gathering statistics to aspectually classify sentences with a genetic algorithm",
"authors": [
{
"first": "E",
"middle": [
"V"
],
"last": "Siegel",
"suffix": ""
},
{
"first": "K",
"middle": [
"R"
],
"last": "Mckeown",
"suffix": ""
}
],
"year": 1996,
"venue": "Proceedings of the Second International Conference on New Methods in Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "E.V. Siegel and K.R. McKeown. 1996. Gathering statistics to aspectually classify sentences with a genetic algorithm. In K. Oflazer and H. Somers, editors, Proceedings of the Second International Conference on New Methods in Language Process- ing, Ankara, Turkey, Sept. Bilkent University.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Learning methods for combining linguistic indicators to classify verbs",
"authors": [
{
"first": "E",
"middle": [
"V"
],
"last": "Siegel",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of the Second Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "E.V. Siegel. 1997. Learning methods for combining linguistic indicators to classify verbs. In Proceed- ings of the Second Conference on Empirical Meth- ods in Natural Language Processing, Providence, RI, August.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Disambiguating verbs with the wordnet category of the direct object",
"authors": [
{
"first": "V",
"middle": [],
"last": "Siegel",
"suffix": ""
}
],
"year": 1998,
"venue": "Procedings of the Usage of WordNet in Natural Language Processing Systems Workshop",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "V. Siegel. 1998a. Disambiguating verbs with the wordnet category of the direct object. In Proced- ings of the Usage of WordNet in Natural Language Processing Systems Workshop, Montreal, Canada.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Linguistic Indicators for Language Understanding: Using machine learning methods to combine corpus-based indicators for aspectual classification of clauses",
"authors": [
{
"first": "V",
"middle": [],
"last": "Siegel",
"suffix": ""
}
],
"year": 1998,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "V. Siegel. 1998b. Linguistic Indicators for Lan- guage Understanding: Using machine learning methods to combine corpus-based indicators for aspectual classification of clauses. Ph.D. thesis, Columbia University.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Information Retrieval",
"authors": [
{
"first": "C",
"middle": [
"J"
],
"last": "Van Rijsbergen",
"suffix": ""
}
],
"year": 1979,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C.J. Van Rijsbergen. 1979. Information Retrieval. Butterwoths, London.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Verbs and times",
"authors": [
{
"first": "Z",
"middle": [],
"last": "Vendler",
"suffix": ""
}
],
"year": 1967,
"venue": "Linguistics in Philosophy",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Z. Vendler. 1967. Verbs and times. In Linguistics in Philosophy. Cornell University Press, Ithaca, NY.",
"links": null
}
},
"ref_entries": {
"TABREF0": {
"html": null,
"type_str": "table",
"num": null,
"text": "Aspectual classes. This table comes from Moens and Steedman",
"content": "<table/>"
},
"TABREF2": {
"html": null,
"type_str": "table",
"num": null,
"text": "",
"content": "<table><tr><td colspan=\"2\">: Several aspectual markers and associated</td></tr><tr><td colspan=\"2\">constraints on aspectual class, primarily from Kla-</td></tr><tr><td>vans' summary (1994).</td><td/></tr><tr><td colspan=\"2\">If a clause can occur: then it is:</td></tr><tr><td>with a temporal adverb</td><td>Event</td></tr><tr><td>(e.g., then)</td><td/></tr><tr><td>in progressive</td><td>Extended</td></tr><tr><td/><td>Event</td></tr><tr><td>with a duration in-PP</td><td>Culm Event</td></tr><tr><td>(e.g., in an hour)</td><td/></tr><tr><td>in the perfect tense</td><td>Culm Event</td></tr><tr><td/><td>or State</td></tr><tr><td colspan=\"2\">straints. Each entry in this table describes an</td></tr><tr><td colspan=\"2\">aspectual marker and the constraints on the as-</td></tr><tr><td colspan=\"2\">pectual category of any clause that appears with</td></tr><tr><td colspan=\"2\">that marker. For example, a clause must be</td></tr><tr><td colspan=\"2\">an extended event to appear in the progressive</td></tr><tr><td>tense, e.g.,</td><td/></tr><tr><td colspan=\"2\">(3) He was prospering in India. (extended),</td></tr><tr><td>which contrasts with,</td><td/></tr><tr><td colspan=\"2\">(4) *You were noticing it. (punctual).</td></tr><tr><td>and,</td><td/></tr><tr><td colspan=\"2\">(5) *She was seeming sad. (state).</td></tr></table>"
},
"TABREF3": {
"html": null,
"type_str": "table",
"num": null,
"text": "",
"content": "<table><tr><td>lists the linguistic indicators evalu-</td></tr><tr><td>ated for aspectual classification. Each indica-</td></tr></table>"
},
"TABREF4": {
"html": null,
"type_str": "table",
"num": null,
"text": "Fourteen linguistic indicators evaluated for aspectual classification.",
"content": "<table/>"
},
"TABREF6": {
"html": null,
"type_str": "table",
"num": null,
"text": "Two classification problems on different data sets.",
"content": "<table/>"
},
"TABREF9": {
"html": null,
"type_str": "table",
"num": null,
"text": "",
"content": "<table><tr><td>: Comparison of three learning methods</td></tr><tr><td>and two performance baselines, distinguishing states</td></tr><tr><td>from events.</td></tr><tr><td>sification accuracy by itself, achieving an accu-</td></tr><tr><td>racy of 88.0%. This improvement in accuracy</td></tr><tr><td>was achieved simply by discriminating the pop-</td></tr><tr><td>ular verb show as a state~ but classifying all</td></tr><tr><td>other verbs as events. Although many domains</td></tr><tr><td>may primarily use show as an event, its appear-</td></tr><tr><td>ances in medical discharge summaries, such as,</td></tr></table>"
},
"TABREF11": {
"html": null,
"type_str": "table",
"num": null,
"text": "Indicators discriminate between culminated and non-culminated events.",
"content": "<table><tr><td/><td/><td colspan=\"2\">Culminated</td><td>Non-Culm</td></tr><tr><td/><td>acc</td><td>recall</td><td colspan=\"2\">prec recall</td><td>prec</td></tr><tr><td colspan=\"5\">CART 74.0% 86.2% 76.0% 53.1% 69.0%</td></tr><tr><td>llr</td><td colspan=\"4\">70.5% 83.1% 73.6% 48.7% 62.5%</td></tr><tr><td>lit2</td><td colspan=\"4\">67.2% 81.5% 71.0% 42.5% 57.1%</td></tr><tr><td>GP</td><td colspan=\"4\">68.6% 77.3% 74.2% 53.6% 57.8%</td></tr><tr><td>dt</td><td colspan=\"4\">68.5% 86.2% 70.6% 38.1% 61.4%</td></tr><tr><td>bl</td><td colspan=\"4\">63.3% 100.0% 63.3% 0.0% 100.0%</td></tr><tr><td>b12</td><td colspan=\"4\">70.8% 94.9% 69.8% 29.2% 76.7%</td></tr></table>"
}
}
}
} |