File size: 70,735 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 | {
"paper_id": "P02-1048",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T09:31:14.204215Z"
},
"title": "MATCH: An Architecture for Multimodal Dialogue Systems",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Johnston",
"suffix": "",
"affiliation": {},
"email": "johnston@research.att.com"
},
{
"first": "Srinivas",
"middle": [],
"last": "Bangalore",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gunaranjan",
"middle": [],
"last": "Vasireddy",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Amanda",
"middle": [],
"last": "Stent",
"suffix": "",
"affiliation": {},
"email": "stent@cs.sunysb.edu"
},
{
"first": "Patrick",
"middle": [],
"last": "Ehlen",
"suffix": "",
"affiliation": {},
"email": "ehlen@research.att.com"
},
{
"first": "Marilyn",
"middle": [],
"last": "Walker",
"suffix": "",
"affiliation": {},
"email": "walker@research.att.com"
},
{
"first": "Steve",
"middle": [],
"last": "Whittaker",
"suffix": "",
"affiliation": {},
"email": "stevew@research.att.com"
},
{
"first": "Preetam",
"middle": [],
"last": "Maloor",
"suffix": "",
"affiliation": {},
"email": "pmaloor@research.att.com"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Mobile interfaces need to allow the user and system to adapt their choice of communication modes according to user preferences, the task at hand, and the physical and social environment. We describe a multimodal application architecture which combines finite-state multimodal language processing, a speech-act based multimodal dialogue manager, dynamic multimodal output generation, and user-tailored text planning to enable rapid prototyping of multimodal interfaces with flexible input and adaptive output. Our testbed application MATCH (Multimodal Access To City Help) provides a mobile multimodal speech-pen interface to restaurant and subway information for New York City.",
"pdf_parse": {
"paper_id": "P02-1048",
"_pdf_hash": "",
"abstract": [
{
"text": "Mobile interfaces need to allow the user and system to adapt their choice of communication modes according to user preferences, the task at hand, and the physical and social environment. We describe a multimodal application architecture which combines finite-state multimodal language processing, a speech-act based multimodal dialogue manager, dynamic multimodal output generation, and user-tailored text planning to enable rapid prototyping of multimodal interfaces with flexible input and adaptive output. Our testbed application MATCH (Multimodal Access To City Help) provides a mobile multimodal speech-pen interface to restaurant and subway information for New York City.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "In urban environments tourists and residents alike need access to a complex and constantly changing body of information regarding restaurants, theatre schedules, transportation topology and timetables. This information is most valuable if it can be delivered effectively while mobile, since places close and plans change. Mobile information access devices (PDAs, tablet PCs, next-generation phones) offer limited screen real estate and no keyboard or mouse, making complex graphical interfaces cumbersome. Multimodal interfaces can address this problem by enabling speech and pen input and output combining speech and graphics (See (Andr\u00e9, 2002) for a detailed overview of previous work on multimodal input and output). Since mobile devices are used in different physical and social environments, for different tasks, by different users, they need to be both flexible in input and adaptive in output. Users need to be able to provide input in whichever mode or combination of modes is most appropriate, and system output should be dynamically tailored so that it is maximally effective given the situation and the user's preferences.",
"cite_spans": [
{
"start": 632,
"end": 645,
"text": "(Andr\u00e9, 2002)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Mobile Information Access",
"sec_num": "1"
},
{
"text": "We present our testbed multimodal application MATCH (Multimodal Access To City Help) and the general purpose multimodal architecture underlying it, that: is designed for highly mobile applications; enables flexible multimodal input; and provides flexible user-tailored multimodal output. Highly mobile MATCH is a working city guide and navigation system that currently enables mobile users to access restaurant and subway information for New York City (NYC). MATCH runs standalone on a Fujitsu pen computer (Figure 1 ), and can also run in client-server mode across a wireless network.",
"cite_spans": [],
"ref_spans": [
{
"start": 507,
"end": 516,
"text": "(Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Multimodal Mobile Information Access",
"sec_num": "1"
},
{
"text": "Users interact with a graphical interface displaying restaurant listings and a dynamic map showing locations and street information. They are free to provide input using speech, by drawing on the display with a stylus, or by using synchronous multimodal combinations of the two modes. For example, a user might ask to see cheap Italian restaurants in Chelsea by saying show cheap italian restaurants in chelsea, by circling an area on the map and saying show cheap italian restaurants in this neighborhood; or, in a noisy or public environment, by circling an area and writing cheap and italian ( Figure 2) . The system will then zoom to the appropriate map location and show the locations of restaurants on the map. Users can ask for information about restaurants, such as phone numbers, addresses, and reviews. For example, a user might circle three restaurants as in Figure 3 and say phone numbers for these three restaurants (or write phone). Users can also manipulate the map interface directly. For example, a user might say show upper west side or circle an area and write zoom. Flexible multimodal output MATCH provides flexible, synchronized multimodal generation and can take initiative to engage in information-seeking subdialogues. If a user circles the three restaurants in Figure 3 and writes phone, the system responds with a graphical callout on the display, synchronized with a text-to-speech (TTS) prompt of the phone number, for each restaurant in turn ( Figure 4 ). The system also provides subway directions. If the user says How do I get to this place? and circles one of the restaurants displayed on the map, the system will ask Where do you want to go from? The user can then respond with speech (e.g., 25th Street and 3rd Avenue), with pen by writing (e.g., 25th St & 3rd Ave), or multimodally ( e.g, from here with a circle gesture indicating location). The system then calculates the optimal subway route and dynamically generates a multimodal presentation of instructions. It starts by zooming in on the first station and then gradually zooms out, graphically presenting each stage of the route along with a series of synchronized TTS prompts. Figure 5 shows the final display of a subway route heading downtown on the 6 train and transferring to the L train Brooklyn bound. User-tailored generation MATCH can also provide a user-tailored summary, comparison, or recommendation for an arbitrary set of restaurants, using a quantitative model of user preferences (Walker et al., 2002) . The system will only discuss restaurants that rank highly according to the user's dining preferences, and will only describe attributes of those restaurants the user considers important. This permits concise, targeted system responses. For example, the user could say compare these restaurants and circle a large set of restaurants ( Figure 6 ). If the user considers inexpensiveness and food quality to be the most important attributes of a restaurant, the system response might be:",
"cite_spans": [
{
"start": 2490,
"end": 2511,
"text": "(Walker et al., 2002)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [
{
"start": 597,
"end": 606,
"text": "Figure 2)",
"ref_id": "FIGREF1"
},
{
"start": 870,
"end": 878,
"text": "Figure 3",
"ref_id": "FIGREF2"
},
{
"start": 1287,
"end": 1295,
"text": "Figure 3",
"ref_id": "FIGREF2"
},
{
"start": 1474,
"end": 1482,
"text": "Figure 4",
"ref_id": "FIGREF3"
},
{
"start": 2172,
"end": 2180,
"text": "Figure 5",
"ref_id": "FIGREF4"
},
{
"start": 2848,
"end": 2856,
"text": "Figure 6",
"ref_id": "FIGREF5"
}
],
"eq_spans": [],
"section": "Flexible multimodal input",
"sec_num": null
},
{
"text": "Compare-A: Among the selected restaurants, the following offer exceptional overall value. Uguale's price is 33 dollars. It has excellent food quality and good decor. Da Andrea's price is 28 dollars. It has very good food quality and good decor. John's Pizzeria's price is 20 dollars. It has very good food quality and mediocre decor. MCUBE is a Java-based facilitator which enables agents to pass messages either to single agents or groups of agents. It serves a similar function to systems such as OAA (Martin et al., 1999) , the use of KQML for messaging in Allen et al (2000) , and the Communicator hub (Seneff et al., 1998) . Agents may reside either on the client device or elsewhere on the network and can be implemented in multiple different languages. MCUBE messages are encoded in XML, providing a general mechanism for message parsing and facilitating logging.",
"cite_spans": [
{
"start": 503,
"end": 524,
"text": "(Martin et al., 1999)",
"ref_id": "BIBREF8"
},
{
"start": 560,
"end": 578,
"text": "Allen et al (2000)",
"ref_id": "BIBREF1"
},
{
"start": 606,
"end": 627,
"text": "(Seneff et al., 1998)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Flexible multimodal input",
"sec_num": null
},
{
"text": "Multimodal User Interface Users interact with the system through the Multimodal UI, which is browser-based and runs in Internet Explorer. This greatly facilitates rapid prototyping, authoring, and reuse of the system for different applications since anything that can appear on a webpage (dynamic HTML, ActiveX controls, etc.) can be used in the visual component of a multimodal user interface. A TCP/IP control enables communication with MCUBE.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Flexible multimodal input",
"sec_num": null
},
{
"text": "MATCH uses a control that provides a dynamic pan-able, zoomable map display. The control has ink handling capability. This enables both pen-based interaction (on the map) and normal GUI interaction (on the rest of the page) without requiring the user to overtly switch 'modes'. When the user draws on the map their ink is captured and any objects potentially selected, such as currently displayed restaurants, are identified. The electronic ink is broken into a lattice of strokes and sent to the gesture recognition and handwriting recognition components which enrich this stroke lattice with possible classifications of strokes and stroke combinations. The UI then translates this stroke lattice into an ink meaning lattice representing all of the possible interpretations of the user's ink and sends it to MMFST.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Flexible multimodal input",
"sec_num": null
},
{
"text": "In order to provide spoken input the user must tap a click-to-speak button on the Multimodal UI. We found that in an application such as MATCH which provides extensive unimodal pen-based interaction, it is preferable to use click-to-speak rather than pento-speak or open-mike. With pen-to-speak, spurious speech results received in noisy environments can disrupt unimodal pen commands.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Flexible multimodal input",
"sec_num": null
},
{
"text": "The Multimodal UI also provides graphical output capabilities and performs synchronization of multimodal output. For example, it synchronizes the display actions and TTS prompts in the answer to the route query mentioned in Section 1.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Flexible multimodal input",
"sec_num": null
},
{
"text": "Speech Recognition MATCH uses AT&T's Watson speech recognition engine. A speech manager running on the device gathers audio and communicates with a recognition server running either on the device or on the network. The recognition server provides word lattice output which is passed to MMFST.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Flexible multimodal input",
"sec_num": null
},
{
"text": "Gesture and handwriting recognition agents provide possible classifications of electronic ink for the UI. Recognitions are performed both on individual strokes and combinations of strokes in the input ink lattice. The handwriting recognizer supports a vocabulary of 285 words, including attributes of restaurants (e.g. 'chinese','cheap') and zones and points of interest (e.g. 'soho','empire','state','building'). The gesture recognizer recognizes a set of 10 basic gestures, including lines, arrows, areas, points, and question marks. It uses a variant of Rubine's classic template-based gesture recognition algorithm (Rubine, 1991) trained on a corpus of sample gestures. In addition to classi-fying gestures the gesture recognition agent also extracts features such as the base and head of arrows. Combinations of this basic set of gestures and handwritten words provide a rich visual vocabulary for multimodal and pen-based commands.",
"cite_spans": [
{
"start": 619,
"end": 633,
"text": "(Rubine, 1991)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Gesture and handwriting recognition",
"sec_num": null
},
{
"text": "Gestures are represented in the ink meaning lattice as symbol complexes of the following form: G FORM MEANING (NUMBER TYPE) SEM. FORM indicates the physical form of the gesture and has values such as area, point, line, arrow. MEANING indicates the meaning of that form; for example an area can be either a loc(ation) or a sel(ection). NUMBER and TYPE indicate the number of entities in a selection (1,2,3, many) and their type (rest(aurant), theatre). SEM is a place holder for the specific content of the gesture, such as the points that make up an area or the identifiers of objects in a selection.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gesture and handwriting recognition",
"sec_num": null
},
{
"text": "When multiple selection gestures are present an aggregation technique (Johnston and Bangalore, 2001 ) is employed to overcome the problems with deictic plurals and numerals described in Johnston (2000) . Aggregation augments the ink meaning lattice with aggregate gestures that result from combining adjacent selection gestures. This allows a deictic expression like these three restaurants to combine with two area gestures, one which selects one restaurant and the other two, as long as their sum is three. For example, if the user makes two area gestures, one around a single restaurant and the other around two restaurants (Figure 3 ), the resulting ink meaning lattice will be as in Figure 8 . The first gesture (node numbers 0-7) is either a reference to a location (loc.) (0-3,7) or a reference to a restaurant (sel.) (0-2,4-7). The second (nodes 7-13,16) is either a reference to a location (7-10,16) or to a set of two restaurants (7-9,11-13,16). The aggregation process applies to the two adjacent selections and adds a selection of three restaurants (0-2,4,14-16). If the user says show chinese restaurants in this neighborhood and this neighborhood, the path containing the two locations (0-3,7-10,16) will be taken when this lattice is combined with speech in MMFST. If the user says tell me about this place and these places, then the path with the adjacent selections is taken (0-2,4-9,11-13,16). If the speech is tell me about these or phone numbers for these three restaurants then the aggregate path (0-2,4,14-16) will be chosen.",
"cite_spans": [
{
"start": 70,
"end": 99,
"text": "(Johnston and Bangalore, 2001",
"ref_id": "BIBREF5"
},
{
"start": 186,
"end": 201,
"text": "Johnston (2000)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [
{
"start": 627,
"end": 636,
"text": "(Figure 3",
"ref_id": "FIGREF2"
},
{
"start": 688,
"end": 696,
"text": "Figure 8",
"ref_id": null
}
],
"eq_spans": [],
"section": "Gesture and handwriting recognition",
"sec_num": null
},
{
"text": "MMFST receives the speech lattice (from the Speech Manager) and the ink meaning lattice (from the UI) and builds a multimodal meaning lattice which captures the potential joint interpretations of the speech and ink in-puts. MMFST is able to provide rapid response times by making unimodal timeouts conditional on activity in the other input mode. MMFST is notified when the user has hit the click-to-speak button, when a speech result arrives, and whether or not the user is inking on the display. When a speech lattice arrives, if inking is in progress MMFST waits for the ink meaning lattice, otherwise it applies a short timeout (1 sec.) and treats the speech as unimodal. When an ink meaning lattice arrives, if the user has tapped click-to-speak MMFST waits for the speech lattice to arrive, otherwise it applies a short timeout (1 sec.) and treats the ink as unimodal.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Integrator (MMFST)",
"sec_num": null
},
{
"text": "MMFST uses the finite-state approach to multimodal integration and understanding proposed by Johnston and Bangalore (2000) . Possibilities for multimodal integration and understanding are captured in a three tape device in which the first tape represents the speech stream (words), the second the ink stream (gesture symbols) and the third their combined meaning (meaning symbols). In essence, this device takes the speech and ink meaning lattices as inputs, consumes them using the first two tapes, and writes out a multimodal meaning lattice using the third tape. The three tape finite-state device is simulated using two transducers: G:W which is used to align speech and ink and G W:M which takes a composite alphabet of speech and gesture symbols as input and outputs meaning. The ink meaning lattice G and speech lattice W are composed with G:W and the result is factored into an FSA G W which is composed with G W:M to derive the meaning lattice M.",
"cite_spans": [
{
"start": 93,
"end": 122,
"text": "Johnston and Bangalore (2000)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Integrator (MMFST)",
"sec_num": null
},
{
"text": "In order to capture multimodal integration using finite-state methods, it is necessary to abstract over specific aspects of gestural content (Johnston and Bangalore, 2000) . For example, all possible sequences of coordinates that could occur in an area gesture cannot be encoded in the finite-state device. We employ the approach proposed in (Johnston and Bangalore, 2001 ) in which the ink meaning lattice is converted to a transducer I:G, where G are gesture symbols (including SEM) and I contains both gesture symbols and the specific contents. I and G differ only in cases where the gesture symbol on G is SEM, in which case the corresponding I symbol is the specific interpretation. After multimodal integration a projection G:M is taken from the result G W:M machine and composed with the original I:G in order to reincorporate the specific contents that were left out of the finite-state process (I:G \u00d3 G:M = I:M).",
"cite_spans": [
{
"start": 141,
"end": 171,
"text": "(Johnston and Bangalore, 2000)",
"ref_id": "BIBREF4"
},
{
"start": 342,
"end": 371,
"text": "(Johnston and Bangalore, 2001",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Integrator (MMFST)",
"sec_num": null
},
{
"text": "The multimodal finite-state transducers used at runtime are compiled from a declarative multimodal context-free grammar which captures the structure Figure 8 : Ink Meaning Lattice and interpretation of multimodal and unimodal commands, approximated where necessary using standard approximation techniques (Nederhof, 1997) . This grammar captures not just multimodal integration patterns but also the parsing of speech and gesture, and the assignment of meaning. In Figure 9 we present a small simplified fragment capable of handling MATCH commands such as phone numbers for these three restaurants. A multimodal CFG differs from a normal CFG in that the terminals are triples: W:G:M, where W is the speech stream (words), G the ink stream (gesture symbols) and M the meaning stream (meaning symbols). An XML representation for meaning is used to facilate parsing and logging by other system components. The meaning tape symbols concatenate to form coherent XML expressions. The epsilon symbol (eps) indicates that a stream is empty in a given terminal.",
"cite_spans": [
{
"start": 305,
"end": 321,
"text": "(Nederhof, 1997)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [
{
"start": 149,
"end": 157,
"text": "Figure 8",
"ref_id": null
},
{
"start": 465,
"end": 473,
"text": "Figure 9",
"ref_id": "FIGREF8"
}
],
"eq_spans": [],
"section": "Multimodal Integrator (MMFST)",
"sec_num": null
},
{
"text": "When the user says phone numbers for these three restaurants and circles two groups of restaurants ( Figure 3) . The gesture lattice (Figure 8 ) is turned into a transducer I:G with the same symbol on each side except for the SEM arcs which are split. For example, path 15-16 SEM ([id1,id2,id3] ) becomes [id1,id2,id3]:SEM. After G and the speech W are integrated using G:W and G W:M. The G path in the result is used to re-establish the connection between SEM symbols and their specific contents /phone /cmd . This is passed to the multimodal dialog manager (MDM) and from there to the Multimodal UI resulting in a display like Figure 4 with coordinated TTS output. Since the speech input is a lattice and there is also potential for ambiguity in the multimodal grammar, the output from MMFST to MDM is an N-best list of potential multimodal interpretations.",
"cite_spans": [
{
"start": 280,
"end": 294,
"text": "([id1,id2,id3]",
"ref_id": null
}
],
"ref_spans": [
{
"start": 101,
"end": 110,
"text": "Figure 3)",
"ref_id": "FIGREF2"
},
{
"start": 133,
"end": 142,
"text": "(Figure 8",
"ref_id": null
},
{
"start": 629,
"end": 637,
"text": "Figure 4",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "Multimodal Integrator (MMFST)",
"sec_num": null
},
{
"text": "The MDM is based on previous work on speech-act based models of dialog (Stent et al., 1999; Rich and Sidner, 1998) . It uses a Java-based toolkit for writing dialog managers that is similar in philosophy to TrindiKit (Larsson et al., 1999 processes that operate on a shared state. The state includes system and user intentions and beliefs, a dialog history and focus space, and information about the speaker, the domain and the available modalities. The processes include interpretation, update, selection and generation processes. The interpretation process takes as input an N-best list of possible multimodal interpretations for a user input from MMFST. It rescores them according to a set of rules that encode the most likely next speech act given the current dialogue context, and picks the most likely interpretation from the result. The update process updates the dialogue context according to the system's interpretation of user input. It augments the dialogue history, focus space, models of user and system beliefs, and model of user intentions. It also alters the list of current modalities to reflect those most recently used by the user.",
"cite_spans": [
{
"start": 71,
"end": 91,
"text": "(Stent et al., 1999;",
"ref_id": "BIBREF14"
},
{
"start": 92,
"end": 114,
"text": "Rich and Sidner, 1998)",
"ref_id": "BIBREF11"
},
{
"start": 217,
"end": 238,
"text": "(Larsson et al., 1999",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Dialog Manager (MDM)",
"sec_num": null
},
{
"text": "The selection process determines the system's next move(s). In the case of a command, request or question, it first checks that the input is fully specified (using the domain ontology, which contains information about required and optional roles for different types of actions); if it is not, then the system's next move is to take the initiative and start an informationgathering subdialogue. If the input is fully specified, the system's next move is to perform the command or answer the question; to do this, MDM communicates with the UI. Since MDM is aware of the current set of preferred modalities, it can provide feedback and responses tailored to the user's modality preferences.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Dialog Manager (MDM)",
"sec_num": null
},
{
"text": "The generation process performs template-based generation for simple responses and updates the system's model of the user's intentions after generation. The text planner is used for more complex genera-tion, such as the generation of comparisons.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Dialog Manager (MDM)",
"sec_num": null
},
{
"text": "In the route query example in Section 1, MDM first receives a route query in which only the destination is specified How do I get to this place? In the selection phase it consults the domain model and determines that a source is also required for a route. It adds a request to query the user for the source to the system's next moves. This move is selected and the generation process selects a prompt and sends it to the TTS component. The system asks Where do you want to go from? If the user says or writes 25th Street and 3rd Avenue then MMFST will assign this input two possible interpretations. Either this is a request to zoom the display to the specified location or it is an assertion of a location. Since the MDM dialogue state indicates that it is waiting for an answer of the type location, MDM reranks the assertion as the most likely interpretation. A generalized overlay process (Alexandersson and Becker, 2001 ) is used to take the content of the assertion (a location) and add it into the partial route request. The result is determined to be complete. The UI resolves the location to map coordinates and passes on a route request to the SUBWAY component.",
"cite_spans": [
{
"start": 893,
"end": 924,
"text": "(Alexandersson and Becker, 2001",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Dialog Manager (MDM)",
"sec_num": null
},
{
"text": "We found this traditional speech-act based dialogue manager worked well for our multimodal interface. Critical in this was our use of a common semantic representation across spoken, gestured, and multimodal commands. The majority of the dialogue rules operate in a mode-independent fashion, giving users flexibility in the mode they choose to advance the dialogue. On the other hand, mode sensitivity is also important since user modality choice can be used to determine system mode choice for confirmation and other responses.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Dialog Manager (MDM)",
"sec_num": null
},
{
"text": "This component has access to an exhaustive database of the NYC subway system. When it receives a route request with the desired source and destination points from the Multimodal UI, it explores the search space of possible routes to identify the optimal one, using a cost function based on the number of transfers, overall number of stops, and the walking distance from the station at each end. It builds a list of actions required to reach the destination and passes them to the multimodal generator.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Subway Route Constraint Solver (SUBWAY)",
"sec_num": null
},
{
"text": "The multimodal generator processes action lists from SUBWAY and other components and assigns appropriate prompts for each action using a template-based generator. The result is a 'score' of prompts and actions which is passed to the Multimodal UI. The Mul-timodal UI plays this 'score' by coordinating changes in the interface with the corresponding TTS prompts. AT&T's Natural Voices TTS engine is used to provide the spoken output. When the UI receives a multimodal score, it builds a stack of graphical actions such as zooming the display to a particular location or putting up a graphical callout. It then sends the prompts to be rendered by the TTS server. As each prompt is synthesized the TTS server sends progress notifications to the Multimodal UI, which pops the next graphical action off the stack and executes it.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Multimodal Generator and Text-to-speech",
"sec_num": null
},
{
"text": "The text planner receives instructions from MDM for execution of 'compare', 'summarize', and 'recommend' commands. It employs a user model based on multiattribute decision theory (Carenini and Moore, 2001) . For example, in order to make a comparison between the set of restaurants shown in Figure 6 , the text planner first ranks the restaurants within the set according to the predicted ranking of the user model. Then, after selecting a small set of the highest ranked restaurants, it utilizes the user model to decide which restaurant attributes are important to mention. The resulting text plan is converted to text and sent to TTS (Walker et al., 2002) . A user model for someone who cares most highly about cost and secondly about food quality and decor leads to a system response such as that in Compare-A above. A user model for someone whose selections are driven by food quality and food type first, and cost only second, results in a system response such as that shown in Compare-B. Note that the restaurants selected for the user who is not concerned about cost includes two rather more expensive restaurants that are not selected by the text planner for the cost-oriented user.",
"cite_spans": [
{
"start": 179,
"end": 205,
"text": "(Carenini and Moore, 2001)",
"ref_id": "BIBREF3"
},
{
"start": 637,
"end": 658,
"text": "(Walker et al., 2002)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [
{
"start": 291,
"end": 299,
"text": "Figure 6",
"ref_id": "FIGREF5"
}
],
"eq_spans": [],
"section": "Text Planner and User Model",
"sec_num": null
},
{
"text": "Multimodal Logger User studies, multimodal data collection, and debugging were accomplished by instrumenting MATCH agents to send details of user inputs, system processes, and system outputs to a logger agent that maintains an XML log designed for multimodal interactions. Our critical objective was to collect data continually throughout system development, and to be able to do so in mobile settings. While this rendered the common practice of videotaping user interactions impractical, we still required high fidelity records of each multimodal interaction. To address this problem, MATCH logs the state of the UI and the user's ink, along with detailed data from other components. These components can in turn dynamically replay the user's speech and ink as they were originally received, and show how the system responded. The browser-and component-based architecture of the Multimodal UI facilitated its reuse in a Log Viewer that reads multimodal log files, replays interactions between the user and system, and allows analysis and annotation of the data. MATCH's logging system is similar in function to STAMP (Oviatt and Clow, 1998), but does not require multimodal interactions to be videotaped and allows rapid reconfiguration for different annotation tasks since it is browser-based. The ability of the system to log data standalone is important, since it enables testing and collection of multimodal data in realistic mobile environments without relying on external equipment.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Text Planner and User Model",
"sec_num": null
},
{
"text": "Our multimodal logging infrastructure enabled MATCH to undergo continual user trials and evaluation throughout development. Repeated evaluations with small numbers of test users both in the lab and in mobile settings ( Figure 10 ) have guided the design and iterative development of the system. This iterative development approach highlighted several important problems early on. For example, while it was originally thought that users would formulate queries and navigation commands primarily by specifying the names of New York neighborhoods, as in show italian restaurants in chelsea, early field test studies in the city revealed that the need for neighborhood names in the grammar was minimal compared to the need for cross-streets and points of interest; hence, cross-streets and a sizable list of landmarks were added. Other early tests revealed the need for easily accessible 'cancel' and 'undo' features that allow users to make quick corrections. We also discovered that speech recognition performance was initially hindered by placement of the 'click-tospeak' button and the recognition feedback box on the bottom-right side of the device, leading many users to speak 'to' this area, rather than toward the microphone on the upper left side. This placement also led left-handed users to block the microphone with their arms when they spoke. Moving the button and the feedback box to the top-left of the device resolved both of these problems.",
"cite_spans": [],
"ref_spans": [
{
"start": 219,
"end": 228,
"text": "Figure 10",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Experimental Evaluation",
"sec_num": "3"
},
{
"text": "After initial open-ended piloting trials, more structured user tests were conducted, for which we developed a set of six scenarios ordered by increasing level of difficulty. These required the test user to solve problems using the system. These scenarios were left as open-ended as possible to elicit natural responses. Test users received a brief tutorial that was intentionally vague and broad in scope so the users might overestimate the system's capabilities and approach problems in new ways. Figure 11 summarizes results from our last scenario-based data collection for a fixed version of the system. There were five subjects (2 male, 3 female) none of whom had been involved in system development. All of these five tests were conducted indoors in offices. There were an average of 12.75 multimodal exchanges (pairs of user input and system response) per scenario. The overall time per scenario varied from 1.5 to to 15 minutes. The longer completion times resulted from poor ASR performance for some of the users. Although ASR accuracy was low, overall task completion was high, suggesting that the multimodal aspects of the system helped users to complete tasks. Unimodal pen commands were recognized more successfully than spoken commands; however, only 19% of commands were pen only. In ongoing work, we are exploring strategies to increase users' adoption of more robust pen-based and multimodal input.",
"cite_spans": [],
"ref_spans": [
{
"start": 498,
"end": 507,
"text": "Figure 11",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Experimental Evaluation",
"sec_num": "3"
},
{
"text": "MATCH has a very fast system response time. Benchmarking a set of speech, pen, and multimodal commands, the average response time is approximately 3 seconds (time from end of user input to system response). We are currently completing a larger scale scenario-based evaluation and an independent evaluation of the functionality of the text planner.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Evaluation",
"sec_num": "3"
},
{
"text": "In addition to MATCH, the same multimodal architecture has been used for two other applications: a multimodal interface to corporate directory information and messaging and a medical application to assist emergency room doctors. The medical prototype is the most recent and demonstrates the utility of the architecture for rapid prototyping. System development took under two days for two people.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Evaluation",
"sec_num": "3"
},
{
"text": "The MATCH architecture enables rapid development of mobile multimodal applications. Combining finite-state multimodal integration with a speechact based dialogue manager enables users to interact flexibly using speech, pen, or synchronized combinations of the two depending on their preferences, task, and physical and social environment. The system responds by generating coordinated multimodal presentations adapted to the multimodal dialog context and user preferences. Features of the system such as the browser-based UI and general purpose finitestate architecture for multimodal integration facilitate rapid prototyping and reuse of the technology for different applications. The lattice-based finite-state approach to multimodal understanding enables both multimodal integration and dialogue context to compensate for recognition errors. The multimodal logging infrastructure has enabled an iterative process of pro-active evaluation and data collection throughout system development. Since we can replay multimodal interactions without video we have been able to log and annotate subjects both in the lab and in NYC throughout the development process and use their input to drive system development.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "4"
}
],
"back_matter": [
{
"text": "Thanks to AT&T Labs and DARPA (contract MDA972-99-3-0003) for financial support. We would also like to thank Noemie Elhadad, Candace Kamm, Elliot Pinson, Mazin Rahim, Owen Rambow, and Nika Smith.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Overlay as the basic operation for discourse processing in a multimodal dialogue system",
"authors": [
{
"first": "J",
"middle": [],
"last": "Alexandersson",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Becker",
"suffix": ""
}
],
"year": 2001,
"venue": "2nd IJCAI Workshop on Knowl",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Alexandersson and T. Becker. 2001. Overlay as the ba- sic operation for discourse processing in a multimodal dialogue system. In 2nd IJCAI Workshop on Knowl- edge and Reasoning in Practical Dialogue Systems.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "An architecture for a generic dialogue shell",
"authors": [
{
"first": "J",
"middle": [],
"last": "Allen",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Byron",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Dzikovska",
"suffix": ""
},
{
"first": "G",
"middle": [],
"last": "Ferguson",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Galescu",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Stent",
"suffix": ""
}
],
"year": 2000,
"venue": "JNLE",
"volume": "6",
"issue": "3",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Allen, D. Byron, M. Dzikovska, G. Ferguson, L. Galescu, and A. Stent. 2000. An architecture for a generic dialogue shell. JNLE, 6(3).",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Natural language in multimedia/multimodal systems",
"authors": [
{
"first": "E",
"middle": [],
"last": "Andr\u00e9",
"suffix": ""
}
],
"year": 2002,
"venue": "Handbook of Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "E. Andr\u00e9. 2002. Natural language in multime- dia/multimodal systems. In Ruslan Mitkov, editor, Handbook of Computational Linguistics. OUP.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "An empirical study of the influence of user tailoring on evaluative argument effectiveness",
"authors": [
{
"first": "G",
"middle": [],
"last": "Carenini",
"suffix": ""
},
{
"first": "J",
"middle": [
"D"
],
"last": "Moore",
"suffix": ""
}
],
"year": 2001,
"venue": "IJCAI",
"volume": "",
"issue": "",
"pages": "1307--1314",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G. Carenini and J. D. Moore. 2001. An empirical study of the influence of user tailoring on evaluative argument effectiveness. In IJCAI, pages 1307-1314.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Finite-state multimodal parsing and understanding",
"authors": [
{
"first": "M",
"middle": [],
"last": "Johnston",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Bangalore",
"suffix": ""
}
],
"year": 2000,
"venue": "Proceedings of COLING 2000",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Johnston and S. Bangalore. 2000. Finite-state mul- timodal parsing and understanding. In Proceedings of COLING 2000, Saarbr\u00fccken, Germany.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Finite-state methods for multimodal parsing and integration",
"authors": [
{
"first": "M",
"middle": [],
"last": "Johnston",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Bangalore",
"suffix": ""
}
],
"year": 2001,
"venue": "ESSLLI Workshop on Finite-state Methods",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Johnston and S. Bangalore. 2001. Finite-state meth- ods for multimodal parsing and integration. In ESSLLI Workshop on Finite-state Methods, Helsinki, Finland.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Deixis and conjunction in multimodal systems",
"authors": [
{
"first": "M",
"middle": [],
"last": "Johnston",
"suffix": ""
}
],
"year": 2000,
"venue": "Proceedings of COLING 2000",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Johnston. 2000. Deixis and conjunction in mul- timodal systems. In Proceedings of COLING 2000, Saarbr\u00fccken, Germany.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "TrindiKit manual",
"authors": [
{
"first": "S",
"middle": [],
"last": "Larsson",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Bohlin",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Bos",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Traum",
"suffix": ""
}
],
"year": 1999,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Larsson, P. Bohlin, J. Bos, and D. Traum. 1999. TrindiKit manual. Technical report, TRINDI Deliver- able D2.2.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "The Open Agent Architecture: A framework for building distributed software systems",
"authors": [
{
"first": "D",
"middle": [],
"last": "Martin",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Cheyer",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Moran",
"suffix": ""
}
],
"year": 1999,
"venue": "Applied Artificial Intelligence",
"volume": "13",
"issue": "1-2",
"pages": "91--128",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Martin, A. Cheyer, and D. Moran. 1999. The Open Agent Architecture: A framework for building dis- tributed software systems. Applied Artificial Intelli- gence, 13(1-2):91-128.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Regular approximations of CFLs: A grammatical view",
"authors": [
{
"first": "M-J",
"middle": [],
"last": "Nederhof",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of the International Workshop on Parsing Technology",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M-J. Nederhof. 1997. Regular approximations of CFLs: A grammatical view. In Proceedings of the Interna- tional Workshop on Parsing Technology, Boston.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "An automated tool for analysis of multimodal system performance",
"authors": [
{
"first": "S",
"middle": [
"L"
],
"last": "Oviatt",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Clow",
"suffix": ""
}
],
"year": 1998,
"venue": "Proceedings of ICSLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. L. Oviatt and J. Clow. 1998. An automated tool for analysis of multimodal system performance. In Pro- ceedings of ICSLP.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "COLLAGEN: A collaboration manager for software interface agents. User Modeling and User-Adapted Interaction",
"authors": [
{
"first": "C",
"middle": [],
"last": "Rich",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Sidner",
"suffix": ""
}
],
"year": 1998,
"venue": "",
"volume": "8",
"issue": "",
"pages": "315--350",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. Rich and C. Sidner. 1998. COLLAGEN: A collabora- tion manager for software interface agents. User Mod- eling and User-Adapted Interaction, 8(3-4):315-350.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Specifying gestures by example. Computer graphics",
"authors": [
{
"first": "D",
"middle": [],
"last": "Rubine",
"suffix": ""
}
],
"year": 1991,
"venue": "",
"volume": "25",
"issue": "",
"pages": "329--337",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Rubine. 1991. Specifying gestures by example. Com- puter graphics, 25(4):329-337.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Galaxy-II: A reference architecture for conversational system development",
"authors": [
{
"first": "S",
"middle": [],
"last": "Seneff",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Hurley",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Lau",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Pao",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Schmid",
"suffix": ""
},
{
"first": "V",
"middle": [],
"last": "Zue",
"suffix": ""
}
],
"year": 1998,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Seneff, E. Hurley, R. Lau, C. Pao, P. Schmid, and V. Zue. 1998. Galaxy-II: A reference architecture for conversational system development. In ICSLP-98.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "The CommandTalk spoken dialogue system",
"authors": [
{
"first": "A",
"middle": [],
"last": "Stent",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Dowding",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Gawron",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Bratt",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Moore",
"suffix": ""
}
],
"year": 1999,
"venue": "Proceedings of ACL'99",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Stent, J. Dowding, J. Gawron, E. Bratt, and R. Moore. 1999. The CommandTalk spoken dialogue system. In Proceedings of ACL'99.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Speech-Plans: Generating evaluative responses in spoken dialogue",
"authors": [
{
"first": "M",
"middle": [
"A"
],
"last": "Walker",
"suffix": ""
},
{
"first": "S",
"middle": [
"J"
],
"last": "Whittaker",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Maloor",
"suffix": ""
},
{
"first": "J",
"middle": [
"D"
],
"last": "Moore",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Johnston",
"suffix": ""
},
{
"first": "G",
"middle": [],
"last": "Vasireddy",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of INLG-02",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. A. Walker, S. J. Whittaker, P. Maloor, J. D. Moore, M. Johnston, and G. Vasireddy. 2002. Speech-Plans: Generating evaluative responses in spoken dialogue. In In Proceedings of INLG-02.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "MATCH running on Fujitsu PDA"
},
"FIGREF1": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Unimodal pen command"
},
"FIGREF2": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Two area gestures"
},
"FIGREF3": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Phone query callouts"
},
"FIGREF4": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Multimodal subway route"
},
"FIGREF5": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Comparing a large set of restaurants2 Multimodal Application ArchitectureThe multimodal architecture supporting MATCH consists of a series of agents which communicate through a facilitator MCUBE(Figure 7)."
},
"FIGREF6": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Figure 7: Multimodal Architecture"
},
"FIGREF7": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "in I:G (I:G \u00d3 G:M = I:M). The meaning read off I:M is cmd phone restaurant [id1,id2,id3] /restaurant"
},
"FIGREF8": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Multimodal grammar fragment"
},
"FIGREF9": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Testing MATCH in NYC"
},
"FIGREF10": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "Figure 11: MATCH study"
}
}
}
} |