File size: 63,785 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 | {
"paper_id": "P95-1016",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:34:01.698919Z"
},
"title": "Utilizing Statistical Dialogue Act Processing in Verbmobil",
"authors": [
{
"first": "Norbert",
"middle": [],
"last": "Reithinger",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "DFKI GmbH",
"location": {
"addrLine": "Stuhlsatzenhausweg 3",
"postCode": "D-66123",
"settlement": "Saarbriicken",
"country": "Germany"
}
},
"email": "re\u00b1thinger@uni-sb.de"
},
{
"first": "Elisabeth",
"middle": [],
"last": "Maier",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "DFKI GmbH",
"location": {
"addrLine": "Stuhlsatzenhausweg 3",
"postCode": "D-66123",
"settlement": "Saarbriicken",
"country": "Germany"
}
},
"email": "maier@dfki@uni-sb.de"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "In this paper, we present a statistical approach for dialogue act processing in the dialogue component of the speech-to-speech translation system VERBMOBIL. Statistics in dialogue processing is used to predict follow-up dialogue acts. As an application example we show how it supports repair when unexpected dialogue states occur.",
"pdf_parse": {
"paper_id": "P95-1016",
"_pdf_hash": "",
"abstract": [
{
"text": "In this paper, we present a statistical approach for dialogue act processing in the dialogue component of the speech-to-speech translation system VERBMOBIL. Statistics in dialogue processing is used to predict follow-up dialogue acts. As an application example we show how it supports repair when unexpected dialogue states occur.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Extracting and processing communicative intentions behind natural language utterances plays an important role in natural language systems (see e.g. (Cohen et al., 1990; Hinkelman and Spackman, 1994) ). Within the speech-to-speech translation system VERBMOBIL (Wahlster, 1993; Kay et al., 1994) , dialogue acts are used as the basis for the treatment of intentions in dialogues. The representation of intentions in the VERBMOBIL system serves two main purposes:",
"cite_spans": [
{
"start": 148,
"end": 168,
"text": "(Cohen et al., 1990;",
"ref_id": null
},
{
"start": 169,
"end": 198,
"text": "Hinkelman and Spackman, 1994)",
"ref_id": "BIBREF5"
},
{
"start": 259,
"end": 275,
"text": "(Wahlster, 1993;",
"ref_id": "BIBREF20"
},
{
"start": 276,
"end": 293,
"text": "Kay et al., 1994)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\u2022 Utilizing the dialogue act of an utterance as an important knowledge source for translation yields a faster and often qualitative better translation than a method that depends on surface expressions only. This is the case especially in the first application of VV.RBMOBIL, the ondemand translation of appointment scheduling dialogues.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\u2022 Another use of dialogue act processing in VERB-MOBIL is the prediction of follow-up dialogue acts to narrow down the search space on the analysis side. For example, dialogue act predictions are employed to allow for dynamically adaptable language models in word recognition.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "*This work was funded by the German Federal Ministry for Education, Research and Technology (BMBF) in the framework of the Verbmohil Project under Grant 01IV101K/1. The responsibility for the contents of this study lies with the authors. Thanks to Jan Alexandersson for valuable comments and suggestions on earlier drafts of this paper.",
"cite_spans": [
{
"start": 68,
"end": 98,
"text": "Research and Technology (BMBF)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Recent results (e.g. (Niedermair, 1992) ) show a reduction of perplexity in the word recognizer between 19% and 60% when context dependent language models are used.",
"cite_spans": [
{
"start": 21,
"end": 39,
"text": "(Niedermair, 1992)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "DiMogue act determination in VERBMOBIL is done in two ways, depending on the system mode: using deep or shallow processing. These two modes depend on the fact that VERBMOBIL is only translating on demand, i.e. when the user's knowledge of English is not sufficient to participate in a dialogue. If the user of VERBMOBIL needs translation, she presses a button thereby activating deep processing. In depth processing of an utterance takes place in maximally 50% of the dialogue contributions, namely when the owner speaks German only. DiMogue act extraction from a DRS-based semantic representation (Bos et al., 1994) is only possible in this mode and is the task of the semantic evaluation component of VERB-MOBIL.",
"cite_spans": [
{
"start": 598,
"end": 616,
"text": "(Bos et al., 1994)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In the other processing mode the diMogue component tries to process the English passages of the diMogue by using a keyword spotter that tracks the ongoing dialogue superficiMly. Since the keyword spotter only works reliably for a vocabulary of some ten words, it has to be provided with keywords which typically occur in utterances of the same diMogue act type; for every utterance the dialogue component supplies the keyword spotter with a prediction of the most likely follow-up dialogue act and the situationdependent keywords.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The dialogue component uses a combination of statistical and knowledge based approaches to process dialogue acts and to maintain and to provide contextual information for the other modules of VERBMOBIL (Maier and McGlashan, 1994) . It includes a robust dialogue plan recognizing module, which uses repair techniques to treat unexpected dialogue steps. The information acquired during dialogue processing is stored in a dialogue memory. This contextual information is decomposed into the intentional structure, the referential structure, and the temporal structure which refers to the dates mentioned in the dialogue.",
"cite_spans": [
{
"start": 202,
"end": 229,
"text": "(Maier and McGlashan, 1994)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "An overview of the dialogue component is given in (Alexandersson et al., 1995) . In this paper main emphasis is on statistical dialogue act prediction in VEFtBMOBIL, with an evaluation of the method, and an example of the interaction between plan recognition and statistical dialogue act prediction. Like previous approaches for modeling task-oriented dialogues we assume that a dialogue can be described by means of a limited but open set of dialogue acts (see e.g. (Bilange, 1991) , (Mast et al., 1992) ). We selected the dialogue acts by examining the VERBMOBIL corpus, which consists of transliterated spoken dialogues (German and English) for appointment scheduling. We examined this corpus for the occurrence of dialogue acts as proposed by e.g. (Austin, 1962; Searle, 1969) and for the necessity to introduce new, sometimes problem-oriented dialogue acts. We first defined 17 dialogue acts together with semi-formal rules for their assignment to utterances (Maier, 1994) . After one year of experience with these acts, the users of dialogue acts in VERBMOBIL selected them as the domain independent \"upper\" concepts within a more elaborate hierarchy that becomes more and more propositional and domain dependent towards its leaves (Jekat et al., 1995) . Such a hierarchy is useful e.g. for translation purposes. Following the assignment rules, which also served as starting point for the automatic determination of dialogue acts within the semantic evaluation component, we hand-annotated over 200 dialogues with dialogue act information to make this information available for training and test purposes. Figure 1 shows the domain independent dialogue acts and the transition networks which define admissible sequences of dialogue acts. In addition to the dialogue acts in the main dialogue network, there are five dialogue acts, which we call deviations, that can occur at any point of the dialogue. They are represented in an additional subnetwork which is shown at the bottom of figure 1. The networks serve as the basis for the implementation of a parser which determines whether an incoming dialogue act is compatible with the dialogue model.",
"cite_spans": [
{
"start": 50,
"end": 78,
"text": "(Alexandersson et al., 1995)",
"ref_id": "BIBREF0"
},
{
"start": 467,
"end": 482,
"text": "(Bilange, 1991)",
"ref_id": "BIBREF2"
},
{
"start": 485,
"end": 504,
"text": "(Mast et al., 1992)",
"ref_id": null
},
{
"start": 752,
"end": 766,
"text": "(Austin, 1962;",
"ref_id": "BIBREF1"
},
{
"start": 767,
"end": 780,
"text": "Searle, 1969)",
"ref_id": "BIBREF18"
},
{
"start": 964,
"end": 977,
"text": "(Maier, 1994)",
"ref_id": "BIBREF10"
},
{
"start": 1238,
"end": 1258,
"text": "(Jekat et al., 1995)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [
{
"start": 1612,
"end": 1620,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\u00b0--.-= <, / I:)igam= V COa~y_Ou=ry I 1-1 Initial Stw 0 Final State \u2022 Nc~4iaal SUm [",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Suggea",
"sec_num": null
},
{
"text": "As mentioned in the introduction, it is not only important to extract the dialogue act of the current utterance, but also to predict possible follow up dialogue acts. Predictions about what comes next are needed internally in the dialogue component and externally by other components in VERB-MOBIL. An example of the internal use, namely the treatment of unexpected input by the plan recognizer, is described in section 4. Outside the dialogue component dialogue act predictions are used e.g. by the abovementioned semantic evaluation component and the keyword spotter. The semantic evaluation component needs predictions when it determines the dialogue act of a new utterance to narrow down the set of possibilities. The keyword spotter can only detect a small number of keywords that are selected for each dialogue act from the VERBMOBIL corpus of annotated dialogues using the Keyword Classification Tree algorithm (Kuhn, 1993; Mast, 1995) .",
"cite_spans": [
{
"start": 918,
"end": 930,
"text": "(Kuhn, 1993;",
"ref_id": "BIBREF9"
},
{
"start": 931,
"end": 942,
"text": "Mast, 1995)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Suggea",
"sec_num": null
},
{
"text": "For the task of dialogue act prediction a knowledge source like the network model cannot be used since the average number of predictions in any state of the main network is five. This number increases when the five dialogue acts from the subnetwork which can occur everywhere are considered as well. In that case the average number of predictions goes up to 10. Because the prediction of 10 dialogue acts from a total number of 17 is not sufficiently restrictive and because the dialogue network does not represent preference information for the various dialogue acts we need a different model which is able to make reliable dialogue act predictions. Therefore we developed a statistical method which is described in detail in the next section.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Suggea",
"sec_num": null
},
{
"text": "In order to compute weighted dialogue act predictions we evaluated two methods: The first method is to attribute probabilities to the arcs of our network by training it with annotated dialogues from our corpus. The second method adopted information theoretic methods from speech recognition. We implemented and tested both methods and currently favor the second one because it is insensitive to deviations from the dialogue structure as described by the dialogue model and generally yields better prediction rates. This second method and its evaluation will be described in detail in this section.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Statistical Prediction Method and its Evaluation",
"sec_num": "3"
},
{
"text": "Currently, we use n-gram dialogue act probabilities to compute the most likely follow-up dialogue act. The method is adapted from speech recognition, where language models are commonly used to reduce the search space when determining a word that can match a part of the input signal (Jellinek, 1990) . It was used for the task of dialogue act prediction by e.g. (Niedermair, 1992) and (Nagata and Morimoto, 1993) . For our purpose, we consider a dialogue S as a sequence of utterances Si where each utterance has a corresponding dialogue act si. If P(S) is the statistical model of S, the probability can be approximated by the n-gram probabilities",
"cite_spans": [
{
"start": 283,
"end": 299,
"text": "(Jellinek, 1990)",
"ref_id": "BIBREF7"
},
{
"start": 362,
"end": 380,
"text": "(Niedermair, 1992)",
"ref_id": "BIBREF16"
},
{
"start": 385,
"end": 412,
"text": "(Nagata and Morimoto, 1993)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Statistical Prediction Method and its Evaluation",
"sec_num": "3"
},
{
"text": "P(S) = H P(siIsi-N+I'\"\" S,-l) i=1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Statistical Prediction Method and its Evaluation",
"sec_num": "3"
},
{
"text": "Therefore, to predict the nth dialogue act sn we can use the previously uttered dialogue acts and determine the most probable dialogue act by computing _;, s,,-u, s.,-z, . ..) $ To approximate the conditional probability P(.I.) the standard smoothing technique known as deleted interpolation is used (Jellinek, 1990) with",
"cite_spans": [
{
"start": 300,
"end": 316,
"text": "(Jellinek, 1990)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [
{
"start": 152,
"end": 171,
"text": "_;, s,,-u, s.,-z, .",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Statistical Prediction Method and its Evaluation",
"sec_num": "3"
},
{
"text": "P(s.ls.-,,s.-2) = qlf(sn) q-qzf(sn Is.-x) + q3f(Sn I'.-1, s.-u)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Statistical Prediction Method and its Evaluation",
"sec_num": "3"
},
{
"text": "where f are the relative frequencies computed from a training corpus and qi weighting factors with ~\"~qi = 1.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Statistical Prediction Method and its Evaluation",
"sec_num": "3"
},
{
"text": "To evaluate the statistical model, we made various experiments. Figure 2 shows the results for three representative experiments (TS1-TS3, see also (Reithinger, 1995) Figure 3 : Hit rates for 47 dialogues using 3 predictions",
"cite_spans": [
{
"start": 147,
"end": 165,
"text": "(Reithinger, 1995)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [
{
"start": 64,
"end": 72,
"text": "Figure 2",
"ref_id": null
},
{
"start": 166,
"end": 174,
"text": "Figure 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Statistical Prediction Method and its Evaluation",
"sec_num": "3"
},
{
"text": "Compared to the data from (Nagata and Morimoto, 1993 ) who report prediction rates of 61.7 %, 77.5% and 85.1% for one, two or three predictions respectively, the predictions are less reliable. However, their set of dialogue acts (or the equivalents, called illocutionary force types) does not include dialogue acts to handle deviations. Also, since the dialogues in our corpus are rather unrestricted, they have a big variation in their structure. Figure 3 shows the variation in prediction rates of three dialogue acts for 47 dialogues which were taken at random from our corpus. The x-axis represents the different diMogues, while the y-axis gives the hit rate for three predictions. Good examples for the differences in the dialogue structure are the diMogue pairs #15/#16 and #41/#42. The hit rate for dialogue #15 is about 54% while for #16 it is about 86%. Even more extreme is the second pair with hit rates of approximately 93% vs. 53%. While diMogue #41 fits very well in the statisticM model acquired from the training-corpus, dialogue #42 does not. This figure gives a rather good impression of the wide variety of material the dialogue component has to cope with.",
"cite_spans": [
{
"start": 26,
"end": 52,
"text": "(Nagata and Morimoto, 1993",
"ref_id": "BIBREF15"
}
],
"ref_spans": [
{
"start": 448,
"end": 456,
"text": "Figure 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Statistical Prediction Method and its Evaluation",
"sec_num": "3"
},
{
"text": "The dialogue model specified in the networks models all diMogue act sequences that can be usually expected in an appointment scheduling dialogue. In case unexpected input occurs repair techniques have to be provided to recover from such a state and to continue processing the dialogue in the best possible way. The treatment of these cases is the task of the dialogue plan recognizer of the dialogue component.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Application of the Statistical Model: Treatment of Unexpected Input",
"sec_num": "4"
},
{
"text": "The plan recognizer uses a hierarchical depth-first left-to-right technique for dialogue act processing (Vilain, 1990) . Plan operators have been used to encode both the dialogue model and methods for recovery from erroneous dialogue states. Each plan operator represents a specific goal which it is able to fulfill in case specific constraints hold. These constraints mostly address the context, but they can also be used to check pragmatic features, like e.g. whether the dialogue participants know each other. Also, every plan operator can trigger followup actions, h typical action is, for example, the update of the dialogue memory. To be able to fulfill a goal a plan operator can define subgoals which have to be achieved in a pre-specified order (see e.g. (Maybury, 1991; Moore, 1994) for comparable approaches). (that looks bad) Figure 4 : Part of an example dialogue Since the VERBMOBIL system is not actively participating in the appointment scheduling task but only mediating between two dialogue participants it has to be assumed that every utterance, even if it is not consistent with the dialogue model, is a legal dialogue step. The first strategy for error recovery therefore is based on the hypothesis that the attribution of a dialogue act to a given utterance has been incorrect or rather that an utterance has various facets, i.e. multiple dialogue act interpretations. Currently, only the most plausible dialogue act is provided by the semantic evaluation component. To find out whether there might be an additional interpretation the plan recognizer relies on information provided by the statistics module. If an incompatible dialogue act is encountered, an alternative dialogue act is looked up in the statistical module which is most likely to come after the preceding dialogue act and which can be consistently followed by the current dialogue act, thereby gaining an admissible dialogue act sequence.",
"cite_spans": [
{
"start": 104,
"end": 118,
"text": "(Vilain, 1990)",
"ref_id": "BIBREF19"
},
{
"start": 764,
"end": 779,
"text": "(Maybury, 1991;",
"ref_id": "BIBREF13"
},
{
"start": 780,
"end": 792,
"text": "Moore, 1994)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [
{
"start": 838,
"end": 846,
"text": "Figure 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Application of the Statistical Model: Treatment of Unexpected Input",
"sec_num": "4"
},
{
"text": "To illustrate this principle we show a part of the processing of two turns (fmwl..2_01 and mpsl_2_02, see figure 4 ) from an example dialogue with the dialogue act assignments as provided by the semantic evaluation component. The translations stick to the German words as close as possible and are not provided by VERBMOBIL. The trace of the dialogue component is given in figure 5, Trying to find a dialogue act to bridge DELIBERATE and REJECT ...",
"cite_spans": [],
"ref_spans": [
{
"start": 106,
"end": 114,
"text": "figure 4",
"ref_id": null
},
{
"start": 373,
"end": 382,
"text": "figure 5,",
"ref_id": "FIGREF5"
}
],
"eq_spans": [],
"section": "Application of the Statistical Model: Treatment of Unexpected Input",
"sec_num": "4"
},
{
"text": "and their scores:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Possible insertions",
"sec_num": null
},
{
"text": "((SUGGEST 81326) (REQUEST_COMMENT 37576) (DELIBERATE20572))",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Possible insertions",
"sec_num": null
},
{
"text": "Testing SUGGEST for compatibility with surrounding dialogue acts... In this example the case for statistical repair occurs when a REJECT does not -as expected -follow a SUGGEST. Instead, it comes after the INIT of the topic to be negotiated and after a DELIBERATE. The latter dialogue act can occur at any point of the dialogue; it refers to utterances which do not contribute to the negotiation as such and which can be best seen as \"thinking aloud\". As first option, the plan recognizer tries to repair this state using statistical information, finding a dialogue act which is able to connect INIT and REJECT 1. As can be seen in figure 5 the dialogue acts REQUEST_COMMENT, DE-LIBERATE, and SUGGEST can be inserted to achieve a consistent dialogue. The annotated scores are the product of the transition probabilities times 1000 between the previous dialogue act, the potential insertion and the current dialogue act which are provided 1 Because DELIBERATE has only the function of \"social noise\" it can be omitted from the following considerations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Possible insertions",
"sec_num": null
},
{
"text": "by the statistic module. Ordered according to their scores, these candidates for insertion are tested for compatibility with either the previous or the current dialogue act. The notion of compatibility refers to dialogue acts which have closely related meanings or which can be easily realized in one utterance.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The previomsdialogue act INIT",
"sec_num": null
},
{
"text": "To find out which dialogue acts can be combined we examined the corpus for cases where the repair mechanism proposes an additional reading. Looking at the sample dialogues we then checked which of the proposed dialogue acts could actually occur together in one utterance, thereby gaining a list of admissible dialogue act combinations. In the VERBMOBIL corpus we found that dialogue act combinations like SUGGEST and REJECT can never be attributed to one utterance, while INIT can often also be interpreted as a SUQGEST therefore getting a typical follow-up reaction of either an acceptance or a rejection. The latter case can be found in our example: INIT gets an additional reading of SUGeEST.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The previomsdialogue act INIT",
"sec_num": null
},
{
"text": "In cases where no statistical solution is possible plan-based repair is used. When an unexpected dialogue act occurs a plan operator is activated which distinguishes various types of repair. Depending on the type of the incoming dialogue act specialized repair operators are used. The simplest case covers dialogue acts which can appear at any point of the dialogue, as e.g. DELIBERATE and clarification dialogues (CLARIFY_QUERY and CLARIFY-ANSWER).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The previomsdialogue act INIT",
"sec_num": null
},
{
"text": "We handle these dialogue acts by means of repair in order to make the planning process more efficient: since these dialogue acts can occur at any point in the dialogue the plan recognizer in the worst case has to test for every new utterance whether it is one of the dialogue acts which indicates a deviation. To prevent this, the occurrence of one of these dialogue acts is treated as an unforeseen event which triggers the repair operator. In figure 5, the plan recognizer issues a warning after processing the DELIBERATE dialogue act, because this act was inserted by means of a repair operator into the dialogue structure.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The previomsdialogue act INIT",
"sec_num": null
},
{
"text": "This paper presents the method for statistical dialogue act prediction currently used in the dialogue component of VERBMOBIL. It presents plan repair as one example of its use. The analysis of the statistical method shows that the prediction algorithm shows satisfactory results when deviations from the main dialogue model are excluded. If dialogue acts for deviations are included, the prediction rate drops around 10%. The analysis of the hit rate shows also a large variation in the structure of the dialogues from the corpus. We currently integrate the speaker direction into the prediction process which results in a gain of up to 5 % in the prediction hit rate. Additionally, we investigate methods to cluster training dialogues in classes with a similar structure.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "5"
},
{
"text": "An important application of the statistical prediction is the repair mechanism of the dialogue plan recognizer. The mechanism proposed here contributes to the robustness of the whole VERBMOBIL system insofar as it is able to recognize cases where dialogue act attribution has delivered incorrect or insufficient results. This is especially important because the input given to the dialogue component is unreliable when dialogue act information is computed via the keyword spotter. Additional dialogue act readings can be proposed and the dialogue history can be changed accordingly.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "5"
},
{
"text": "Currently, the dialogue component processes more than 200 annotated dialogues from the VERBMOBIL corpus. For each of these dialogues, the plan recognizer builds a dialogue tree structure, using the method presented in section 4, even if the dialogue structure is inconsistent with the dialogue model. Therefore, our model provides robust techniques for the processing of even highly unexpected dialogue contributions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "5"
},
{
"text": "In a next version of the system it is envisaged that the semantic evaluation component and the keyword spotter are able to attribute a set of dialogue acts with their respective probabilities to an utterance. Also, the plan operators will be augmented with statistical information so that the selection of the best possible follow-up dialogue acts can be retrieved by using additional information from the plan recognizer itself.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "5"
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "A Robust and Efficient Three-Layered Dialog Component for a Speechto-Speech Translation System",
"authors": [
{
"first": "Jan",
"middle": [],
"last": "Alexandersson",
"suffix": ""
},
{
"first": "Elisabeth",
"middle": [],
"last": "Maier",
"suffix": ""
},
{
"first": "Norbert",
"middle": [],
"last": "Reithinger",
"suffix": ""
}
],
"year": 1995,
"venue": "Proceedings of the 7th Conference of the European Chapter of the A CL (EA CL-95)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jan Alexandersson, Elisabeth Maier, and Norbert Reithinger. 1995. A Robust and Efficient Three-Layered Dialog Component for a Speech- to-Speech Translation System. In Proceedings of the 7th Conference of the European Chapter of the A CL (EA CL-95), Dublin, Ireland.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "How to do things with words",
"authors": [
{
"first": "John",
"middle": [],
"last": "Austin",
"suffix": ""
}
],
"year": 1962,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "John Austin. 1962. How to do things with words. Oxford: Clarendon Press.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "A task independent oral dialogue model",
"authors": [
{
"first": "Eric",
"middle": [],
"last": "Bilange",
"suffix": ""
}
],
"year": 1991,
"venue": "Proceedings of the Fifth Conference of the European Chapter of the Association for Computational Linguistics (EACL-91)",
"volume": "",
"issue": "",
"pages": "83--88",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Eric Bilange. 1991. A task independent oral dia- logue model. In Proceedings of the Fifth Confer- ence of the European Chapter of the Association for Computational Linguistics (EACL-91), pages 83-88, Berlin, Germany.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "The Verbmobil Semantic Formalismus",
"authors": [
{
"first": "Johan",
"middle": [],
"last": "Bos",
"suffix": ""
},
{
"first": "Elsbeth",
"middle": [],
"last": "Mastenbroek",
"suffix": ""
},
{
"first": "Scott",
"middle": [],
"last": "Mcglashan",
"suffix": ""
},
{
"first": "Sebastian",
"middle": [],
"last": "Millies",
"suffix": ""
},
{
"first": "Manfred",
"middle": [],
"last": "Pinkal",
"suffix": ""
}
],
"year": 1994,
"venue": "Computerlinguistik",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Johan Bos, Elsbeth Mastenbroek, Scott McGlashan, Sebastian Millies, and Manfred Pinkal. 1994. The Verbmobil Semantic Formalismus. Technical re- port, Computerlinguistik, Universit~it des Saar- landes, Saarbriicken.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Pollack, editors. 1990. Intentions in Communication",
"authors": [
{
"first": "Philip",
"middle": [
"R"
],
"last": "Cohen",
"suffix": ""
},
{
"first": "Jerry",
"middle": [],
"last": "Morgan",
"suffix": ""
},
{
"first": "Martha",
"middle": [
"E"
],
"last": "",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Philip R. Cohen, Jerry Morgan, and Martha E. Pol- lack, editors. 1990. Intentions in Communication. MIT Press, Cambridge, MA.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Communicating with Multiple Agents",
"authors": [
{
"first": "Elizabeth",
"middle": [
"A"
],
"last": "Hinkelman",
"suffix": ""
},
{
"first": "Stephen",
"middle": [
"P"
],
"last": "Spackman",
"suffix": ""
}
],
"year": 1994,
"venue": "Proceedings of the 15th International Conference on Computational Linguistics (COLING 94), August 5-9",
"volume": "2",
"issue": "",
"pages": "1191--1197",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Elizabeth A. Hinkelman and Stephen P. Spackman. 1994. Communicating with Multiple Agents. In Proceedings of the 15th International Conference on Computational Linguistics (COLING 94), Au- gust 5-9, 1994, Kyoto, Japan, volume 2, pages 1191-1197.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Dialogue Acts in Verbmobil",
"authors": [
{
"first": "Susanne",
"middle": [],
"last": "Jekat",
"suffix": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": "Elisabeth",
"middle": [],
"last": "Maier",
"suffix": ""
},
{
"first": "Ilona",
"middle": [],
"last": "Maleck",
"suffix": ""
},
{
"first": "Marion",
"middle": [],
"last": "Mast",
"suffix": ""
},
{
"first": "J. Joachim",
"middle": [],
"last": "Quantz",
"suffix": ""
}
],
"year": 1995,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Susanne Jekat, Alexandra Klein, Elisabeth Maier, Ilona Maleck, Marion Mast, and J. Joachim Quantz. 1995. Dialogue Acts in Verbmobil. Verb- mobil Report Nr. 65, Universit~it Hamburg, DFKI Saarbriicken, Universit~it Erlangen, TU Berlin.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Self-Organized Language Modeling for Speech Recognition",
"authors": [
{
"first": "Fred",
"middle": [],
"last": "Jellinek",
"suffix": ""
}
],
"year": 1990,
"venue": "Readings in Speech Recognition",
"volume": "",
"issue": "",
"pages": "450--506",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Fred Jellinek. 1990. Self-Organized Language Mod- eling for Speech Recognition. In A. Waibel and K.-F. Lee, editors, Readings in Speech Recogni- tion, pages 450-506. Morgan Kaufmann.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Verbmobil. A Translation System for Faceto-Face Dialog",
"authors": [
{
"first": "Martin",
"middle": [],
"last": "Kay",
"suffix": ""
},
{
"first": "Jean",
"middle": [
"Mark"
],
"last": "Gawron",
"suffix": ""
},
{
"first": "Peter",
"middle": [],
"last": "Norvig",
"suffix": ""
}
],
"year": 1994,
"venue": "CSLI Lecture Notes",
"volume": "33",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Martin Kay, Jean Mark Gawron, and Peter Norvig. 1994. Verbmobil. A Translation System for Face- to-Face Dialog. Chicago University Press. CSLI Lecture Notes, Vol. 33.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Keyword Classification Trees for Speech Understanding Systems",
"authors": [
{
"first": "Roland",
"middle": [],
"last": "Kuhn",
"suffix": ""
}
],
"year": 1993,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Roland Kuhn. 1993. Keyword Classification Trees for Speech Understanding Systems. Ph.D. thesis, School of Computer Science, McGill University, Montreal.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Dialogmodellierung in VERBMOBIL -Pestlegung der Sprechhandlungen fiir den Demonstrator",
"authors": [
{
"first": "Elisabeth",
"middle": [],
"last": "Maier",
"suffix": ""
},
{
"first": "Scott",
"middle": [],
"last": "Mcglashan",
"suffix": ""
}
],
"year": 1994,
"venue": "Progress and Prospects of Speech Research and Technology",
"volume": "1",
"issue": "",
"pages": "270--273",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Elisabeth Maier and Scott McGlashan. 1994. Se- mantic and Dialogue Processing in the VERB- MOBIL Spoken Dialogue Translation System. In Heinrich Niemann, Renato de Mori, and Ger- hard Hanrieder, editors, Progress and Prospects of Speech Research and Technology, volume 1, pages 270-273, Miinchen. Elisabeth Maier. 1994. Dialogmodellierung in VERBMOBIL -Pestlegung der Sprechhandlun- gen fiir den Demonstrator. Technical Report Verbmobil Memo Nr. 31, DFKI Saarbriicken.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Heinrich Niemann, and Elmar NSth. 1992. The Dialogue Modul of the Speech Recognition and Dialog System EVAR",
"authors": [
{
"first": "Marion",
"middle": [],
"last": "Mast",
"suffix": ""
},
{
"first": "Ralf",
"middle": [],
"last": "Kompe",
"suffix": ""
},
{
"first": "Franz",
"middle": [],
"last": "Kummert",
"suffix": ""
}
],
"year": null,
"venue": "Proceedings of International Conference on Spoken Language Processing (ICSLP'92)",
"volume": "2",
"issue": "",
"pages": "1573--1576",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marion Mast, Ralf Kompe, Franz Kummert, Hein- rich Niemann, and Elmar NSth. 1992. The Di- alogue Modul of the Speech Recognition and Di- alog System EVAR. In Proceedings of Interna- tional Conference on Spoken Language Processing (ICSLP'92), volume 2, pages 1573-1576.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "SchliisselwSrter zur Detektion yon Diskontinuit~iten und Sprechhandlungen",
"authors": [
{
"first": "Marion",
"middle": [],
"last": "Mast",
"suffix": ""
}
],
"year": 1995,
"venue": "",
"volume": "57",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marion Mast. 1995. SchliisselwSrter zur Detek- tion yon Diskontinuit~iten und Sprechhandlun- gen. Technical Report Verbmobil Memo Nr. 57, Friedrich-Alexander-Universit~it, Erlangen- Niirnberg.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Planning Multisentential English Text Using Communicative Acts",
"authors": [
{
"first": "T",
"middle": [],
"last": "Mark",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Maybury",
"suffix": ""
}
],
"year": 1991,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mark T. Maybury. 1991. Planning Multisen- tential English Text Using Communicative Acts. Ph.D. thesis, University of Cambridge, Camb- dridge, GB.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Participating in Explanatory Dialogues",
"authors": [
{
"first": "Johanna",
"middle": [
"Moore"
],
"last": "",
"suffix": ""
}
],
"year": 1994,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Johanna Moore. 1994. Participating in Explanatory Dialogues. The MIT Press.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "An experimental statistical dialogue model to predict the Speech Act Type of the next utterance",
"authors": [
{
"first": "Masaaki",
"middle": [],
"last": "Nagata",
"suffix": ""
},
{
"first": "Tsuyoshi",
"middle": [],
"last": "Morimoto",
"suffix": ""
}
],
"year": 1993,
"venue": "Proceedings of the International Symposium on Spoken Dialogue (ISSD-93)",
"volume": "",
"issue": "",
"pages": "83--86",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Masaaki Nagata and Tsuyoshi Morimoto. 1993. An experimental statistical dialogue model to predict the Speech Act Type of the next utterance. In Proceedings of the International Symposium on Spoken Dialogue (ISSD-93), pages 83-86, Waseda University, Tokyo, Japan.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Linguistic Modelling in the Context of Oral Dialogue",
"authors": [
{
"first": "Gerhard",
"middle": [],
"last": "Th",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Niedermair",
"suffix": ""
}
],
"year": 1992,
"venue": "Proceedings of International Conference on Spoken Language Processing (ICSLP'92}",
"volume": "1",
"issue": "",
"pages": "635--638",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gerhard Th. Niedermair. 1992. Linguistic Mod- elling in the Context of Oral Dialogue. In Pro- ceedings of International Conference on Spoken Language Processing (ICSLP'92}, volume 1, pages 635-638, Banff, Canada.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Some Experiments in Speech Act Prediction",
"authors": [
{
"first": "Norbert",
"middle": [],
"last": "Reithinger",
"suffix": ""
}
],
"year": 1995,
"venue": "AAAI 95 Spring Symposium on Empirical Methods in Discourse Interpretation and Generation",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Norbert Reithinger. 1995. Some Experiments in Speech Act Prediction. In AAAI 95 Spring Sym- posium on Empirical Methods in Discourse Inter- pretation and Generation, Stanford University.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Speech Acts",
"authors": [
{
"first": "John",
"middle": [
"R"
],
"last": "Searle",
"suffix": ""
}
],
"year": 1969,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "John R. Searle. 1969. Speech Acts. Cambridge: University Press.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Getting Serious about Parsing Plans: a Grammatical Analysis of Plan Recognition",
"authors": [
{
"first": "Marc",
"middle": [],
"last": "Vilain",
"suffix": ""
}
],
"year": 1990,
"venue": "Proceedings of AAAI-90",
"volume": "",
"issue": "",
"pages": "190--197",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marc Vilain. 1990. Getting Serious about Parsing Plans: a Grammatical Analysis of Plan Recogni- tion. In Proceedings of AAAI-90, pages 190-197.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Verbmobil-Translation of Pa~e-to-Pace Dialogs",
"authors": [
{
"first": "Wolfgang",
"middle": [],
"last": "Wahlster",
"suffix": ""
}
],
"year": 1993,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Wolfgang Wahlster. 1993. Verbmobil-Translation of Pa~e-to-Pace Dialogs. Technical report, German Research Centre for Artificial Intelligence (DFKI).",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"num": null,
"text": "Figure 1: A dialogue model for the description of appointment scheduling dialogs",
"uris": null,
"type_str": "figure"
},
"FIGREF2": {
"num": null,
"text": "fmwl_2_01: der Termin den wir neulich abgesprochen haben am zehnten an dem Samstag (MOTIVATE) (the date we recently agreed upon, the lOth that Saturday)",
"uris": null,
"type_str": "figure"
},
"FIGREF5": {
"num": null,
"text": "Example of statistical repair",
"uris": null,
"type_str": "figure"
},
"TABREF1": {
"html": null,
"num": null,
"text": "). ) from our corpus are used as training data, including deviations. TS1 and TS2 use the same 81 German dialogues as test data. The difference between the two experiments is that in TS1 only dialogue acts of the main dialogue network are processed during the test, i.e. the deviation acts of the test dialogues are not processed. As can be seen --and as could be expected --the prediction rate drops heavily when unforseeable deviations occur. TS3 shows the prediction rates, when all currently available annotated dialogues (with 7197 dialogue acts) from the corpus are processed, including deviations.",
"content": "<table><tr><td>I Pred. I TS1 1 44,24% 37.47 % 40.28% TS2 TS3 2 66,47 % 56.50% 59.62% 3 81,46% 69.52% 71.93% Figure 2: Predictions and hit rates In all experiments 41 German dialogues (with 2472 dialogue acts16 w m w M m</td><td>$ |</td><td>Io |</td><td>I$ |</td><td>|</td><td>!</td><td>!</td><td>|</td><td>i</td><td>!</td></tr></table>",
"type_str": "table"
}
}
}
} |