File size: 86,211 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 | {
"paper_id": "P93-1007",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:52:31.548881Z"
},
"title": "A SPEECH-FIRST MODEL FOR REPAIR DETECTION AND CORRECTION",
"authors": [
{
"first": "Christine",
"middle": [],
"last": "Nakatani",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Harvard University Cambridge",
"location": {
"postCode": "02138",
"region": "MA"
}
},
"email": ""
},
{
"first": "Julia",
"middle": [],
"last": "Hirschberg",
"suffix": "",
"affiliation": {},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Interpreting fully natural speech is an important goal for spoken language understanding systems. However, while corpus studies have shown that about 10% of spontaneous utterances contain self-corrections, or REPAIRS , little is known about the extent to which cues in the speech signal may facilitate repair processing. We identify several cues based on acoustic and prosodic analysis of repairs in a corpus of spontaneous speech, and propose methods for exploiting these cues to detect and correct repairs. We test our acoustic-prosodic cues with other lexical cues to repair identification and find that precision rates of 89-93% and recall of 78-83% can be achieved, depending upon the cues employed, from a prosodically labeled corpus.",
"pdf_parse": {
"paper_id": "P93-1007",
"_pdf_hash": "",
"abstract": [
{
"text": "Interpreting fully natural speech is an important goal for spoken language understanding systems. However, while corpus studies have shown that about 10% of spontaneous utterances contain self-corrections, or REPAIRS , little is known about the extent to which cues in the speech signal may facilitate repair processing. We identify several cues based on acoustic and prosodic analysis of repairs in a corpus of spontaneous speech, and propose methods for exploiting these cues to detect and correct repairs. We test our acoustic-prosodic cues with other lexical cues to repair identification and find that precision rates of 89-93% and recall of 78-83% can be achieved, depending upon the cues employed, from a prosodically labeled corpus.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Disfluencies in spontaneous speech pose serious problems for spoken language systems. First, a speaker may produce a partial word or FRAGMENT, a string of phonemes that does not form the complete intended word. Some fragments may coincidentally match words actually in the lexicon, such as fly in Example (1); others will be identified with the acoustically closest item(s) in the lexicon, as in Example (2). 1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "(1) What is the earliest fli-flight from Washington to Atlanta leaving on Wednesday September fourth?",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "(2) Actual string: What is the fare fro-on American",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "Recognized string: With fare four American Airlines fourteen forty three Even if all words in a disfluent segment are correctly recognized, failure to detect a disfluency may lead to interpretation errors during subsequent processing, as in Example (3).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Airlines fourteen forty three",
"sec_num": null
},
{
"text": "1The presence of a word fragment in examples is indicated by the diacritic '-'. Self-corrected portions of the utterance appear in boldface. All examples in this paper are drawn from the ATIS corpus described below. Recognition output shown in Example (2) is from the system described in (Lee et al., 1990 ).",
"cite_spans": [
{
"start": 288,
"end": 305,
"text": "(Lee et al., 1990",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Airlines fourteen forty three",
"sec_num": null
},
{
"text": "(3) ... Delta leaving Boston seventeen twenty one arriving Fort Worth twenty two twenty one forty...",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Airlines fourteen forty three",
"sec_num": null
},
{
"text": "Here, 'twenty two twenty one forty' must be interpreted as a flight arrival time; the system must somehow choose among '21:40', '22:21', and '22:40'. Although studies of large speech corpora have found that approximately 10% of spontaneous utterances contain disfluencies involving self-correction, or REPAIRS (Hindle, 1983; , little is known about how to integrate repair processing with real-time speech recognition. In particular, the speech signal itself has been relatively unexplored as a source of processing cues for the detection and correction of repairs. In this paper, we present results from a study of the acoustic and prosodic characteristics of 334 repair utterances, containing 368 repair instances, from the AROA Air Travel Information System (ATIS) database. Our results are interpreted within our \"speech-first\" framework for investigating repairs, the REPAIR IN-TERVAL MODEL (RIM). RIM builds upon Labov (1966) and Hindle (1983) by conceptually extending the EDIT SIGNAL HYPOTHESIS --that repairs are acoustically or phonetically marked at the point of interruption of fluent speech. After describing acoustic and prosodic characteristics of the repair instances in our corpus, we use these and other lexical cues to test the utility of our \"speech-first\" approach to repair identification on a prosodically labeled corpus.",
"cite_spans": [
{
"start": 119,
"end": 149,
"text": "'21:40', '22:21', and '22:40'.",
"ref_id": null
},
{
"start": 310,
"end": 324,
"text": "(Hindle, 1983;",
"ref_id": "BIBREF6"
},
{
"start": 919,
"end": 931,
"text": "Labov (1966)",
"ref_id": "BIBREF7"
},
{
"start": 936,
"end": 949,
"text": "Hindle (1983)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Airlines fourteen forty three",
"sec_num": null
},
{
"text": "While self-correction has long been a topic of psycholinguistic study, computational work in this area has been sparse. Early work in computational linguistics treated repairs as one type of ill-formed input and proposed solutions based upon extensions to existing text parsing techniques such as augmented transition networks (ATNs), network-based semantic grammars, case frame grammars, pattern matching and deterministic parsers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Computational Approaches",
"sec_num": null
},
{
"text": "Recently, and have proposed a two-stage method for processing repairs. In the first stage, lexical pattern matching rules operating on orthographic transcriptions would be used to retrieve candidate repair utterances. In the second, syntactic, semantic, and acoustic information would filter true repairs from false positives found by the pattern matcher. Results of testing the first stage of this model, the lexical pattern matcher, are reported in : 309 of 406 utterance containing 'nontrivial' repairs in their 10,718 utterance corpus were correctly identified, while 191 fluent utterances were incorrectly identified as containing repairs. This represents recall of 76% with precision of 62%. Of the repairs correctly identified, the appropriate correction was found for 57%. Repaj'r candidates were filtered and corrected by deleting a portion of the utterance based on the pattern matched, and then checking the syntactic and semantic acceptability of the corrected version using the syntactic and semantic components of the Gemini NLP system. also speculate that acoustic information might be used to filter out false positives for candidates matching two of their lexical patterns --repetitions of single words and cases of single inserted words --but do not report such experimentation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Computational Approaches",
"sec_num": null
},
{
"text": "This work promotes the important idea that automatic repair processing can be made more robust by integrating knowledge from multiple sources. Such integration is a desirable long-term goal. However, the working assumption that correct transcriptions will be available from speech recognizers is problematic, since current recognition systems rely primarily upon language models and lexicons derived from fluent speech to decide among competing acoustic hypotheses. These systems usually treat disfluencies in training and recognition as noise; moreover, they have no way of modeling word fragments, even though these occur in the majority of repairs. We term such approaches that rely on accurate transcription to identify repair candidates \"text-first\".",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Computational Approaches",
"sec_num": null
},
{
"text": "Text-first approaches have explored the potential contributions of lexical and grammatical information to automatic repair processing, but have largely left open the question of whether there exist acoustic and prosodic cues for repairs in general, rather than potential acoustic-prosodic filters for particular pattern subclasses. Our investigation of repairs addresses the problem of identifying such general acoustic-prosodic cues to repairs, and so we term our approach \"speechfirst\". Finding such cues to repairs would provide early detection of repairs in recognition, permitting early pruning of the hypothesis space.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Computational Approaches",
"sec_num": null
},
{
"text": "One proposal for repair processing that lends itself to both incremental processing and the integration of speech cues into repair detection is that of Hindle (1983) , who defines a typology of repairs and associated correction strategies in terms of extensions to a deterministic parser. For Hindle, repairs can be (1) full sentence restarts, in which an entire utterance is reinitiated; (2) constituent repairs, in which one syntactic constituent (or part thereof) is replaced by another; 2 or (3) surface level repairs, in which identical strings appear adjacent to each other. An hypothesized acousticphonetic edit signal, \"a markedly abrupt cut-off of the speech signal\" (Hindle, 1983, p.123) , is assumed to mark the interruption of fluent speech (cf. (Labov, 1966) ). This signal is treated as a special lexical item in the parser input stream that triggers certain correction strategies depending on the parser configuration. Thus, in Hindle's system, repair detection is decoupled from repair correction, which requires only that the location of the interruption is stored in the parser state.",
"cite_spans": [
{
"start": 152,
"end": 165,
"text": "Hindle (1983)",
"ref_id": "BIBREF6"
},
{
"start": 676,
"end": 697,
"text": "(Hindle, 1983, p.123)",
"ref_id": null
},
{
"start": 758,
"end": 771,
"text": "(Labov, 1966)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Computational Approaches",
"sec_num": null
},
{
"text": "Importantly, Hindle's system allows for nonsurface-based corrections and sequential application of correction rules (Hindle, 1983, p. 123 ). In contrast, simple surface deletion correction strategies cannot readily handle either repairs in which one syntactic constituent is replaced by an entirely different one, as in Example (4), or sequences of overlapping repairs, as in Example (5). Hindle's methods achieved a success rate of 97% on a transcribed corpus of approximately 1,500 sentences in which the edit signal was orthographically represented and lexical and syntactic category assignments hand-corrected, indicating that, in theory, the edit signal can be computationally exploited for both repair detection and correction. Our \"speech-first\" investigation of repairs is aimed at determining the extent to which repair processing algorithms can rely on the edit signal hypothesis in practice.",
"cite_spans": [
{
"start": 116,
"end": 137,
"text": "(Hindle, 1983, p. 123",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Computational Approaches",
"sec_num": null
},
{
"text": "To support our investigation of acoustic-prosodic cues to repair detection, we propose a \"speech-first\" model of repairs, the REPAIR INTERVAL MODEL (RIM). RIM divides the repair event into three consecutive temporal intervals and identifies time points within those intervals that are computationally critical. A full repair comprises three intervals, the REPARANDUM INTERVAL, the DISFLUENCY INTERVAL, and the REPAIR INTERVAL. Following Levelt (1983) , we identify the REPARANDUM as the lexicai material which is to be repaired. The end of the reparandum coincides with the termination of the fluent portion of the utterance, which we term the INTERRUPTION SITE (IS). The DISFLUENCY INTERVAL (nI) extends from the IS to the resumption of fluent speech, and may contain any combination of silence, pause fillers ('uh', 'urn') , or CUE PHRASES (e.g., 'Oops' 2This is consistent with Levelt (1983) 's observation that the material to be replaced and the correcting material in a repair often share structural properties akin to those shared by coordinated constituents. or 'I mean'), which indicate the speaker's recognition of his/her performance error. The REPAIR INTERVAL corresponds to the utterance of the correcting material, which is intended to 'replace' the reparandum. It extends from the offset of the DI tO the resumption of non-repair speech. In Example (6), for example, the reparandum occurs from 1 to 2, the DI from 2 to 3, and the repair interval from 3 to 4; the Is occurs at 2. 6 RIM provides a framework for testing the extent to which cues from the speech signal contribute to the identification and correction of repair utterances. RIM incorporates two main assumptions of Hindle (1983) : (1) correction strategies are linguisticallyrulegoverned, and (2) linguistic cues must be available to signal when a disfluency has occurred and to 'trigger' correction strategies. As Hindle noted, if the processing of disfluencies were not rule-governed, it would be difficult to reconcile the infrequent intrusion of disfluencies on human speech comprehension, especially for language learners, with their frequent rate of occurrence in spontaneous speech. We view Hindle's results as evidence supporting (1). Our study tests (2) by exploring the acoustic and prosodic features of repairs that might serve as a form of edit signal for rule-governed correction strategies.",
"cite_spans": [
{
"start": 437,
"end": 450,
"text": "Levelt (1983)",
"ref_id": "BIBREF10"
},
{
"start": 811,
"end": 824,
"text": "('uh', 'urn')",
"ref_id": null
},
{
"start": 849,
"end": 855,
"text": "'Oops'",
"ref_id": null
},
{
"start": 881,
"end": 894,
"text": "Levelt (1983)",
"ref_id": "BIBREF10"
},
{
"start": 1692,
"end": 1705,
"text": "Hindle (1983)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Repair Interval Model",
"sec_num": null
},
{
"text": "While Labov and Hindle proposed that an acoustic-phonetic cue might exist at precisely the Is, based on our analyses and on recent psychotinguistic experiments (Lickley et al., 1991) , this proposal appears too limited. Crucially, in RIM, we extend the notion of edit signal to include any phenomenon which may contribute to the perception of an \"abrupt cut-off\" of the speech signal --including cues such as coarticulation phenomena, word fragments, interruption glottalization, pause, and prosodic cues which occur in the vicinity of the disfluency interval. RIM thus acknowledges the edit signal hypothesis, that some aspect of the speech signal may demarcate the computationally key juncture between the reparandum and repair intervals, while extending its possible acoustic and prosodic manifestations.",
"cite_spans": [
{
"start": 160,
"end": 182,
"text": "(Lickley et al., 1991)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Repair Interval Model",
"sec_num": null
},
{
"text": "We studied the acoustic and prosodic correlates of repair events as defined in the RIM framework with the aim of identifying potential cues for automatic repair processing, extending a pilot study reported in (Nakatani and Hirschberg, 1993) . Our corpus for the current study consisted of 6,414 utterances produced by 123 speakers from the ARPA Airline Travel and Information System (ATIS) database (MADCOW, 1992) collected at AT&T, BBN, CMU, SRI, and TL 334 (5.2%) of these utterances contain at least one repair~ where repair is defined as the self-correction of one or more phonemes (up to and including sequences of words) in an utterance) Orthographic transcriptions of the utterances were prepared by ARPA contractors according to standardized conventions. The utterances were labeled at Bell Laboratories for word boundaries and intonational prominences and phrasing following Pierrehumbert's description of English intonation (Pierrehumbert, 1980) . Also, each of the three RIM intervals and prosodic and acoustic events within those intervals were labeled.",
"cite_spans": [
{
"start": 209,
"end": 240,
"text": "(Nakatani and Hirschberg, 1993)",
"ref_id": "BIBREF14"
},
{
"start": 399,
"end": 413,
"text": "(MADCOW, 1992)",
"ref_id": "BIBREF13"
},
{
"start": 934,
"end": 955,
"text": "(Pierrehumbert, 1980)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Acoustic-Prosodic Characteristics of Repairs",
"sec_num": null
},
{
"text": "Our acoustic and prosodic analysis of the reparandum interval focuses on acoustic-phonetic properties of word fragments, as well as additional phonetic cues marking the reparandum offset. From the point of view of repair detection and correction, acoustic-prosodic cues to the onset of the reparandum would clearly be useful in the choice of appropriate correction strategy. However, recent perceptual experiments indicate that humans do not detect an oncoming disfluency as early as the onset of the reparandum (Lickley et al., 1991; Lickley and Bard, 1992) . Subjects were generally able to detect disfluencies before lexical access of the first word in the repair. However, since only a small number of the test stimuli employed in these experiments contained reparanda ending in word fragments (Lickley et al., 1991) , it is not clear how to generalize results to such repairs. In our corpus, 74% of all reparanda end in word fragments. 4",
"cite_spans": [
{
"start": 512,
"end": 534,
"text": "(Lickley et al., 1991;",
"ref_id": "BIBREF12"
},
{
"start": 535,
"end": 558,
"text": "Lickley and Bard, 1992)",
"ref_id": "BIBREF11"
},
{
"start": 798,
"end": 820,
"text": "(Lickley et al., 1991)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Reparandum Interval",
"sec_num": null
},
{
"text": "Since the majority of our repairs involve word fragmentation, we analyzed several lexical and acousticphonetic properties of fragments for potential use in fragment identification. a clear tendency for fragmentation at the reparandum offset to occur in content words rather than function words.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Reparandum Interval",
"sec_num": null
},
{
"text": "3In our pilot study of the SRI and TI utterances only, we found that repairs occurred in 9.1% of utterances (Nakatani and Hirschberg, 1993) . This rate is probably more accurate than the 5.2% we find in our current corpus, since repairs for the pilot study were identified from more detailed transcriptions than were available for the larger corpus. 4Shriberg et al. (1992) found that 60.2% of repairs in their corpus contained fragments. Table 2 shows the distribution of fragment repairs by length. 91% of fragments in our corpus are one syllable or less in length. Table 3 shows the distri-Syllables Tokens % 0 113 39% 1 149 52% 2 25 9% 3 1 0.3% sonant fragments occur more than six times as often as fricatives than as stops. However, fricatives and stops occur almost equally as the initial consonant in single syllable fragments. Furthermore, we observe two divergences from the underlying distributions of initial phonemes for all words in the corpus. Vowel-initial words show less tendency and fricative-initial words show a greater tendency to occur as fragments, relative to the underlying distributions for those classes.",
"cite_spans": [
{
"start": 108,
"end": 139,
"text": "(Nakatani and Hirschberg, 1993)",
"ref_id": "BIBREF14"
},
{
"start": 367,
"end": 373,
"text": "(1992)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 439,
"end": 446,
"text": "Table 2",
"ref_id": "TABREF3"
},
{
"start": 568,
"end": 654,
"text": "Table 3 shows the distri-Syllables Tokens % 0 113 39% 1 149 52% 2 25 9% 3",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Identifying the Reparandum Interval",
"sec_num": null
},
{
"text": "Two additional acoustic-phonetic cues, glottalization and coarticulation, may help in fragment identification. note that INTERRUPTION GLO'I~ALIZATION (irregular glottal pulses) sometimes occurs at the reparandum offset. This form of glottalization is acoustically distinct from LARYNGEALIZA-TION (creaky voice), which often occurs at the end of prosodic phrases; GLOTTAL STOPS, which often precede vowel-initial words; and EPENTHETIC GLOTTAL-tZATtON. In our corpus, 30.2% of reparanda offsets are marked by interruption glottalization. 5 Although interruption glottalization is usually associated with fragments, not all fragments are glottalized. In our database, 62% of fragments are not glottalized, and 9% of glottalized reparanda offsets are not fragments. Also, sonorant endings of fragments in our corpus sometimes exhibit coarticulatory effects of an unrealized subsequent phoneme. When these effects occur with a following pause (see below), they can be used to distinguish fragments from full phrase-final words --such as 'fli-' from 'fly' in Example (1).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Reparandum Interval",
"sec_num": null
},
{
"text": "To summarize, our corpus shows that most reparanda offsets end in word fragments. These fragments are usually fragments of content words (based upon transcribers' identification of intended words in our corpus), are rarely more than one syllable long, exhibit different distributions of initial phoneme class depending on their length, and are sometimes glottalized and sometimes exhibit coarticulatory effects of missing subsequent phonemes. These findings suggest that it is unlikely that word-based recognition models can be applied directly to the problem of fragment identification. Rather, models for fragment identification might make use of initial phoneme distributions, in combination with information on fragment length and acoustic-phonetic events at the IS. Inquiry into the articulatory bases of several of these properties of self-interrupted speech, such as glottalization and initial phoneme distributions, may further improve the modeling of fragments.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Reparandum Interval",
"sec_num": null
},
{
"text": "In the RIM model, the D/includes all cue phrases and filled and unfilled pauses from the offset of the reparandum to the onset o.f the repair. The literature contains a number of hypotheses about this interval (cf. (Blackmet and Mitton, 1991) . For our corpus, pause fillers or cue words, which have been hypothesized as repair cues, occur within the DI for only 9.8% (332/368) of repairs, and so cannot be relied on for repair detection. Our findings do, however, support a new hypothesis associating fragment repairs and the duration of pause following the IS. ). If we analyze repair utterances based on occurrence of fragments, the DI duration for fragment repairs is significantly shorter than for nonfragments (p<.001, tstat=3.36, df=330). The fragment repair DI duration is also significantly shorter than fluent pause intervals (p<.001, tstat=5.05, df=1439), while there is no significant difference between nonfragment DIS and fluent utterances. So, DIS in general appear to be distinct from fluent pauses, and the duration of DIS in fragment repairs might also be exploited to identify these cases as repairs, as well as to distinguish them from nonfragment repairs. Thus, pausal duration may serve as a general acoustic cue for repair detection, particularly for the class of fragment repairs.",
"cite_spans": [
{
"start": 215,
"end": 242,
"text": "(Blackmet and Mitton, 1991)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Disfluency Interval",
"sec_num": null
},
{
"text": "Several influential studies of acoustic-prosodic repair cues have relied upon texical, semantic, and pragmatic definitions of repair types (Levelt and Cutler, 1983; Levelt, 1983) . Levelt & Cutler (1983) claim that repairs of erroneous information (ERROR REPAIRS) are marked by increased intonational prominence on the correcting information, while other kinds of repairs, such as additions to descriptions (APPROPRIATENESS REPAIRS), generally are not. We investigated whether the repair interval is marked by special intonational prominence relative to the reparandum for all repairs in our corpus and for these particular classes of repair.",
"cite_spans": [
{
"start": 139,
"end": 164,
"text": "(Levelt and Cutler, 1983;",
"ref_id": "BIBREF9"
},
{
"start": 165,
"end": 178,
"text": "Levelt, 1983)",
"ref_id": "BIBREF10"
},
{
"start": 181,
"end": 203,
"text": "Levelt & Cutler (1983)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "To obtain objective measures of relative prominence, we compared absolute f0 and energy in the sonorant center of the last accented lexical item in the reparandum with that of the first accented item in the repair interval. 6 We found a small but reliable increase in f0 from the end of the reparandum to the beginning of the repair (mean--4.1 Hz, p<.01, tstat=2.49, df=327). There was also a small but reliable increase in amplitude across the oI (mean=+l.5 db, p<.001, tstat=6.07, df=327). We analyzed the same phenomena across utterance-internal fluent pauses for the ATIS TI set and found no reliable differences in either f0 or intensity, although this may have been due to the greater variability in the fluent population. And when we compared the f0 and amplitude changes from reparandum to repair with those observed for fluent pauses, we found no significant differences between the two populations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "So, while differences in f0 and amplitude exist between the reparandum offset and the repair onset, we conclude that these differences are too small help distinguish repairs from fluent speech. Although it is not entirely straightforward to compare our objective measures of intonational prominence with Levelt and Cutler's perceptual findings, our results provide only weak support for theirs. And while we find small but significant changes in two correlates of intonational prominence, the distributions of change in f0 and energy for our data are unimodal; when we further test subclasses of Levelt and Cutler's error repairs and appropriateness repairs, statistical analysis does not sup-6We performed the same analysis for the last and first syllables in the reparandum and repair, respectively, and for normalized f0 and energy; results did not substantially differ from those presented here. port Levelt and Cutler's claim that the former --and only the former --group is intonationally 'marked'.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "Previous studies of disfluency have paid considerable attention to the vicinity of the DI but little to the repair offset. Although we did not find comparative intonationai prominence across the DI tO be a promising cue for repair detection, our RIM analysis uncovered one general intonational cue that may be of use for repair correction, namely the prosodic phrasing of the repair interval. We propose that phrase boundaries at the repair offset can serve to delimit the region over which subsequent correction strategies may operate.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "We tested the idea that repair interval offsets are intonationally marked by either minor or major prosodic phrase boundaries in two ways. First, we used the phrase prediction procedure reported by Wang & Hirschberg (1992) to estimate whether the phrasing at the repair offset was predictable according to a model of fluent phrasing. 7 Second, we analyzed the syntactic and lexical properties of the first major or minor intonational phrase including all or part of the repair interval to determine whether such phrasal units corresponded to different types of repairs in terms of Hindle's typology.",
"cite_spans": [
{
"start": 198,
"end": 222,
"text": "Wang & Hirschberg (1992)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "The first analysis tested the hypothesis that repair interval offsets are intonationally delimited by minor or major prosodic phrase boundaries. We found that the repair offset co-occurs with minor phrase boundaries for 49% of repairs in the TI set. To see whether these boundaries were distinct from those in fluent speech, we compared the phrasing of repair utterances with the phrasing predicted for the corresponding corrected version of the utterance identified by ATIS transcribers. For 40% of all repairs, an observed boundary occurs at the repair offset where one is predicted; and for 33% of all repairs, no boundary is observed where none is predicted. For the remaining 27% of repairs for which predicted phrasing diverged from observed, in 10% of cases a boundary occurred where none was predicted and in 17%, no boundary occurred when one was predicted.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "In addition to differences at the repair offset, we also found more general differences from predicted phrasing over the entire repair interval, which we hypothesize may be partly understood as follows: Two strong predictors of prosodic phrasing in fluent speech are syntactic constituency (Cooper and Sorenson, 1977; Gee and Grosjean, 1983; Selkirk, 1984) , especially the relative inviolability of noun phrases (Wang and Hirschberg, 1992) , and the length of prosodic phrases (Gee and Grosjean, 1983; Bachenko 7Wang & Hirschberg use statistical modeling techniques to predict phrasing from a large corpus of labeled ATIS speech; we used a prediction tree that achieves 88.4% accuracy on the ATIS TI corpus using only features whose values could be calculated via automatic text analysis. Results reported here are for prediction on only TI repair utterances.",
"cite_spans": [
{
"start": 290,
"end": 317,
"text": "(Cooper and Sorenson, 1977;",
"ref_id": "BIBREF4"
},
{
"start": 318,
"end": 341,
"text": "Gee and Grosjean, 1983;",
"ref_id": "BIBREF5"
},
{
"start": 342,
"end": 356,
"text": "Selkirk, 1984)",
"ref_id": "BIBREF16"
},
{
"start": 413,
"end": 440,
"text": "(Wang and Hirschberg, 1992)",
"ref_id": "BIBREF18"
},
{
"start": 478,
"end": 502,
"text": "(Gee and Grosjean, 1983;",
"ref_id": "BIBREF5"
},
{
"start": 503,
"end": 511,
"text": "Bachenko",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "and Fitzpatrick, 1990 ). On the one hand, we found occurrences of phrase boundaries at repair offsets which occurred within larger NPs, as in Example 7, where it is precisely the noun modifier --not the entire noun phrase --which is corrected. 8 (7) Show me all n-[ round-trip flights [ from Pittsburgh [ to Atlanta.",
"cite_spans": [
{
"start": 4,
"end": 21,
"text": "Fitzpatrick, 1990",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "We speculate that, by marking off the modifier intonationaily, a speaker may signal that operations relating just this phrase to earlier portions of the utterance can achieve the proper correction of the disfluency. We also found cases of 'lengthened' intonational phrases in repair intervals, as illustrated in the single-phrase reparandum in (8), where the corresponding fluent version of the reparandum is predicted to contain four phrases. Again, we hypothesize that the role played by this unusually long phrase is the same as that of early phrase boundaries in NPS discussed above. In both cases, the phrase boundary delimits a meaningful unit for subsequent correction strategies. For example, we might understand the multiple repairs in (8) as follows: First the speaker attempts a vP repair, with the repair phrase delimited by a single prosodic phrase 'is located'. Then the initially repaired utterance 'What airport is located' is itself repaired, with the reparadum again delimited by a single prosodic phrase, 'What is the name of the airport located in San Francisco'.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "In the second analysis of lexical and syntactic properties, we found three major classes of phrasing behaviors, all involving the location of the first phrase boundary after the repair onset: First, for 44% (163/368) of repairs, the repair offset we had initially identified 9 coincides with a phrase boundary, which can thus be said to mark off the repair interval. Of the remaining 205 repairs, more than two-thirds (140/205) have the first phrase boundary after the repair onset at the right edge of a syntactic constituent. We propose that this class of repairs should be identified as constituent repairs, rather than the lexical repairs we had initially hypothesized. For the majority of these constituent repairs (79%, 110/140), the repair interval contains a well-formed syntactic constituent (see Table 5 ). If the repair interval does not form a syntactic constituent, it is most often an NP-internal repair (77%, 23/30). The third class of repairs includes those in which the first boundary after the repair onset occurs neither at the repair offset nor at the right edge of a syntactic constituent. This class contains surface or lexical 8Prosodic boundaries in examples are indicated by '1'. 9Note crucially here that, in labeling repairs which might be viewed as either constituent or lexical, we preferred the shorter lexical analysis by default. Tokens Sentence 24 Verb phrase 7 Participial phrase 6 Noun phrase 38 Prepositional phrase 34 Relative clause 1 % 22% 6% 5% 35% 31% 0.9% Table 5 : Distribution of Syntactic Categories for Constituent Repairs (N= 110) repairs (where the first phrase boundary in the repair interval delimits a sequence of one or more repeated words), phonetic errors, word insertions, and syntactic reformulations (as in Example (4)). It might be noted here that, in general, repairs involving correction of either verb phrases or verbs are far less common than those involving noun phrases, prepositional phrases, or sentences.",
"cite_spans": [
{
"start": 1591,
"end": 1599,
"text": "(N= 110)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 806,
"end": 813,
"text": "Table 5",
"ref_id": null
},
{
"start": 1362,
"end": 1527,
"text": "Tokens Sentence 24 Verb phrase 7 Participial phrase 6 Noun phrase 38 Prepositional phrase 34 Relative clause 1 % 22% 6% 5% 35% 31% 0.9% Table 5",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Identifying the Repair",
"sec_num": null
},
{
"text": "We briefly note evidence against one alternative (although not mutually exclusive) hypothesis, that the region to be delimited correction strategies is marked not by a phrase boundary near the repair offset, but by a phrase boundary at the onset of the reparandum. In other words, it may be the reparandum interval, not the repair interval, that is intonationally delimited. However, it is often the case that the last phrase boundary before the IS occurs at the left edge of a major syntactic constituent (42%, (87/205), even though major constituent repairs are about one third as frequent in this corpus (15%, 31/205). In contrast, phrase boundaries occur at the left edge of minor constituents 27% (55/205) of the time, whereas minor constituent repairs make up 39% (79/205) of the subcorpus at hand. We take these figures as general evidence against the outlined alternative hypothesis, establishing that the demarcation repair offset is a more productive goal for repair processing algorithms.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Repair Constituent",
"sec_num": null
},
{
"text": "Investigation of repair phrasing in other corpora covering a wider variety of genres is needed in order to assess the generality of these findings. For example, 35% (8/23) of NP-internal constituent repairs occurred within cardinal compounds, which are prevalent in the nTIS corpus due to its domain. The preponderance of temporal and locative prepositional phrases may also be attributed to the nature of the task and domain. Nonetheless, the fact that repair offsets in our corpus are marked by intonational phrase boundaries in such a large percentage of cases (82.3%, 303/368), suggests that this is a possibility worth pursuing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Repair Constituent",
"sec_num": null
},
{
"text": "Despite the small size of our sample and the possibly limited generality of our corpus, we were interested to see how well the characterization of repairs derived from RIM analysis of the ATIS COrpUS would transfer to a predictive model for repairs in that domain. We examined 374 ATIS repair utterances, including the 334 upon which the descriptive study presented above was based. We used the 172 TI and SRI repair utterances from our earlier pilot study (Nakatani and Hirschberg, 1993) as training date; these served a similar purpose in the descriptive analysis presented above. We then tested on the additional 202 repair utterances, which contained 223 repair instances. In our predictions we attemped to distinguish repair Is from fluent phrase boundaries (collapsing major and minor boundaries), non-repair disfluencies, 1\u00b0 and simple word boundaries. We considered every word boundary to be a potential repair site. 11 Data points are represented below as ordered pairs <wl,wj >, where wi represents the lexical item to the left of the potential IS and wj represents that on the right.",
"cite_spans": [
{
"start": 457,
"end": 488,
"text": "(Nakatani and Hirschberg, 1993)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Predicting Repairs from Acoustic and Prosodic Cues",
"sec_num": null
},
{
"text": "For each <wi,wj >, we examined the following features as potential Is predictors: (a) duration of pause between wi and wj; (b) occurrence of a word fragment(s) within <w~,wj >; (c) occurrence of a filled pause in <wi,wj >; (d) amplitude (energy) peak within wi, both absolute and normalized for the utterance; (e) amplitude of wi relative to wi-i and to wj; (f) absolute and normalized f0 of wi; (g) f0 of wi relative to wi-i and to wj; and (h) whether or not wi was accented, deaccented, or deaccented and cliticized. We also simulated some simple pattern matching strategies, to try to determine how acoustic-prosodic cues might interact with lexical cues in repair identification. To this end, we looked at (i) the distance in words of wi from the beginning and end of the utterance; (j) the total number of words in the utterance; and (k) whether wi or wi-1 recurred in the utterance within a window of three words after wi. We were unable to test all the acoustic-prosodic features we examined in our descriptive analysis, since features such as glottalization and coarticulatory effects had not been labeled in our data base for locations other than DIs. Also, we used fairly crude measures to approximate features such as change in f0 and amplitude, since these .too had been precisely labeled in our corpus only for repair locations and not for fluent speech./2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Predicting Repairs from Acoustic and Prosodic Cues",
"sec_num": null
},
{
"text": "We trained prediction trees, using Classification and Regression Tree (CART) techniques (Brieman et al., 1984) , on our 172-utterance training set. We first included all our potential identifiers as possible predictors. The resulting (automatically generated) decision tree was then used to predict IS locations in our 202-l\u00b0These had been marked independently of our study and including all events with some phonetic indicator of disfluency which was not involved in a self-repair, such as hesitations marked with audible breath or sharp cut-off.",
"cite_spans": [
{
"start": 88,
"end": 110,
"text": "(Brieman et al., 1984)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Predicting Repairs from Acoustic and Prosodic Cues",
"sec_num": null
},
{
"text": "llWe also included utterance-final boundaries as data points.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Predicting Repairs from Acoustic and Prosodic Cues",
"sec_num": null
},
{
"text": "12We used uniform measures for prediction, however, for both repair sites and fluent regions. utterance test set. This procedure identified 186 of the 223 repairs correctly, while predicting 12 false positives and omitting 37 true repairs, for a recall of 83.4% and precision of 93.9%. Fully 177 of the correctly identified ISS were identified via presence of word fragments as well as duration of pause in the DL Repairs not containing fragments were identified from lexical matching plus pausal duration in the DI.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Predicting Repairs from Acoustic and Prosodic Cues",
"sec_num": null
},
{
"text": "Since the automatic identification of word fragments from speech is an unsolved problem, we next omitted the fragment feature and tried the prediction again. The best prediction tree, tested on the same 202-utterance test set, succeeded in identifying 174 of repairs correctly--in the absence of fragment information-with 21 false positives and 49 omissions (78.1% recall, 89.2% precision). The correctly identified repairs were all characterized by constraints on duration of pause in the DI. Some were further identified via presence of lexical match to the right of wi within the window of three described above, and word position within utterance. Those repairs in which no lexical match was identified were characterized by lower amplitude of wi relative to wj and cliticization or deaccenting of wi. Still other repairs were characterized by more complex series of lexical and acoustic-prosodic constraints.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Predicting Repairs from Acoustic and Prosodic Cues",
"sec_num": null
},
{
"text": "These results are, of course, very preliminary. Larger corpora must certainly be examined and more sophisticated versions of the crude measures we have used should be employed. However, as a first approximation to the characterization of repairs via both acoustic-prosodic and lexical cues, we find these resuits encouraging. In particular, our ability to identify repair sites successfully without relying upon the identification of fragments as such seems promising, although our analysis of fragments suggests that there may indeed be ways of identifying fragment repairs, via their relatively short DI, for example. Also, the combination of general acoustic-prosodic constraints with lexical pattern matching techniques as a strategy for repair identification appears to gain some support from our predictions. Further work on prediction modeling may suggest ways of combining these lexical and acoustic-prosodic cues for repair processing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Predicting Repairs from Acoustic and Prosodic Cues",
"sec_num": null
},
{
"text": "In this paper, we have presented a\"speech-first\" model, the Repair Interval Model, for studying repairs in spontaneous speech. This model divides the repair event into a reparandum interval, a disfluency interval, and a repair interval. We have presented empirical results from acoustic-phonetic and prosodic analysis of a corpus of repairs in spontaneous speech, indicating that reparanda offsets end in word fragments, usually of (intended) content words, and that these fragments tend to be quite short and to exhibit particular acousticphonetic characteristics. We found that the disfluency interval can be distinguished from intonational phrase boundaries in fluent speech in terms of duration of pause, and that fragment and nonfragment repairs can also be distinguished from one another in terms of the duration of the disfluency interval. For our corpus, repair onsets can be distinguished from reparandum offsets by small but reliable differences in f0 and amplitude, and repair intervals differ from fluent speech in their characteristic prosodic phrasing. We tested our results by developing predictive models for repairs in the ATIS domain, using CART analysis; the best performing prediction strategies, trained on a subset of our data, identified repairs in the remaining utterances with recall of 78-83% and precision of 89-93%, depending upon features examined.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": null
}
],
"back_matter": [
{
"text": "We thank John Bear, Barbara Grosz, Don Hindle, Chin Hui Lee, Robin Lickley, Andrej Ljolje, Jan van Santen, Stuart Shieber, and Liz Shriberg for advice and useful comments. CART analysis employed software written by Daryl Pregibon and Michael Riley. Speech analysis was done with Entropic Research Laboratory's WAVES software.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "A computational grammar of discourse-neutral prosodic phrasing in English",
"authors": [
{
"first": "E",
"middle": [],
"last": "Bachenko",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Fitzpatrick",
"suffix": ""
}
],
"year": 1990,
"venue": "Computational Linguistics",
"volume": "16",
"issue": "3",
"pages": "155--170",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "j. Bachenko and E. Fitzpatrick. 1990. A computational grammar of discourse-neutral prosodic phrasing in English. Computational Linguistics, 16(3): 155- 170.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Integrating multiple knowledge sources for detection and correction of repairs in humancomputer dialog",
"authors": [
{
"first": "John",
"middle": [],
"last": "Bear",
"suffix": ""
},
{
"first": "John",
"middle": [],
"last": "Dowding",
"suffix": ""
},
{
"first": "Elizabeth",
"middle": [],
"last": "Shriberg",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of the 30th Annual Meeting",
"volume": "",
"issue": "",
"pages": "56--63",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "John Bear, John Dowding, and Elizabeth Shriberg. 1992. Integrating multiple knowledge sources for detection and correction of repairs in human- computer dialog. In Proceedings of the 30th An- nual Meeting, pages 56-63, Newark DE. Associ- ation for Computational Linguistics.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Theories of monitoring and the timing of repairs in spontaneous speech",
"authors": [
{
"first": "Elizabeth",
"middle": [
"R"
],
"last": "Blackmer",
"suffix": ""
},
{
"first": "Janet",
"middle": [
"L"
],
"last": "Mitton",
"suffix": ""
}
],
"year": 1991,
"venue": "Cognition",
"volume": "39",
"issue": "",
"pages": "173--194",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Elizabeth R. Blackmer and Janet L. Mitton. 1991. Theories of monitoring and the timing of repairs in spontaneous speech. Cognition, 39:173-194.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "ClassificationandRegression Trees",
"authors": [
{
"first": "Leo",
"middle": [],
"last": "Brieman",
"suffix": ""
},
{
"first": "Jerome",
"middle": [
"H"
],
"last": "Friedman",
"suffix": ""
},
{
"first": "Richard",
"middle": [
"A"
],
"last": "Olshen",
"suffix": ""
},
{
"first": "Charles",
"middle": [
"J"
],
"last": "Stone",
"suffix": ""
}
],
"year": 1984,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Leo Brieman, Jerome H. Friedman, Richard A. Olshen, and Charles J. Stone. 1984. ClassificationandRe- gression Trees. Wadsworth & Brooks, Monterrey CA.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Fundamental frequency contours at syntactic boundaries",
"authors": [
{
"first": "W",
"middle": [
"E"
],
"last": "Cooper",
"suffix": ""
},
{
"first": "J",
"middle": [
"M"
],
"last": "Sorenson",
"suffix": ""
}
],
"year": 1977,
"venue": "Journal of the Acoustical Society of America",
"volume": "62",
"issue": "3",
"pages": "683--692",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "W. E. Cooper and J. M. Sorenson. 1977. Funda- mental frequency contours at syntactic bound- aries. Journal of the Acoustical Society of Amer- ica, 62(3):683-692, September.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Performance structure: A psycholinguistic and linguistic apprasial",
"authors": [
{
"first": "J",
"middle": [
"P"
],
"last": "Gee",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Grosjean",
"suffix": ""
}
],
"year": 1983,
"venue": "Cognitive Psychology",
"volume": "15",
"issue": "",
"pages": "411--458",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. P. Gee and E Grosjean. 1983. Performance struc- ture: A psycholinguistic and linguistic apprasial. Cognitive Psychology, 15:411-458.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Deterministic parsing of syntactic non-fluencies",
"authors": [
{
"first": "Donald",
"middle": [],
"last": "Hindle",
"suffix": ""
}
],
"year": 1983,
"venue": "Proceedings of the 21st Annual Meeting",
"volume": "",
"issue": "",
"pages": "123--128",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Donald Hindle. 1983. Deterministic parsing of syn- tactic non-fluencies. In Proceedings of the 21st Annual Meeting, pages 123-128, Cambridge MA. Association for Computational Linguistics.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "On the grammaticality of everyday speech",
"authors": [
{
"first": "William",
"middle": [],
"last": "Labov",
"suffix": ""
}
],
"year": 1966,
"venue": "Paper Presented at the Linguistic Society of America Annual Meeting",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "William Labov. 1966. On the grammaticality of ev- eryday speech. Paper Presented at the Linguistic Society of America Annual Meeting.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Acoustic modeling for large vocabulary speech recognition",
"authors": [
{
"first": "C.-H",
"middle": [],
"last": "Lee",
"suffix": ""
},
{
"first": "L",
"middle": [
"R"
],
"last": "Rabiner",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Pieraccini",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Wilpon",
"suffix": ""
}
],
"year": 1990,
"venue": "Computer Speech and Language",
"volume": "4",
"issue": "",
"pages": "127--165",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C.-H. Lee, L. R. Rabiner, R. Pieraccini, and J. Wilpon. 1990. Acoustic modeling for large vocabulary speech recognition. Computer Speech and Lan- guage, 4:127-165, April.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Prosodic marking in speech repair",
"authors": [
{
"first": "William",
"middle": [],
"last": "Levelt",
"suffix": ""
},
{
"first": "Anne",
"middle": [],
"last": "Cutler",
"suffix": ""
}
],
"year": 1983,
"venue": "Journal of Semantics",
"volume": "2",
"issue": "",
"pages": "205--217",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "William Levelt and Anne Cutler. 1983. Prosodic mark- ing in speech repair. Journal of Semantics, 2:205- 217.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Monitoring and self-repair in speech",
"authors": [
{
"first": "William",
"middle": [],
"last": "Levelt",
"suffix": ""
}
],
"year": 1983,
"venue": "Cognition",
"volume": "14",
"issue": "",
"pages": "41--104",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "William Levelt. 1983. Monitoring and self-repair in speech. Cognition, 14:41-104.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Processing disfluent speech: Recognising disfluency before lexical access",
"authors": [
{
"first": "R",
"middle": [
"J"
],
"last": "Lickley",
"suffix": ""
},
{
"first": "E",
"middle": [
"G"
],
"last": "Bard",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of the International Conference on Spoken Language Processing",
"volume": "",
"issue": "",
"pages": "935--938",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. J. Lickley and E. G. Bard. 1992. Processing disflu- ent speech: Recognising disfluency before lexical access. In Proceedings of the International Con- ference on Spoken Language Processing, pages 935-938, Banff, October. ICSLP.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Processing disfluent speech: How and when are disfluencies found?",
"authors": [
{
"first": "R",
"middle": [
"J"
],
"last": "Lickley",
"suffix": ""
},
{
"first": "R",
"middle": [
"C"
],
"last": "Shillcock",
"suffix": ""
},
{
"first": "E",
"middle": [
"G"
],
"last": "Bard",
"suffix": ""
}
],
"year": 1991,
"venue": "Proceedings of the Second European Conference on Speech Communication and Technology",
"volume": "III",
"issue": "",
"pages": "1499--1502",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. J. Lickley, R. C. Shillcock, and E. G. Bard. 1991. Processing disfluent speech: How and when are disfluencies found? In Proceedings of the Second European Conference on Speech Communication and Technology, Vol. III, pages 1499-1502, Gen- ova, September. Eurospeech-91.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Multi-site data collection for a spoken language corpus",
"authors": [
{
"first": "Madcow",
"middle": [
";"
],
"last": "Darpa",
"suffix": ""
},
{
"first": "Morgan",
"middle": [],
"last": "Kaufmann",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of the Speech and Natural Language Workshop",
"volume": "",
"issue": "",
"pages": "7--14",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "MADCOW. 1992. Multi-site data collection for a spoken language corpus. In Proceedings of the Speech and Natural Language Workshop, pages 7-14, Harriman NY, February. DARPA, Morgan Kaufmann.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "A speech-first model for repair identification in spoken language systems",
"authors": [
{
"first": "Christine",
"middle": [],
"last": "Nakatani",
"suffix": ""
},
{
"first": "Julia",
"middle": [],
"last": "Hirschberg",
"suffix": ""
}
],
"year": 1993,
"venue": "Proceedings of the ARPA Workshop on Human Language Technology",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Christine Nakatani and Julia Hirschberg. 1993. A speech-first model for repair identification in spo- ken language systems. In Proceedings of the ARPA Workshop on Human Language Technology, Plainsboro, March. ARPA.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "The Phonology and Phonetics of English Intonation",
"authors": [
{
"first": "B",
"middle": [],
"last": "Janet",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Pierrehumbert",
"suffix": ""
}
],
"year": 1980,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Janet B. Pierrehumbert. 1980. The Phonology and Phonetics of English Intonation. Ph.D. thesis, Massachusetts Institute of Technology, September. Distributed by the Indiana University Linguistics Club.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Phonology and syntax: The relation between sound and structure",
"authors": [
{
"first": "E",
"middle": [
"O"
],
"last": "Selkirk",
"suffix": ""
}
],
"year": 1984,
"venue": "Nordic Prosody II: Proceedings of the Second Symposium on Prosody in the Nordic language",
"volume": "",
"issue": "",
"pages": "111--140",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "E. O. Selkirk. 1984. Phonology and syntax: The relation between sound and structure. In T. Frey- jeim, editor, Nordic Prosody II: Proceedings of the Second Symposium on Prosody in the Nordic language, pages 111-140, Trondheim. TAPIR.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Automatic detection and correction of repairs in human-computer dialog",
"authors": [
{
"first": "Elizabeth",
"middle": [],
"last": "Shriberg",
"suffix": ""
},
{
"first": "John",
"middle": [],
"last": "Bear",
"suffix": ""
},
{
"first": "John",
"middle": [],
"last": "Dowding",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of the Speech and Natural Language Workshop",
"volume": "",
"issue": "",
"pages": "419--424",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Elizabeth Shriberg, John Bear, and John Dowding. 1992. Automatic detection and correction of re- pairs in human-computer dialog. In Proceedings of the Speech and Natural Language Workshop, pages 419--424, Harriman NY. DARPA, Morgan Kaufmann.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Automatic classification of intonational phrase boundaries",
"authors": [
{
"first": "Michelle",
"middle": [
"Q"
],
"last": "Wang",
"suffix": ""
},
{
"first": "Julia",
"middle": [],
"last": "Hirschberg",
"suffix": ""
}
],
"year": 1992,
"venue": "Computer Speech and Language",
"volume": "6",
"issue": "",
"pages": "175--196",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michelle Q. Wang and Julia Hirschberg. 1992. Auto- matic classification of intonational phrase bound- aries. Computer Speech and Language, 6:175- 196.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"num": null,
"type_str": "figure",
"text": "(4) I 'd like to a flight from Washington to Denver... (5) I 'd like to book a reser-are there f-is there a first class fare for the flight that departs at six forty p.m."
},
"FIGREF1": {
"uris": null,
"num": null,
"type_str": "figure",
"text": "5Shriberg et al. (1992) report glottalization on 24 of 25 vowel-final fragments."
},
"TABREF0": {
"num": null,
"type_str": "table",
"html": null,
"text": "Give me airlines 1 [ flying to Sa-] 2 [ SILENCE uh SILENCE ] 3 [ flying to Boston ] 4 from San Francisco next summer that have business class.",
"content": "<table/>"
},
"TABREF1": {
"num": null,
"type_str": "table",
"html": null,
"text": "shows the broad word class of the speaker's intended word for each fragment, where the intended word was recoverable. There is",
"content": "<table><tr><td>Lexical Class</td><td>Tokens</td><td>%</td></tr><tr><td>Content</td><td colspan=\"2\">121 42%</td></tr><tr><td>Function</td><td>12</td><td>4%</td></tr><tr><td>Untranscribed</td><td colspan=\"2\">155 54%</td></tr></table>"
},
"TABREF2": {
"num": null,
"type_str": "table",
"html": null,
"text": "Lexical Class of Word Fragments at Reparandum Offset (N=288)",
"content": "<table/>"
},
"TABREF3": {
"num": null,
"type_str": "table",
"html": null,
"text": "",
"content": "<table><tr><td colspan=\"5\">: Length of Reparandum Offset Word Frag-</td></tr><tr><td colspan=\"2\">ments (N=288)</td><td/><td/><td/></tr><tr><td colspan=\"5\">bution of initial phonemes for all words in the corpus</td></tr><tr><td colspan=\"5\">of 6,414 ATIS sentences, and for all fragments, single</td></tr><tr><td colspan=\"5\">syllable fragments, and single consonant fragments in</td></tr><tr><td colspan=\"5\">repair utterances. From Table 3 we see that single con-</td></tr><tr><td>Class</td><td>% of</td><td>% of</td><td>% of One</td><td>% of One</td></tr><tr><td/><td colspan=\"2\">Words Frags</td><td colspan=\"2\">Syll Frags Cons Frags</td></tr><tr><td>stop</td><td>23%</td><td>23%</td><td>30%</td><td>11%</td></tr><tr><td>vowel</td><td>25%</td><td>13%</td><td>19%</td><td>0%</td></tr><tr><td>fric</td><td>33%</td><td>45%</td><td>28%</td><td>73%</td></tr><tr><td>nasal/</td><td/><td/><td/><td/></tr><tr><td>glide/</td><td/><td/><td/><td/></tr><tr><td>liquid</td><td>18%</td><td>17%</td><td>20%</td><td>15%</td></tr><tr><td>h</td><td>1%</td><td>2%</td><td>4%</td><td>1%</td></tr><tr><td>N</td><td>64896</td><td>288</td><td>148</td><td>114</td></tr></table>"
},
"TABREF4": {
"num": null,
"type_str": "table",
"html": null,
"text": "",
"content": "<table/>"
},
"TABREF5": {
"num": null,
"type_str": "table",
"html": null,
"text": "shows the average duration of 'silent DI'S (those not containing pause fillers or cue words) compared to that of fluent utterance-internal silent pauses for the Tt utterances. Overall, silent DIS are shorter",
"content": "<table><tr><td>Pausal Juncture</td><td>Mean</td><td>Std Dev</td><td>N</td></tr><tr><td>Fluent</td><td colspan=\"2\">513 msec 676 msec</td><td>1186</td></tr><tr><td>DI</td><td colspan=\"2\">333 msec 417 msec</td><td>332</td></tr><tr><td>Frags</td><td colspan=\"2\">292 msec 379 msec</td><td>255</td></tr><tr><td>Non-frags</td><td colspan=\"2\">471 msec 502 msec</td><td>77</td></tr></table>"
},
"TABREF6": {
"num": null,
"type_str": "table",
"html": null,
"text": "",
"content": "<table><tr><td>: Duration of Silent DIS vs. Utterance-Internal</td></tr><tr><td>Fluent Pauses</td></tr><tr><td>than fluent pauses (p<.001, tstat=4.60, df=1516</td></tr></table>"
}
}
}
} |