File size: 78,888 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 |
{
"paper_id": "W90-0117",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T04:00:18.984725Z"
},
"title": "Parsimonious and Profligate Approaches to the Question of Discourse Structure Relations",
"authors": [
{
"first": "Eduard",
"middle": [
"H"
],
"last": "Hovy",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Information Sciences Institute of USC",
"location": {
"addrLine": "4676 Admiralty Way Marina del Rey",
"postCode": "90292-6695",
"region": "CA"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "To computationalists investigating the structure of coherent discourse, the following questions have become increasingly important over the past few years: Can one describe the structure of discourse using interclausal relations? If so, what interclausal relations are there? How many are required? A fair amount of controversy exists, ranging from the parsimonious position (that two intentional relations suffice) to the profligate position (that an open-ended set of semantic/rhetorical relations is required). This paper outlines the arguments and then summarizes a survey of the conclusions of approximately 25 researchers-from linguists to computational linguists to philosophers to Artificial Intelligence workers. It classifies the more than 350 relations they have proposed into a hierarchy of increasingly semantic relations, and argues that though the hierarchy is open-ended in one dimension, it is bounded in the other and therefore does not give rise to anarchy. Evidence for the hierarchy is mentioned, and its relations (which are rhetorical and semantic in nature) are shown to be complementary to the two intentional relations proposed by the parsimonious position.",
"pdf_parse": {
"paper_id": "W90-0117",
"_pdf_hash": "",
"abstract": [
{
"text": "To computationalists investigating the structure of coherent discourse, the following questions have become increasingly important over the past few years: Can one describe the structure of discourse using interclausal relations? If so, what interclausal relations are there? How many are required? A fair amount of controversy exists, ranging from the parsimonious position (that two intentional relations suffice) to the profligate position (that an open-ended set of semantic/rhetorical relations is required). This paper outlines the arguments and then summarizes a survey of the conclusions of approximately 25 researchers-from linguists to computational linguists to philosophers to Artificial Intelligence workers. It classifies the more than 350 relations they have proposed into a hierarchy of increasingly semantic relations, and argues that though the hierarchy is open-ended in one dimension, it is bounded in the other and therefore does not give rise to anarchy. Evidence for the hierarchy is mentioned, and its relations (which are rhetorical and semantic in nature) are shown to be complementary to the two intentional relations proposed by the parsimonious position.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "This paper proposes an answer to an issue that keeps surfacing in the computational study of the nature of multisentential discourse.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "How Many Interclausal Discourse Coherence Relations?",
"sec_num": null
},
{
"text": "It has been argued fairly generally that multisentence texts (specifically, short texts such *This work was supported by the Rome Air Development Center under RADC contract FQ7619-89-03326-0001. as paragraphs) are coherent by virtue of the rhetorical or semantic relationships that hold among individual clauses or groups of clauses (see, for example, [Aristotle 54, Hobbs 79, Grimes 75, Mann & Thompson 88] . In this view, a text is only coherent when the speaker aids the heater's inferential understanding processes by providing clues, during the discourse, as to how the pieces of the text interrelate. Such clues are often cue words and phrases such as \"in order to\" (signalling a purpose for an action) or \"then\" (signalling the next entity in some temporal or spatial sequence); but they can also be shifts in tense and mode (such as in \"She was gone. Had she been there, all would have been well\"), and even appropriate pronominalizations.",
"cite_spans": [
{
"start": 352,
"end": 366,
"text": "[Aristotle 54,",
"ref_id": null
},
{
"start": 367,
"end": 376,
"text": "Hobbs 79,",
"ref_id": null
},
{
"start": 377,
"end": 387,
"text": "Grimes 75,",
"ref_id": null
},
{
"start": 388,
"end": 407,
"text": "Mann & Thompson 88]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "How Many Interclausal Discourse Coherence Relations?",
"sec_num": null
},
{
"text": "Various researchers in various intellectual subfields have produced lists of such relations for English. Typically, their lists contain between seven and thirty relations, though the more detailed the work (which frequently means the closer the work is to actual computer implementation), the more relations tend to be named.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "How Many Interclausal Discourse Coherence Relations?",
"sec_num": null
},
{
"text": "I have collected the lists of over 25 researchers --from philosophers (e.g., [Toulmin 58] ) to linguists (e.g., [Quirk & Greenbaum 73, Halliday 85] ) to computational linguists (e.g., [Mann & Thompson 88, Hobbs 79] ) to Artificial Intelligence researchers (e.g., [Schank & Abelson 77, Moore & Paris 89, Dahlgren 88 ]) --amounting to a total of more than 350 relations. The researchers and their lists appear below.",
"cite_spans": [
{
"start": 77,
"end": 89,
"text": "[Toulmin 58]",
"ref_id": null
},
{
"start": 112,
"end": 134,
"text": "[Quirk & Greenbaum 73,",
"ref_id": null
},
{
"start": 135,
"end": 147,
"text": "Halliday 85]",
"ref_id": null
},
{
"start": 184,
"end": 204,
"text": "[Mann & Thompson 88,",
"ref_id": null
},
{
"start": 205,
"end": 214,
"text": "Hobbs 79]",
"ref_id": null
},
{
"start": 263,
"end": 284,
"text": "[Schank & Abelson 77,",
"ref_id": null
},
{
"start": 285,
"end": 302,
"text": "Moore & Paris 89,",
"ref_id": null
},
{
"start": 303,
"end": 314,
"text": "Dahlgren 88",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "How Many Interclausal Discourse Coherence Relations?",
"sec_num": null
},
{
"text": "In this paper, I will call the assumption of these researchers, namely that some tens of interclausal relations are required to describe the structure of English discourse, the Profligate Position.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "How Many Interclausal Discourse Coherence Relations?",
"sec_num": null
},
{
"text": "Unfortunately, the matter of interclausal relations is not simple, and not everyone agrees with this position. These relations are seldom explicitly signalled in the text, and even when they are, they seem to take various forms particular to their use in context. This fact has led some researchers, notably [Grosz & Sidner 86] , to question the wisdom of identifying a specific set of such relations. They argue that trying to identify the \"correct\" set is a doomed enterprise, because there is no closed set; the closer you examine interclausal relationships, the more variability you encounter, until you find yourself on the slippery slope toward the full complexity of semantics proper. Thus though they do not disagree with the idea of relationships between adjacent clauses and blocks of clauses to provide meaning and to enforce coherence, they object to the notion that some small set of interclausal relations can describe English discourse adequately.",
"cite_spans": [
{
"start": 308,
"end": 327,
"text": "[Grosz & Sidner 86]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "How Many Interclausal Discourse Coherence Relations?",
"sec_num": null
},
{
"text": "As a counterproposal, Grosz and Sidner sidestep the issue of the structure of discourse imposed by semantics and define two very basic relations, DOMINANCE and SATISFACTION-PRECEDENCE, which carry purely intentional (that is, goal-oriented, plan-based) import. They use these relations in their theory of the structure of discourse, according to which some pieces of the text are either subordinate to or on the same level as other pieces, with respect to the interlocutors' intentions. I will call this position, namely that two interclausal relations suffice to represent discourse structure, the Parsimonious Position.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "How Many Interclausal Discourse Coherence Relations?",
"sec_num": null
},
{
"text": "From the point of view of text analysis, the Parsimonious approach seems satisfactory. Certainly one can analyze discourse using the two intentional relations. However, from the point of view of text generation, this approach is not sufficient. Practical experience has shown that text planners cannot get by on intentional considerations alone, but need considerably more rhetorical and semantic information in order to construct coherent text (there are many examples; see [McKeown 85, Hovy 88a, Moore & Swartout 88, Paris 88, Rankin 89, Cawsey 89] ). In practical terms, this means that text planning systems require a rich library of interclausal relations.",
"cite_spans": [
{
"start": 475,
"end": 487,
"text": "[McKeown 85,",
"ref_id": null
},
{
"start": 488,
"end": 497,
"text": "Hovy 88a,",
"ref_id": null
},
{
"start": 498,
"end": 518,
"text": "Moore & Swartout 88,",
"ref_id": null
},
{
"start": 519,
"end": 528,
"text": "Paris 88,",
"ref_id": null
},
{
"start": 529,
"end": 539,
"text": "Rankin 89,",
"ref_id": null
},
{
"start": 540,
"end": 550,
"text": "Cawsey 89]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "How Many Interclausal Discourse Coherence Relations?",
"sec_num": null
},
{
"text": "\u2022 Does one really need semantic and/or rhetorical discourse structure relations?",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Questions such as",
"sec_num": null
},
{
"text": "\u2022 Just how many such relations are there?",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Questions such as",
"sec_num": null
},
{
"text": "\u2022 What is their nature? How do they relate to the two intentional relations?",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Questions such as",
"sec_num": null
},
{
"text": "will not go away. Until it is resolved to the satisfaction of the adherents both positions, further work on text planning and discourse analysis is liable to continue getting stranded on the rocks of misunderstanding and disagreement. This paper suggests a compromise that hopefully opens up the way for further development.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Questions such as",
"sec_num": null
},
{
"text": "How can one reconcile the two sides? That is to say, how can one build a library of interclausal relations that are simultaneously expressive enough to satisfy the requirements of text planning systems but do not simply form an unbounded ad hoc collection of semantic relations with no regard to the intentional ones?",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Unsatisfactory Solution",
"sec_num": null
},
{
"text": "One answer is to produce a two-dimensional organization of relations, with one dimension constrained in the number of relations and the other unconstrained (and increasingly semantic in nature; see Objection 1 below). Such organization is a hierarchic taxonomy of limited width but of unbounded depth; the more general a relation is, the higher it is in the hierarchy and the fewer siblings it has.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Unsatisfactory Solution",
"sec_num": null
},
{
"text": "An appealing hierarchy is shown in Figure 1 . It displays a number of very desirable features. In particular, the top few levels are strictly bounded: no logical alternatives to ASYMMETRIC and SYM-METRIC exist, and one level lower, under ASYM-METRIC, following Grosz and Sidner there is no need to use any other relation than DOMINATES and SATISFACTIONPRECEDES at that level. Increasingly detailed relations appear at lower levels, which (as is discussed below) remain relatively bounded. Still, the more one specifies a particular relation to distinguish it from others, the more semantic it necessarily becomes (since increasing specification invariably introduces additional semantic features; that is the nature of the specialization process), and the lower it appears in the hierarchy. Though one does eventually approach the full complexity of semantics proper, the approach is not unprincipled; each relation is always constrained by its position in the hierarchy and inherits much of its structural and other features from its ancestors.",
"cite_spans": [],
"ref_spans": [
{
"start": 35,
"end": 43,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "An Unsatisfactory Solution",
"sec_num": null
},
{
"text": "In this scheme, one can (and the Parsimonious do) perform discourse analysis and study discourse structure wholly at the level of DOMINATES and SATISFACTIONPRECEDES, and never come into conflict with the structural descriptions found empirically by the Profligate. One is simply not being as specific about the particular interclausal relations that make up the discourse.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Unsatisfactory Solution",
"sec_num": null
},
{
"text": "However, this taxonomy is unsatisfactory. It is impossible in practise to place into the hierarchy with certainty most of the relations found necessary by the Profligate. For example, the relation CAusE (of various kinds) is one of the most agreed-upon relations. But is it to be classified as a type of DOM-INATES or of SATISFACTIONPRECEDES? Though it seems able to function either way, this question is impossible to answer, since none of the concepts involved are clearly enough defined (certainly nobody has provided a general definition of CAUSE -how could one?; it has been the topic of centuries of philosophical debate. And even the limited definition required for the purposes of Computational Linguistics in a particular application domain with a given ontology of terms has not been provided satisfactorily yet).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Unsatisfactory Solution",
"sec_num": null
},
{
"text": "The answer to the dilemma: It is a mistake to classify rhetorical and semantic relations under the relations DOMINATES and SATISFACTIONPRECEDES. This insight does not destroy the hierarchy; most of its desirable properties are maintained. It does mean, however, that a new top-level organization must be found and that the role of intentional relations vis \u00a3 vis rhetorical/semantic relations must be explained. I address the first point here, and the role of the intentional relations later on.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Better Solution",
"sec_num": null
},
{
"text": "I have not found any highly compelling top-level organization. Ideally, the top level should partition the relations into a few (say, three or four) major groups that share some rhetorical or semantic property. In the absence of a more compelling suggestion (for which I continue to search), I use here the top-level trifurcation of [Halliday 85] , which is based, roughly speaking, on the \"semantic distance\" between the contents of the two clauses. The three relations are ELABORATION, ENHANCE-MENT, and EXTENSION. ELABORATION relations hold between entities and their immediate constituents or properties, and have a definitional flavor; ENHANCEMENT relations hold between entities and their circumstances of place, time, manner, etc.; and EXTENSION relations hold between entities and more distant entities such as causes, followups, contrasts, etc. Halliday's classification has been modified and regularized by Matthiessen (per-sonM communication). For want of compelling arguments to the contrary, I use Matthiessen's modification of I-Ialliday's ideas as the basis for the top level of the hierarchy.",
"cite_spans": [
{
"start": 333,
"end": 346,
"text": "[Halliday 85]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A Better Solution",
"sec_num": null
},
{
"text": "In order to construct the hierarchy, I collected over 350 relations from 26 researchers in various fields. I merged the relations, coming up with a set of 16 on the second tier of the hierarchy, and then classified more particular subrelations where appropriate. The hierarchy of interclausal relations is given in Figure 2 AbstractInstance 13Interpretation (2)--Evaluation 3S-mmary (4) Restatement (9)/Conclusion 7_Location (6) . ~Time (7)",
"cite_spans": [],
"ref_spans": [
{
"start": 315,
"end": 323,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "A Better Solution",
"sec_num": null
},
{
"text": "Circumstance (4)E=---Means (4) / ~ Manner (2) / ~Instrument (1) Enhancement ~Background (4) (3) (1)~ ParallelEvent ~Solutionhood (1),,, Answer (1) SeqTemporal (6) Sequence (6)<SeqSpatial (I) r SeqOrdinal (3) VolCause (I) C/RVol~VolResult (I) Cause/Result (14)~ NonVolCause (I) C/RN\u00b0nV\u00b0l~NonVolResult(2 ) Purpose (6) Enablement (9) ension (I', /Condition (7) GeneralCondition Exception (2) Equative (5) \u2022 Contrast (14)~,Antithesis (6) Comparative Otherwise (7) Comparison (3) , Analogy (4) Evidence (7) Proof (I) Support (2<Justification (3) Motivation (5) Concession (6) Qualification (1) /Conjunction (5) gicalRelation I --Disjunction (2)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Better Solution",
"sec_num": null
},
{
"text": "by their initials and listed subsequently). In the parenthesized comments, S stands for speaker and H for hearer. The particular relations defined by each researcher and their respective classifications are provided in the full version of this paper. The above initials refer to the following authors: AC: Alison Cawsey [ ",
"cite_spans": [
{
"start": 320,
"end": 321,
"text": "[",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A Better Solution",
"sec_num": null
},
{
"text": "Some nonconclusive evidence supports parts of the hierarchy, though further study must be done to examine all the relations. This evidence is based on sensitivity to generalization evinced by many cue words and phrases. For example, the cue word \"then\" is associated with SEQUENCE, and can be used appropriately to indicate its subordinates SE-QTEMPORAL and SEQSPATIAL, as in: SEQTEMPORAL: First you play the long note, then the short ones SEQSPATIAL: On the wall I have a red picture, then a blue one In contrast, the cue words for the two subrelations are specific and cannot be interchanged without introducing the associated connotation: SEQTEMPORAL: After the 10ng note you play the short ones SEQSPATIAL: Beside the red picture is the blue one Thus the relation associated with \"then\" subsumes the relations associated with \"after\" and \"beside\". Similar observations hold for a number of the relations (e.g., SOLUTIONHOOD and RESTATEMENT).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Evidence for the Hierarchy Structure",
"sec_num": null
},
{
"text": "Preliminary investigation indicates possible additional evidence in the syntactic realization of some relations: When a relation typically gives rise to a dependent clause, then its subrelations tend to do so as well. More study must be done by a trained linguist.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Evidence for the Hierarchy Structure",
"sec_num": null
},
{
"text": "What then of the two relations DOMINATES and SATISFACTIONPRECEDES? They do not appear anywhere in the hierarchy in Figure 2 .",
"cite_spans": [],
"ref_spans": [
{
"start": 115,
"end": 123,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Role of Intentional Relations",
"sec_num": null
},
{
"text": "The answer is that these two relations express information that is independent of the rhetorical/semantic meanings of the relations in the taxonomy and only apply in discourses with intentional, plan-like nature. They derive from early work on a highly plan-oriented domain [Grosz 81 ], in which plan steps' preconditions led to underlying precedence orderings of plan steps and satisfaction of subgoals which were dominated by supergoals. However, not all discourse is plan-like; a large proportion of everyday close discourse between people achieves goals for which, it can be argued, no plans can be formulated (for some such goals see [Hovy 88b]) : the banter between friends which serves to strengthen interpersonal bonds, the discussions in supermarket lines, the language and presentation styles employed in order to be friendly or attractive, etc. Such communications also exhibit internal structure, and also employ the rhetorical/semantic interclausal relations. respectively). This does not work either because some DOMINATES relations hold between syntactically independent complete sentences, so no syntactic embedding occurs.",
"cite_spans": [
{
"start": 274,
"end": 283,
"text": "[Grosz 81",
"ref_id": null
},
{
"start": 639,
"end": 650,
"text": "[Hovy 88b])",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Role of Intentional Relations",
"sec_num": null
},
{
"text": "Does this mean that the two intentional relations should simply be added into the hierarchy? No, because they can be realized in the discourse by various rhetorical/semantic relations; for example, SATISFACTIONPREcEDEs can be expressed by SE-QUENCE, as in:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Role of Intentional Relations",
"sec_num": null
},
{
"text": "First boil the water, then add the rice, and then stir or by CAUSE, as in:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Role of Intentional Relations",
"sec_num": null
},
{
"text": "The sun heats the desert, which causes the air to rise, which causes a breeze Thus, in the absence of other candidate generalizations, one can conclude that the relations DOMINATES and SATISFACTIONPRECEDES are independent of the rhetorical/semantic taxonomization and provide an additional dimension of information, used for those discourses that exhibit an appropriately intentional plan-like nature.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Role of Intentional Relations",
"sec_num": null
},
{
"text": "A number of objections may be raised to the taxonomization presented here. I attempt to respond to some of the more serious ones: Objection 1. Does it make sense at all to organize into a single taxonomy such disparate entities? After all, RESTATEMENT and CONCESSION are primarily rhetorical while, say, PURPOSE and PROCESSSTEP are primarily semantic.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Objections Answered",
"sec_num": null
},
{
"text": "Why not? As a result of this study and previous work, I believe that \"rhetorical\" relations are simply the crudest or most generalized \"semantic\" ones; in other words, that no purely rhetorical or purely semantic relations exist. Some relations, typically those higher in the hierarchy, certainly fulfill a more rhetorical function (i.e., provide more information about the argumentational structure of the discourse) than a semantic function. But not even the topmost relations are entirely devoid of semantic meaning. Since all the relations have some semantic import (regardless of their structural import), this objection to their being arranged into a single taxonomy for the purposes of discourse structure description is groundless 1.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Objections Answered",
"sec_num": null
},
{
"text": "Objection 2. What guarantee exists that the relations given in the taxonomy are indeed the \"right\" ones? Or the only ones? It is not difficult to come up with relations that differ in some way from those in the taxonomy and that do not neatly fall under a single item in it. This is a standard objection to any set of terms proposed to fulfill some function. The standard response holds here too: there is no guarantee that these are the \"right\" relations, whatever \"right\" may mean. Similarly, there is no guarantee that the terms [VERB NOUN ADJECTIVE ADVERB ... ] are the \"right\" and \"only\" terms for types of words; they have simply been canonized by long use and much experience. There is enough evidence from actual attempts at constructing working systems (text planners and discourse analyzers) that relations at this level of interclausal representation are required to guide inference and planning processes.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Objections Answered",
"sec_num": null
},
{
"text": "Without such relations we simply cannot construct an adequate account of the structure of a discourse 1This position is in contradistinction with that of Systemic Linguistics, which holds that semantic relations are of the type Ideational while rhetorical relations are of the type Textual. Since both kinds of relations serve the same function, namely to bind together different pieces of knowledge, and certain relations operate both interclausally and intraclausally, there seems to me no reason to differentiate them into two different types. I categorize discourse structure relations with those called Ideational, and group separately all those phenomena that reflect the characteristics of the communicative setting: referentially available artifacts and concepts, the nature of the medium (telephone, paper, conversation, etc.), and the physical and social context (background noise, available time, etc.). nor plan an adequate multisentence paragraph by computer.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Objections Answered",
"sec_num": null
},
{
"text": "The particular relations proposed here are certainly open to question, and their strongest support is that they are the amalgamation and synthesis of the efforts and proposed terms of over 25 different investigators from different fields, as noted previously. In addition, there is always the possibility that new interclausal relations will be needed that cannot in fact be subsumed under existing nodes in the taxonomy. While not impossible, I believe this is unlikely, based on my experience in compiling the hierarchy: After the top three levels had more or less been established halfway through this study, only one new second-level relation --IDEN-TIFICATION --had to be added. I expect that when new domains are investigated, the hierarchy will grow primarily at the bottom, and that the ratio of the number of relations added at one level to the number of relations added at the next lower level, averaged across all levels, will be well below 0.2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Objections Answered",
"sec_num": null
},
{
"text": "Objection 3. The taxonomy is unbounded toward the bottom: it places one on the slippery slope toward having to deal with the full complexity of semantic meaning. Simply working on the structure of discourse is difficult enough without bringing in the complexity of semantic knowledge. This is the the Parsimonious Position objection. There is no reason to fear the complexity of an unbounded set of terms, whether semantic or not, as long as the terms are well-behaved and subject to a pattern of organization which makes them manageable. A hierarchicalization of the terms in which all the pertinent information about discoursal behavior is captured at the top (which is maximally general, bounded, and well-understood) and not at the bottom (which permits unboundedness and redundancy) presents no threat to computational processing. Each discourse relation simply inherits from its ancestors all necessary processing information, such as cue words and realization constraints, adding its unique peculiarities, to be used for inferring its discoursal role (in parsing) or for planning out a discourse (in generation). Increasing differentiation of relations, continued until the very finest nuances of meaning are separately represented, need be pursued only to the extent required for any given application. Thus \"unbounded\" growth of semantic relations is not a problem, as long as they can be subsumed under existing nodes in the taxonomy. In fact, the relations people use to signal discourse structure (such as parallelism, say) are included in the taxonomy. The most popular relation (one that appeared as a separate relation in a number of the studies cited) is PARALLEL, which is invariably signalled using some set of SEQUENCE relations, often after having been explicitly introduced by a separate clause. The fact that SEQUENCE relations can be used to signal both semantic sequentiality and rhetorical structure is no reason for alarm; if conditions should arise in which the two functions require different behavior, a more specific relation subordinated to SEQUENCE, dedicated to expressing purely rhetorical sequentiality (such as, say, SEQSTRUCTURAL), can be created, though it is likely that in the actual presentation, the rhetorical sequence will usually follow some temporal or spatial sequence in any case.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Some Objections Answered",
"sec_num": null
},
{
"text": "A rather gratifying result of the synthesis presented here is that only 16 core relations, organized into 3 principal types, suffice to cover essentially all the interclausal relations proposed by the sources. This suggests that other relations not yet in the hierarchy are likely to be subtypes of relations already in it, preserving the boundedness of the number of relation types. The relations are rhetorical in nature, becoming increasingly semantic as they become more specific; the claim is that the rhetorical relations are simply least delicate (i.e., most general) semantic relations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": null
},
{
"text": "While some evidence is provided for the structure of the hierarchy, as well as for the claim that the relations are independent of the goal-oriented plan-based discourse structure relations proposed by [Grosz & Sidner 86] , there is no claim that this hierarchy is complete or correct in all details. It is certainly open to elaboration, enhancement, and extension! The hope is that it will serve the community by proving to be a common starting point and straw man for future work on discourse structure.",
"cite_spans": [
{
"start": 202,
"end": 221,
"text": "[Grosz & Sidner 86]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": null
}
],
"back_matter": [
{
"text": "Paris, and to everyone who sent me their relations. I am still collecting relations and will continue to update this hierarchy.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "acknowledgement",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "The Rhetoric",
"authors": [
{
"first": "Aristotle",
"middle": [],
"last": "",
"suffix": ""
}
],
"year": 1954,
"venue": "The Rhetoric and the Poetics of Aristotle, W. Rhys Roberts (trans), Random House",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Aristotle. The Rhetoric. In The Rhetoric and the Poetics of Aristotle, W. Rhys Roberts (trans), Random House, New York, 1954.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Presented at the Second European Workshop on Language Generation",
"authors": [
{
"first": "A",
"middle": [],
"last": "Cawsey",
"suffix": ""
}
],
"year": 1989,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Cawsey, A. Generating Communicative Discourse. Presented at the Second European Work- shop on Language Generation, Edinburgh, 1989. In Mellish, C., Dale, R., and Zock, M. (eds), selected papers from the workshop, in prep.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "A Computational Model for the Analysis of Arguments",
"authors": [
{
"first": "R",
"middle": [],
"last": "Cohen",
"suffix": ""
}
],
"year": 1983,
"venue": "Cohen",
"volume": "83",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Cohen 83] Cohen, R. A Computational Model for the Analysis of Arguments. Technical Report CSRG-151, University of Toronto, Toronto, 1983.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Naive Semantics for Natural Language Understanding",
"authors": [
{
"first": "K",
"middle": [],
"last": "Dahlgren",
"suffix": ""
}
],
"year": 1988,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dahlgren, K. Naive Semantics for Nat- ural Language Understanding. Kluwer Academic Press, Boston, 1988.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Enhancing Text Quality in a Question-Answering System. Unpublished manuscript",
"authors": [
{
"first": "De",
"middle": [],
"last": "Souza",
"suffix": ""
},
{
"first": "C",
"middle": [
"S"
],
"last": "Scott",
"suffix": ""
},
{
"first": "D",
"middle": [
"R"
],
"last": "Nunes",
"suffix": ""
},
{
"first": "M",
"middle": [
"G"
],
"last": "",
"suffix": ""
}
],
"year": 1989,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "[De Souza et al. 89] De Souza, C.S., Scott, D.R. and Nunes, M.G.V. Enhancing Text Quality in a Question-Answering System. Unpublished manuscript, Pontificia Universidade Cat61ica de Rio de Janeiro, 1989.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Discourse Structure and Anaphora in Written and Conversational English",
"authors": [],
"year": 1984,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "84] Fox, B. Discourse Structure and Anaphora in Written and Conversational English. Ph.D. disserta- tion, UCLA, Los Angeles, 1984.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "The Thread of Discourse. Mouton, The Hague",
"authors": [
{
"first": "J",
"middle": [
"E"
],
"last": "Grimes",
"suffix": ""
}
],
"year": 1975,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Grimes, J.E. The Thread of Discourse. Mouton, The Hague, 1975.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Focusing and Description in Natural Language Dialogues",
"authors": [
{
"first": "B",
"middle": [
"J"
],
"last": "Grosz",
"suffix": ""
}
],
"year": 1981,
"venue": "Elements of Discourse Understanding",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Grosz 81] Grosz, B.J. Focusing and Description in Natural Language Dialogues. In Joshi, A., Webber, B., and Sag, I. (eds) Elements of Discourse Under- standing. Cambridge University Press, Cambridge, 1981.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Attention, Intentions, and the Structure of Discourse",
"authors": [
{
"first": "&",
"middle": [],
"last": "Grosz",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Sidner",
"suffix": ""
},
{
"first": "B",
"middle": [
"J"
],
"last": "Grosz",
"suffix": ""
},
{
"first": "C",
"middle": [
"L"
],
"last": "Sidner",
"suffix": ""
}
],
"year": 1986,
"venue": "In Journal o] Computational Linguistics",
"volume": "12",
"issue": "3",
"pages": "175--204",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Grosz & Sidner 86] Grosz, B.J. and Sidner, C.L. At- tention, Intentions, and the Structure of Discourse. In Journal o] Computational Linguistics 12(3), 1986 (175-204).",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "An Introduction to Functional Grammar",
"authors": [
{
"first": "M",
"middle": [
"A K"
],
"last": "Halliday",
"suffix": ""
}
],
"year": 1985,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Halliday, M.A.K. An Introduction to Functional Grammar. Edward Arnold Press, Balti- more, 1985.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Discourse-Oriented Anaphora Resolution: A Review",
"authors": [
{
"first": "G",
"middle": [],
"last": "Hirst",
"suffix": ""
}
],
"year": 1981,
"venue": "In Journal of Computational Linguistics",
"volume": "7",
"issue": "",
"pages": "85--98",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hirst 81] Hirst, G. Discourse-Oriented Anaphora Res- olution: A Review. In Journal of Computational Lin- guistics 7, 1981 (85-98).",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Why is Discourse Coherent? Technical Note no. 176, SRI International",
"authors": [
{
"first": "J",
"middle": [
"R"
],
"last": "Hobbs",
"suffix": ""
}
],
"year": 1978,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hobbs, J.R. Why is Discourse Coherent? Technical Note no. 176, SRI International, Menlo Park CA, 1978.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Coherence in Discourse",
"authors": [
{
"first": "J",
"middle": [
"R"
],
"last": "Hobbs",
"suffix": ""
}
],
"year": 1982,
"venue": "Strategies for Natural Language Processing",
"volume": "",
"issue": "",
"pages": "223--243",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hobbs, J.R. Coherence in Discourse. In Strategies for Natural Language Processing, Lehnert, W.G. and Ringle, M.H. (eds), Lawrence Erlbaum Associates, Hillsdale, 1982 (223-243).",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Planning Coherent Multisentential Text",
"authors": [
{
"first": "E",
"middle": [
"H"
],
"last": "Hovy",
"suffix": ""
}
],
"year": 1988,
"venue": "Proceedings of the 26th ACL Conference",
"volume": "",
"issue": "",
"pages": "163--169",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hovy, E.H. Planning Coherent Multisen- tential Text. In Proceedings of the 26th ACL Con- ference, Buffalo, 1988 (163-169).",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Two Types of Planning in Language Generation",
"authors": [
{
"first": "E",
"middle": [
"H"
],
"last": "Hovy",
"suffix": ""
}
],
"year": 1988,
"venue": "Proceedings of the 26th A CL Conference",
"volume": "",
"issue": "",
"pages": "170--176",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "[Hovy 88b] Hovy, E.H. Two Types of Planning in Lan- guage Generation. In Proceedings of the 26th A CL Conference, Buffalo, 1988 (170-176).",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Approaches to the Planning of Coherent Text. Presented at the $th International Workshop on Text Generation",
"authors": [
{
"first": "E",
"middle": [
"H"
],
"last": "Hovy",
"suffix": ""
}
],
"year": 1988,
"venue": "Natural Language in Artificial Intelligence and Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "[Hovy 88c] Hovy, E.H. Approaches to the Planning of Coherent Text. Presented at the $th International Workshop on Text Generation, Los Angeles, 1988. In Paris, C.L., Swartout, W.R. and Mann, W.C. (eds), Natural Language in Artificial Intelligence and Com- putational Linguistics, to appear.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Notes on Dialogue Management and Text Planning in the LILOG Project. Unpublished working document",
"authors": [
{
"first": "E",
"middle": [
"H"
],
"last": "Hovy",
"suffix": ""
}
],
"year": 1989,
"venue": "Projekt LILOG, Institut fiir Wissensbasierte Systeme, IBM Deutschland",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hovy, E.H. Notes on Dialogue Management and Text Planning in the LILOG Project. Unpub- lished working document, Projekt LILOG, Insti- tut fiir Wissensbasierte Systeme, IBM Deutschland, Stuttgart, 1989.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Semantics and Cognition",
"authors": [
{
"first": "R",
"middle": [],
"last": "Jackendoff",
"suffix": ""
}
],
"year": 1983,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "[Jackendoff 83] Jackendoff, R. Semantics and Cogni- tion. MIT Press, Cambridge, 1983.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Plan Recognition and Discourse Analysis: An Integrated Approach for Understanding Dialogues",
"authors": [
{
"first": "D",
"middle": [],
"last": "Litman",
"suffix": ""
}
],
"year": 1985,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Litman, D. Plan Recognition and Dis- course Analysis: An Integrated Approach for Under- standing Dialogues. Ph.D. dissertation, University of Rochester, Rochester, 1985.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "An Anatomy of Speech Notions",
"authors": [
{
"first": "R",
"middle": [],
"last": "Longacre",
"suffix": ""
}
],
"year": 1976,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Longacre, R. An Anatomy of Speech No- tions. Peter de Ridder Press, Lisse, 1976.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Rhetorical Structure Theory: Description and Construction of Text Structures",
"authors": [
{
"first": "W",
"middle": [
"C"
],
"last": "Mann",
"suffix": ""
},
{
"first": "S",
"middle": [
"A"
],
"last": "Thompson",
"suffix": ""
}
],
"year": 1986,
"venue": "Natural Language Generation: New Results in Artificial Intelligence, Psychology, and Linguistics",
"volume": "",
"issue": "",
"pages": "279--300",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mann & Thompson 86] Mann, W.C. & Thompson, S.A. Rhetorical Structure Theory: Description and Construction of Text Structures. In Natural Lan- guage Generation: New Results in Artificial In- telligence, Psychology, and Linguistics, Kempen, G. (ed), Kluwer Academic Publishers, Dordrecht, Boston, 1986 (279-300).",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Rhetorical Structure Theory: Toward a Functional Theory of Text Organization",
"authors": [
{
"first": "W",
"middle": [
"C"
],
"last": "Mann & Thompson 88] Mann",
"suffix": ""
},
{
"first": "S",
"middle": [
"A"
],
"last": "Thompson",
"suffix": ""
}
],
"year": 1988,
"venue": "Also available as USC/Information Sciences Institute Research Report",
"volume": "8",
"issue": "",
"pages": "243--281",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mann & Thompson 88] Mann, W.C. and Thompson, S.A. Rhetorical Structure Theory: Toward a Func- tional Theory of Text Organization. Text 8(3), 1988 (243-281). Also available as USC/Information Sci- ences Institute Research Report RR-87-190.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Enhancing Explanation Coherence with Rhetorical Strategies",
"authors": [
{
"first": "M",
"middle": [
"T"
],
"last": "Maybury",
"suffix": ""
}
],
"year": 1989,
"venue": "Proceedings of the European ACL Conference",
"volume": "",
"issue": "",
"pages": "168--173",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Maybury, M.T. Enhancing Explanation Coherence with Rhetorical Strategies. In Proceedings of the European ACL Conference, Manchester, 1989 (168-173).",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Text Generation: Using Discourse Strategies and Focus Constraints to Generate Natural Language Text",
"authors": [
{
"first": "K",
"middle": [
"R"
],
"last": "Mckeown",
"suffix": ""
}
],
"year": 1985,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "McKeown, K.R. Text Generation: Us- ing Discourse Strategies and Focus Constraints to Generate Natural Language Text. Cambridge Univer- sity Press, Cambridge, 1985.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Planning Text for Advisory Dialogues",
"authors": [
{
"first": "",
"middle": [],
"last": "Moore & Paris",
"suffix": ""
},
{
"first": "J",
"middle": [
"D"
],
"last": "Moore",
"suffix": ""
},
{
"first": "C",
"middle": [
"L"
],
"last": "Paris",
"suffix": ""
}
],
"year": 1989,
"venue": "Proceedings of the $7th ACL Conference",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Moore & Paris 89] Moore, J.D. and Paris, C.L. Plan- ning Text for Advisory Dialogues. In Proceedings of the $7th ACL Conference, Vancouver, 1989.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Dialogue-Based Explanation. Presented at the 4th International Workshop on Text Generation",
"authors": [
{
"first": "&",
"middle": [],
"last": "Moore",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Swartout",
"suffix": ""
},
{
"first": "J",
"middle": [
"D"
],
"last": "Moore",
"suffix": ""
},
{
"first": "W",
"middle": [
"R"
],
"last": "Swartout",
"suffix": ""
}
],
"year": 1988,
"venue": "Natural Language in Artificial Intelligence and Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Moore & Swartout 88] Moore, J.D. and Swartout, W.R. Dialogue-Based Explanation. Presented at the 4th International Workshop on Text Generation, Los Angeles, 1988. In Paris, C.L., Swartout, W.R. and Mann, W.C. (eds), Natural Language in Artificial In- telligence and Computational Linguistics, to appear.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Generation and Explanation: Building an Explanation Facility for the Explainable Expert Systems Framework. Presented at the 4th International Workshop on Text Generation",
"authors": [
{
"first": "C",
"middle": [
"L"
],
"last": "Paris",
"suffix": ""
}
],
"year": 1988,
"venue": "Natural Language in Artificial Intelligence and Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "[Paris 88] Paris, C.L. Generation and Explanation: Building an Explanation Facility for the Explain- able Expert Systems Framework. Presented at the 4th International Workshop on Text Generation, Los Angeles, 1988. In Paris, C.L., Swartout, W.R. and Mann, W.C. (eds), Natural Language in Artificial In- telligence and Computational Linguistics, to appear.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "A formal Model of the Structure of Discourse",
"authors": [
{
"first": "L",
"middle": [],
"last": "Polanyi",
"suffix": ""
}
],
"year": 1988,
"venue": "Journal of Pragmatics",
"volume": "12",
"issue": "",
"pages": "601--638",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "[Polanyi 88] Polanyi, L. A formal Model of the Struc- ture of Discourse. Journal of Pragmatics 12, 1988 (601-638).",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "Rankin 89] Rankin, I. The Deep Generation of Text in Expert Critiquing Systems",
"authors": [
{
"first": "R",
"middle": [],
"last": "Quirk",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Greenbaum",
"suffix": ""
}
],
"year": 1973,
"venue": "Licentiate thesis, University of Link6ping",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "[Quirk & Greenbaum 73] Quirk, R., and Greenbaum, S. A Concise Grammar of Contemporary English. Harcourt Brace Jovanovich Inc., New York, 1973. [Rankin 89] Rankin, I. The Deep Generation of Text in Expert Critiquing Systems. Licentiate thesis, Uni- versity of Link6ping, Sweden, 1989.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "The Fine Art of Writing",
"authors": [
{
"first": "H",
"middle": [
"R"
],
"last": "Shepherd",
"suffix": ""
}
],
"year": 1926,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Shepherd, H.R. The Fine Art of Writ- ing. The Macmillan Co., New York, 1926.",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "An Approach for Creating Structured Text",
"authors": [
{
"first": "N",
"middle": [],
"last": "Simonin",
"suffix": ""
}
],
"year": 1988,
"venue": "Advances in Natural Language Generation",
"volume": "1",
"issue": "",
"pages": "146--160",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Simonin, N. An Approach for Creating Structured Text. In Zock, M. and Sabah, G. (eds), Advances in Natural Language Generation vol. 1, Pinter Publishers, London, 1988 (146-160).",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "The Uses of Argument",
"authors": [
{
"first": "S",
"middle": [],
"last": "Toulmin",
"suffix": ""
}
],
"year": 1958,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "[Toulmin 58] Toulmin, S. The Uses of Argument. Cam- bridge University Press, Cambridge, 1958.",
"links": null
},
"BIBREF35": {
"ref_id": "b35",
"title": "Discourse and Cohesion in Expository Text",
"authors": [
{
"first": "[",
"middle": [],
"last": "Tucker",
"suffix": ""
}
],
"year": 1986,
"venue": "Proceedings of Coling-86",
"volume": "",
"issue": "",
"pages": "181--183",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "[Tucker et al. 86] Tucker, A.B., Nirenburg, S., and Raskin, V. Discourse and Cohesion in Expository Text. In Proceedings of Coling-86, 1986 (181-183).",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"num": null,
"uris": null,
"text": ". The number associated with each relation indicates the number of different researchers who have listed the relation and may serve as a vote of confidence in it. The following list contains each relation in the hierarchy together with its proposers (identified Elaboration (101 Figure 2: A Hierarchy of InterclausalRelations.",
"type_str": "figure"
},
"FIGREF1": {
"num": null,
"uris": null,
"text": ": MT, JH, JG, MP, GH, BF, KD, DSN, QG, MH Identification: KM, JG, HS, MP, KD, AC, MM, QG, ST, RJ ElabObject: ObjectAttribute: MT, HI, HL, KM, LP, JG, MP, MM, MH ObjectFunction: HL, KM, MP ElabPart: SetMember: MT, KM, JG ProcessStep: MT, HP, HI, MP, DL WholePart: MT, HI, HL, KM, JG, MP, AC, DL ElabGenerality: GeneralSpecific: MT, HP, JH, KM, JG, TNR, HS, MP, KD, Exhortation: Support: RR, RC Evidence (support claim): MT, KM, JG, MP, BF, KD, ST Proof: MP Justification (for S act): MT, IR, DL Motivation (for H act): MT, MP, DSN, DL, MM Concession: MT, DSN, KD, RR, QG, MH Qualification: ST LogicalRelation: Conjunction (Join, and): MT, DSN, RC, QG, MH Disjunction: QG, MH (Note: Some of the relations of QG and RJ are intraclausal.)",
"type_str": "figure"
},
"FIGREF2": {
"num": null,
"uris": null,
"text": "The hierarchy contains no explicitly structural relations, yet explicit signals of dis-course structure are very common. Why are they not included?",
"type_str": "figure"
},
"TABREF0": {
"content": "<table><tr><td/><td/><td/><td>I</td><td/><td/><td/><td/></tr><tr><td/><td>I</td><td/><td/><td/><td>I</td><td/><td/></tr><tr><td/><td colspan=\"2\">Asymmetric</td><td/><td/><td colspan=\"2\">Symmetric</td><td/></tr><tr><td/><td>I</td><td/><td/><td/><td>I</td><td/><td/></tr><tr><td/><td>I</td><td/><td>I</td><td/><td>I</td><td/><td>I</td></tr><tr><td/><td>Dominates</td><td colspan=\"2\">SatisfactionPrecedes</td><td colspan=\"2\">Comparative</td><td colspan=\"2\">LoEicalRelation</td></tr><tr><td/><td>I</td><td/><td>I</td><td/><td>I</td><td/><td>I</td></tr><tr><td colspan=\"2\">-Circumstance</td><td>-</td><td>Sequence</td><td>-</td><td>Contrast</td><td colspan=\"2\">-Conjunction</td></tr><tr><td>-</td><td>Elaboration</td><td>-</td><td>Restatement</td><td>-</td><td>Comparison</td><td colspan=\"2\">-Disjunction</td></tr><tr><td>-</td><td>etc.</td><td>-</td><td>etc.</td><td>-</td><td>etc.</td><td>-</td><td>etc.</td></tr></table>",
"num": null,
"text": "An Unsatisfactory Attempt at Hierarchicalizing Interclausal Relations. ........................",
"html": null,
"type_str": "table"
},
"TABREF3": {
"content": "<table><tr><td colspan=\"2\">(that is, asymmetrical and symmetrical relation-</td></tr><tr><td>ships:</td><td/></tr><tr><td colspan=\"2\">HYPO: Joe left because Sue worked (5</td></tr><tr><td colspan=\"2\">Sue worked because Joe left)</td></tr><tr><td>PARA:</td><td>He shouted when the horse</td></tr><tr><td colspan=\"2\">jumped (= the horse jumped when he</td></tr><tr><td>shouted)</td><td/></tr><tr><td colspan=\"2\">respectively). But this does not work because both</td></tr><tr><td colspan=\"2\">DOMINATES and SATISFACTIONPRECEDES are by</td></tr><tr><td colspan=\"2\">their natures asymmetrical. Another possible gen-</td></tr><tr><td colspan=\"2\">eralization is to use the two syntactic relations</td></tr><tr><td colspan=\"2\">MULTIVARIATE and UNIVARIATE (that is, contain-</td></tr><tr><td colspan=\"2\">ing an embedded syntactic type recursion (a gram-</td></tr><tr><td colspan=\"2\">matical rank shift) ornot, as in:</td></tr><tr><td colspan=\"2\">MULTI: Sue's working caused [Joe to</td></tr><tr><td colspan=\"2\">leave] (S embedded in S)</td></tr><tr><td colspan=\"2\">UNI: Joe left because Sue worked (two</td></tr><tr><td colspan=\"2\">coequal Ss)</td></tr></table>",
"num": null,
"text": "However, it is not clear how to generalize DOMI-NATES and SATISFACTIONPRECEDES to cover such cases as well. One possible generalization is to use the general relations HYPOTAXIS and PARATAXIS",
"html": null,
"type_str": "table"
}
}
}
} |