File size: 97,886 Bytes
2ea1065 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 |
{
"HDSA-Dialog--train--1": {
"original dialog id": "PMUL0195",
"dialog index": 1,
"original dialog info": {},
"log": [
{
"turn id": 1,
"user utterance": "hi i am looking to find a guesthouse to stay at and it does not need to have internet .",
"system response": "i have a listing for [value_count] in the [hotel_area] of town , is that okay ?",
"dialog history": "",
"original user side information": {
"user_orig": "hi i am looking to find a guesthouse to stay at and it does not need to have internet .",
"BS": {
"hotel": [
[
"type",
"guesthouse"
],
[
"internet",
"no"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[hotel_type]": "guesthouse",
"[hotel_internet]": "no",
"[hotel_pricerange]": "moderate",
"[hotel_address]": "63 milton road",
"[hotel_parking]": "no",
"[hotel_phone]": "1223311625",
"[hotel_postcode]": "cb41xa",
"[hotel_area]": "north",
"[hotel_stars]": "3",
"[hotel_name]": "alpha-milton guest house"
},
"act": {
"hotel-select-none": "none",
"hotel-inform-area": "north of town",
"hotel-inform-choice": "one"
},
"sys_orig": "i have a listing for one in the north of town , is that okay ?"
}
},
{
"turn id": 2,
"user utterance": "is that [value_count] star with a [hotel_pricerange] price ?",
"system response": "the alpha minton guest house sounds like it will be perfect for you . it s a [hotel_pricerange] -ly priced , [value_count] star guesthouse in the [hotel_area] . can i book a room for you ?",
"dialog history": "<USER> hi i am looking to find a guesthouse to stay at and it does not need to have internet . <SYSTEM> i have a listing for [value_count] in the [hotel_area] of town , is that okay ?",
"original user side information": {
"user_orig": "is that 3 star with a moderate price ?",
"BS": {
"hotel": [
[
"pricerange",
"moderate"
],
[
"type",
"guesthouse"
],
[
"internet",
"no"
],
[
"stars",
"3"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[hotel_type]": "guesthouse",
"[hotel_internet]": "no",
"[hotel_pricerange]": "moderate",
"[hotel_address]": "63 milton road",
"[hotel_parking]": "no",
"[hotel_phone]": "1223311625",
"[hotel_postcode]": "cb41xa",
"[hotel_area]": "north",
"[hotel_stars]": "3",
"[hotel_name]": "alpha-milton guest house"
},
"act": {
"hotel-recommend-name": "the alpha-minton guest house",
"hotel-recommend-type": "guesthouse",
"hotel-recommend-area": "north",
"booking-inform-none": "none",
"hotel-recommend-price": "moderately-priced",
"hotel-recommend-stars": "3"
},
"sys_orig": "the alpha-minton guest house sounds like it will be perfect for you . it 's a moderately-priced , 3-star guesthouse in the north . can i book a room for you ?"
}
},
{
"turn id": 3,
"user utterance": "please do , for [value_count] person , for [value_count] nights , starting [value_day] .",
"system response": "i have made a booking here is your information booking was successful . reference number is [hotel_reference] .",
"dialog history": "<USER> hi i am looking to find a guesthouse to stay at and it does not need to have internet . <SYSTEM> i have a listing for [value_count] in the [hotel_area] of town , is that okay ? <USER> is that [value_count] star with a [hotel_pricerange] price ? <SYSTEM> the alpha minton guest house sounds like it will be perfect for you . it s a [hotel_pricerange] -ly priced , [value_count] star guesthouse in the [hotel_area] . can i book a room for you ?",
"original user side information": {
"user_orig": "please do , for 1 person , for 5 nights , starting thursday .",
"BS": {
"hotel": [
[
"pricerange",
"moderate"
],
[
"type",
"guesthouse"
],
[
"internet",
"no"
],
[
"stars",
"3"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[hotel_type]": "guesthouse",
"[hotel_internet]": "no",
"[taxi_reference]": "dgghj53e",
"[train_reference]": "dgghj53e",
"[hotel_parking]": "no",
"[hotel_phone]": "1223311625",
"[hospital_reference]": "dgghj53e",
"[hotel_area]": "north",
"[bus_reference]": "dgghj53e",
"[hotel_postcode]": "cb41xa",
"[restaurant_reference]": "dgghj53e",
"[police_reference]": "dgghj53e",
"[hotel_name]": "alpha-milton guest house",
"[hotel_reference]": "dgghj53e",
"[attraction_reference]": "dgghj53e",
"[hotel_pricerange]": "moderate",
"[hotel_stars]": "3",
"[hotel_address]": "63 milton road"
},
"act": {
"booking-book-reference": "dgghj53e"
},
"sys_orig": "i have made a booking here is your information : booking was successful . reference number is : dgghj53e ."
}
},
{
"turn id": 4,
"user utterance": "thanks . can you help me find a place to eat also ? i would like some [restaurant_food] food , in the same price range as my hotel .",
"system response": "unfortunately there are no [restaurant_pricerange] -ly priced restaurant -s serving [restaurant_food] food on the [restaurant_area] side . would you like me to look in another part of town ?",
"dialog history": "<USER> hi i am looking to find a guesthouse to stay at and it does not need to have internet . <SYSTEM> i have a listing for [value_count] in the [hotel_area] of town , is that okay ? <USER> is that [value_count] star with a [hotel_pricerange] price ? <SYSTEM> the alpha minton guest house sounds like it will be perfect for you . it s a [hotel_pricerange] -ly priced , [value_count] star guesthouse in the [hotel_area] . can i book a room for you ? <USER> please do , for [value_count] person , for [value_count] nights , starting [value_day] . <SYSTEM> i have made a booking here is your information booking was successful . reference number is [hotel_reference] .",
"original user side information": {
"user_orig": "thanks . can you help me find a place to eat also ? i 'd like some british food , in the same price range as my hotel .",
"BS": {
"restaurant": [
[
"pricerange",
"moderate"
],
[
"food",
"british"
],
[
"area",
"north"
]
],
"hotel": [
[
"pricerange",
"moderate"
],
[
"type",
"guesthouse"
],
[
"internet",
"no"
],
[
"stars",
"3"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {
"[restaurant_area]": "centre",
"[restaurant_reference]": "xxxxxxxx",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "regent street city centre",
"[restaurant_phone]": "01223323737",
"[restaurant_name]": "pizza hut city centre",
"[restaurant_food]": "italian",
"[restaurant_pricerange]": "cheap",
"[restaurant_postcode]": "cb21ab"
},
"act": {
"restaurant-request-area": "?",
"restaurant-sorry-price": "moderately priced",
"restaurant-sorry-area": "north side",
"restaurant-sorry-food": "british"
},
"sys_orig": "unfortunately there are no moderately priced restaurants serving british food on the north side . would you like me to look in another part of town ?"
}
},
{
"turn id": 5,
"user utterance": "yes , please look in another part of town .",
"system response": "[restaurant_name] is in [restaurant_area] . phone number is [value_count] and address is [restaurant_address] . would you like to make a reservation ?",
"dialog history": "<USER> hi i am looking to find a guesthouse to stay at and it does not need to have internet . <SYSTEM> i have a listing for [value_count] in the [hotel_area] of town , is that okay ? <USER> is that [value_count] star with a [hotel_pricerange] price ? <SYSTEM> the alpha minton guest house sounds like it will be perfect for you . it s a [hotel_pricerange] -ly priced , [value_count] star guesthouse in the [hotel_area] . can i book a room for you ? <USER> please do , for [value_count] person , for [value_count] nights , starting [value_day] . <SYSTEM> i have made a booking here is your information booking was successful . reference number is [hotel_reference] . <USER> thanks . can you help me find a place to eat also ? i would like some [restaurant_food] food , in the same price range as my hotel . <SYSTEM> unfortunately there are no [restaurant_pricerange] -ly priced restaurant -s serving [restaurant_food] food on the [restaurant_area] side . would you like me to look in another part of town ?",
"original user side information": {
"user_orig": "yes , please look in another part of town .",
"BS": {
"restaurant": [
[
"pricerange",
"moderate"
],
[
"food",
"british"
]
],
"hotel": [
[
"pricerange",
"moderate"
],
[
"type",
"guesthouse"
],
[
"internet",
"no"
],
[
"stars",
"3"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[restaurant_area]": "centre",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "de vere university arms regent street city centre",
"[restaurant_phone]": "01223337766",
"[restaurant_food]": "british",
"[restaurant_name]": "restaurant one seven",
"[restaurant_pricerange]": "moderate",
"[restaurant_postcode]": "cb21ab"
},
"act": {
"restaurant-inform-phone": "01223365098",
"booking-inform-none": "none",
"restaurant-inform-address": "4 kings parade city centre",
"restaurant-recommend-area": "centre",
"restaurant-recommend-name": "the copper kettle"
},
"sys_orig": "the copper kettle is in centre . phone number is 01223365098 and address is 4 kings parade city centre . would you like to make a reservation ?"
}
},
{
"turn id": 6,
"user utterance": "yes please for [value_count] person at [value_time] on [value_day] .",
"system response": "you table is booked for [value_time] on [value_day] . your reference number is [restaurant_reference] . is that all ?",
"dialog history": "<USER> hi i am looking to find a guesthouse to stay at and it does not need to have internet . <SYSTEM> i have a listing for [value_count] in the [hotel_area] of town , is that okay ? <USER> is that [value_count] star with a [hotel_pricerange] price ? <SYSTEM> the alpha minton guest house sounds like it will be perfect for you . it s a [hotel_pricerange] -ly priced , [value_count] star guesthouse in the [hotel_area] . can i book a room for you ? <USER> please do , for [value_count] person , for [value_count] nights , starting [value_day] . <SYSTEM> i have made a booking here is your information booking was successful . reference number is [hotel_reference] . <USER> thanks . can you help me find a place to eat also ? i would like some [restaurant_food] food , in the same price range as my hotel . <SYSTEM> unfortunately there are no [restaurant_pricerange] -ly priced restaurant -s serving [restaurant_food] food on the [restaurant_area] side . would you like me to look in another part of town ? <USER> yes , please look in another part of town . <SYSTEM> [restaurant_name] is in [restaurant_area] . phone number is [value_count] and address is [restaurant_address] . would you like to make a reservation ?",
"original user side information": {
"user_orig": "yes please for one person at 17:45 on thursday .",
"BS": {
"restaurant": [
[
"pricerange",
"moderate"
],
[
"food",
"british"
]
],
"hotel": [
[
"pricerange",
"moderate"
],
[
"type",
"guesthouse"
],
[
"internet",
"no"
],
[
"stars",
"3"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[restaurant_area]": "centre",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "de vere university arms regent street city centre",
"[taxi_reference]": "bb26wx3r",
"[train_reference]": "bb26wx3r",
"[restaurant_phone]": "01223337766",
"[hospital_reference]": "bb26wx3r",
"[restaurant_name]": "restaurant one seven",
"[bus_reference]": "bb26wx3r",
"[restaurant_postcode]": "cb21ab",
"[restaurant_reference]": "bb26wx3r",
"[restaurant_food]": "british",
"[police_reference]": "bb26wx3r",
"[hotel_reference]": "bb26wx3r",
"[attraction_reference]": "bb26wx3r",
"[restaurant_pricerange]": "moderate"
},
"act": {
"booking-book-reference": "bb26wx3r",
"booking-book-day": "thursday",
"booking-book-time": "17:45",
"general-none-none": "none"
},
"sys_orig": "you table is booked for 17:45 on thursday . your reference number is bb26wx3r . is that all ?"
}
},
{
"turn id": 7,
"user utterance": "no , can you also help me book a taxi ?",
"system response": "when you would like to leave or arrive by ? what s your departure and destination ?",
"dialog history": "<USER> hi i am looking to find a guesthouse to stay at and it does not need to have internet . <SYSTEM> i have a listing for [value_count] in the [hotel_area] of town , is that okay ? <USER> is that [value_count] star with a [hotel_pricerange] price ? <SYSTEM> the alpha minton guest house sounds like it will be perfect for you . it s a [hotel_pricerange] -ly priced , [value_count] star guesthouse in the [hotel_area] . can i book a room for you ? <USER> please do , for [value_count] person , for [value_count] nights , starting [value_day] . <SYSTEM> i have made a booking here is your information booking was successful . reference number is [hotel_reference] . <USER> thanks . can you help me find a place to eat also ? i would like some [restaurant_food] food , in the same price range as my hotel . <SYSTEM> unfortunately there are no [restaurant_pricerange] -ly priced restaurant -s serving [restaurant_food] food on the [restaurant_area] side . would you like me to look in another part of town ? <USER> yes , please look in another part of town . <SYSTEM> [restaurant_name] is in [restaurant_area] . phone number is [value_count] and address is [restaurant_address] . would you like to make a reservation ? <USER> yes please for [value_count] person at [value_time] on [value_day] . <SYSTEM> you table is booked for [value_time] on [value_day] . your reference number is [restaurant_reference] . is that all ?",
"original user side information": {
"user_orig": "no , can you also help me book a taxi ?",
"BS": {
"restaurant": [
[
"pricerange",
"moderate"
],
[
"food",
"british"
]
],
"hotel": [
[
"pricerange",
"moderate"
],
[
"type",
"guesthouse"
],
[
"internet",
"no"
],
[
"stars",
"3"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[restaurant_area]": "centre",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "de vere university arms regent street city centre",
"[restaurant_phone]": "01223337766",
"[restaurant_food]": "british",
"[restaurant_name]": "restaurant one seven",
"[restaurant_pricerange]": "moderate",
"[restaurant_postcode]": "cb21ab"
},
"act": {
"taxi-request-leaveat": "?",
"taxi-request-departure": "?",
"taxi-request-arriveby": "?",
"taxi-request-destination": "?"
},
"sys_orig": "when you would like to leave or arrive by ? what 's your departure/destination ?"
}
},
{
"turn id": 8,
"user utterance": "i would like to arrive by [value_time] to the [value_count] kings parade . pick us up at the alpha minon guesthouse .",
"system response": "okay great ! your car will be a [taxi_type] and the contact number is [taxi_phone] . do you need help with anything else ?",
"dialog history": "<USER> hi i am looking to find a guesthouse to stay at and it does not need to have internet . <SYSTEM> i have a listing for [value_count] in the [hotel_area] of town , is that okay ? <USER> is that [value_count] star with a [hotel_pricerange] price ? <SYSTEM> the alpha minton guest house sounds like it will be perfect for you . it s a [hotel_pricerange] -ly priced , [value_count] star guesthouse in the [hotel_area] . can i book a room for you ? <USER> please do , for [value_count] person , for [value_count] nights , starting [value_day] . <SYSTEM> i have made a booking here is your information booking was successful . reference number is [hotel_reference] . <USER> thanks . can you help me find a place to eat also ? i would like some [restaurant_food] food , in the same price range as my hotel . <SYSTEM> unfortunately there are no [restaurant_pricerange] -ly priced restaurant -s serving [restaurant_food] food on the [restaurant_area] side . would you like me to look in another part of town ? <USER> yes , please look in another part of town . <SYSTEM> [restaurant_name] is in [restaurant_area] . phone number is [value_count] and address is [restaurant_address] . would you like to make a reservation ? <USER> yes please for [value_count] person at [value_time] on [value_day] . <SYSTEM> you table is booked for [value_time] on [value_day] . your reference number is [restaurant_reference] . is that all ? <USER> no , can you also help me book a taxi ? <SYSTEM> when you would like to leave or arrive by ? what s your departure and destination ?",
"original user side information": {
"user_orig": "i would like to arrive by 17:45 to the 4 kings parade . pick us up at the alpha-minon guesthouse .",
"BS": {
"restaurant": [
[
"pricerange",
"moderate"
],
[
"food",
"british"
]
],
"taxi": [
[
"departure",
"alpha-milton guest house"
],
[
"destination",
"the copper kettle"
],
[
"arriveBy",
"17:45"
]
],
"hotel": [
[
"pricerange",
"moderate"
],
[
"type",
"guesthouse"
],
[
"internet",
"no"
],
[
"stars",
"3"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {},
"act": {
"general-none-none": "none",
"taxi-inform-phone": "07675976580",
"taxi-inform-type": "black bmw"
},
"sys_orig": "okay great ! your car will be a black bmw and the contact number is 07675976580. do you need help with anything else ?"
}
},
{
"turn id": 9,
"user utterance": "nope . that s all . thank you . bye now",
"system response": "have a nice day .",
"dialog history": "<USER> hi i am looking to find a guesthouse to stay at and it does not need to have internet . <SYSTEM> i have a listing for [value_count] in the [hotel_area] of town , is that okay ? <USER> is that [value_count] star with a [hotel_pricerange] price ? <SYSTEM> the alpha minton guest house sounds like it will be perfect for you . it s a [hotel_pricerange] -ly priced , [value_count] star guesthouse in the [hotel_area] . can i book a room for you ? <USER> please do , for [value_count] person , for [value_count] nights , starting [value_day] . <SYSTEM> i have made a booking here is your information booking was successful . reference number is [hotel_reference] . <USER> thanks . can you help me find a place to eat also ? i would like some [restaurant_food] food , in the same price range as my hotel . <SYSTEM> unfortunately there are no [restaurant_pricerange] -ly priced restaurant -s serving [restaurant_food] food on the [restaurant_area] side . would you like me to look in another part of town ? <USER> yes , please look in another part of town . <SYSTEM> [restaurant_name] is in [restaurant_area] . phone number is [value_count] and address is [restaurant_address] . would you like to make a reservation ? <USER> yes please for [value_count] person at [value_time] on [value_day] . <SYSTEM> you table is booked for [value_time] on [value_day] . your reference number is [restaurant_reference] . is that all ? <USER> no , can you also help me book a taxi ? <SYSTEM> when you would like to leave or arrive by ? what s your departure and destination ? <USER> i would like to arrive by [value_time] to the [value_count] kings parade . pick us up at the alpha minon guesthouse . <SYSTEM> okay great ! your car will be a [taxi_type] and the contact number is [taxi_phone] . do you need help with anything else ?",
"original user side information": {
"user_orig": "nope . that 's all . thank you . bye now",
"BS": {
"restaurant": [
[
"pricerange",
"moderate"
],
[
"food",
"british"
]
],
"taxi": [
[
"departure",
"alpha-milton guest house"
],
[
"destination",
"the copper kettle"
],
[
"arriveBy",
"17:45"
]
],
"hotel": [
[
"pricerange",
"moderate"
],
[
"type",
"guesthouse"
],
[
"internet",
"no"
],
[
"stars",
"3"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {},
"act": {
"general-none-none": "none"
},
"sys_orig": "have a nice day ."
}
}
],
"external knowledge non-flat": {
"metadata": {},
"slots and values": {},
"intents": {}
},
"external knowledge": "",
"dst knowledge": "",
"intent knowledge": "",
"prompt": []
},
"HDSA-Dialog--train--2": {
"original dialog id": "PMUL4478",
"dialog index": 2,
"original dialog info": {},
"log": [
{
"turn id": 1,
"user utterance": "i am traveling to [value_place] and looking forward to try local restaurant -s .",
"system response": "okay , any type in mind ?",
"dialog history": "",
"original user side information": {
"user_orig": "i am traveling to cambridge and looking forward to try local restaurants .",
"BS": {}
},
"original system side information": {
"KB": 0,
"source": {
"[restaurant_area]": "centre",
"[restaurant_reference]": "xxxxxxxx",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "regent street city centre",
"[restaurant_phone]": "01223323737",
"[restaurant_name]": "pizza hut city centre",
"[restaurant_food]": "italian",
"[restaurant_pricerange]": "cheap",
"[restaurant_postcode]": "cb21ab"
},
"act": {
"restaurant-request-food": "?"
},
"sys_orig": "okay , any type in mind ?"
}
},
{
"turn id": 2,
"user utterance": "the train i am looking for should depart from [value_place] and be leaving after [value_time] . can you help ?",
"system response": "okay . you mentioned finding a local restaurant , initially . would you like me to search for [value_count] ? if so , what kind of cuisine ?",
"dialog history": "<USER> i am traveling to [value_place] and looking forward to try local restaurant -s . <SYSTEM> okay , any type in mind ?",
"original user side information": {
"user_orig": "the train i 'm looking for should depart from stevenage and be leaving after 16:45. can you help ?",
"BS": {}
},
"original system side information": {
"KB": 0,
"source": {
"[restaurant_area]": "centre",
"[restaurant_reference]": "xxxxxxxx",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "regent street city centre",
"[restaurant_phone]": "01223323737",
"[restaurant_name]": "pizza hut city centre",
"[restaurant_food]": "italian",
"[restaurant_pricerange]": "cheap",
"[restaurant_postcode]": "cb21ab"
},
"act": {
"general-none-none": "none",
"restaurant-request-food": "?"
},
"sys_orig": "okay . you mentioned finding a local restaurant , initially . would you like me to search for one ? if so , what kind of cuisine ?"
}
},
{
"turn id": 3,
"user utterance": "i am looking for something local . what do you recommend ?",
"system response": "it depends on what your price range is .",
"dialog history": "<USER> i am traveling to [value_place] and looking forward to try local restaurant -s . <SYSTEM> okay , any type in mind ? <USER> the train i am looking for should depart from [value_place] and be leaving after [value_time] . can you help ? <SYSTEM> okay . you mentioned finding a local restaurant , initially . would you like me to search for [value_count] ? if so , what kind of cuisine ?",
"original user side information": {
"user_orig": "i 'm looking for something local . what do you recommend ?",
"BS": {}
},
"original system side information": {
"KB": 0,
"source": {
"[restaurant_area]": "centre",
"[restaurant_reference]": "xxxxxxxx",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "regent street city centre",
"[restaurant_phone]": "01223323737",
"[restaurant_name]": "pizza hut city centre",
"[restaurant_food]": "italian",
"[restaurant_pricerange]": "cheap",
"[restaurant_postcode]": "cb21ab"
},
"act": {
"restaurant-request-price": "?"
},
"sys_orig": "it depends on what your price range is ."
}
},
{
"turn id": 4,
"user utterance": "actually i am craving singaporean food , price is no object . i would also like something in the [restaurant_area] area .",
"system response": "unfortunately , there is not a singaporean restaurant in the [restaurant_area] of town . any other preferences ?",
"dialog history": "<USER> i am traveling to [value_place] and looking forward to try local restaurant -s . <SYSTEM> okay , any type in mind ? <USER> the train i am looking for should depart from [value_place] and be leaving after [value_time] . can you help ? <SYSTEM> okay . you mentioned finding a local restaurant , initially . would you like me to search for [value_count] ? if so , what kind of cuisine ? <USER> i am looking for something local . what do you recommend ? <SYSTEM> it depends on what your price range is .",
"original user side information": {
"user_orig": "actually i am craving singaporean food , price is no object . i would also like something in the centre area .",
"BS": {
"restaurant": [
[
"food",
"singaporean"
],
[
"area",
"centre"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {
"[restaurant_area]": "centre",
"[restaurant_reference]": "xxxxxxxx",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "regent street city centre",
"[restaurant_phone]": "01223323737",
"[restaurant_name]": "pizza hut city centre",
"[restaurant_food]": "italian",
"[restaurant_pricerange]": "cheap",
"[restaurant_postcode]": "cb21ab"
},
"act": {
"general-none-none": "none",
"restaurant-sorry-area": "centre of town",
"restaurant-sorry-food": "singaporean"
},
"sys_orig": "unfortunately , there is not a singaporean restaurant in the centre of town . any other preferences ?"
}
},
{
"turn id": 5,
"user utterance": "do you have any asian [restaurant_pricerange] restaurant -s ?",
"system response": "yes , there s a place called [restaurant_name] .",
"dialog history": "<USER> i am traveling to [value_place] and looking forward to try local restaurant -s . <SYSTEM> okay , any type in mind ? <USER> the train i am looking for should depart from [value_place] and be leaving after [value_time] . can you help ? <SYSTEM> okay . you mentioned finding a local restaurant , initially . would you like me to search for [value_count] ? if so , what kind of cuisine ? <USER> i am looking for something local . what do you recommend ? <SYSTEM> it depends on what your price range is . <USER> actually i am craving singaporean food , price is no object . i would also like something in the [restaurant_area] area . <SYSTEM> unfortunately , there is not a singaporean restaurant in the [restaurant_area] of town . any other preferences ?",
"original user side information": {
"user_orig": "do you have any asian expensive restaurants ?",
"BS": {
"restaurant": [
[
"pricerange",
"expensive"
],
[
"food",
"asian oriental"
],
[
"area",
"centre"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[restaurant_area]": "centre",
"[restaurant_reference]": "xxxxxxxx",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "52 mill road city centre",
"[restaurant_phone]": "01223311911",
"[restaurant_name]": "kymmoy",
"[restaurant_food]": "asian oriental",
"[restaurant_pricerange]": "expensive",
"[restaurant_postcode]": "cb12as"
},
"act": {
"restaurant-inform-name": "kymmoy"
},
"sys_orig": "yes , there 's a place called kymmoy ."
}
},
{
"turn id": 6,
"user utterance": "thank you so much for your information .",
"system response": "enjoy your stay in [value_place] !",
"dialog history": "<USER> i am traveling to [value_place] and looking forward to try local restaurant -s . <SYSTEM> okay , any type in mind ? <USER> the train i am looking for should depart from [value_place] and be leaving after [value_time] . can you help ? <SYSTEM> okay . you mentioned finding a local restaurant , initially . would you like me to search for [value_count] ? if so , what kind of cuisine ? <USER> i am looking for something local . what do you recommend ? <SYSTEM> it depends on what your price range is . <USER> actually i am craving singaporean food , price is no object . i would also like something in the [restaurant_area] area . <SYSTEM> unfortunately , there is not a singaporean restaurant in the [restaurant_area] of town . any other preferences ? <USER> do you have any asian [restaurant_pricerange] restaurant -s ? <SYSTEM> yes , there s a place called [restaurant_name] .",
"original user side information": {
"user_orig": "thank you so much for your information .",
"BS": {
"restaurant": [
[
"pricerange",
"expensive"
],
[
"food",
"asian oriental"
],
[
"area",
"centre"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[restaurant_area]": "centre",
"[restaurant_type]": "restaurant",
"[restaurant_address]": "52 mill road city centre",
"[restaurant_phone]": "01223311911",
"[restaurant_food]": "asian oriental",
"[restaurant_name]": "kymmoy",
"[restaurant_pricerange]": "expensive",
"[restaurant_postcode]": "cb12as"
},
"act": {
"general-none-none": "none"
},
"sys_orig": "enjoy your stay in cambridge !"
}
}
],
"external knowledge non-flat": {
"metadata": {},
"slots and values": {},
"intents": {}
},
"external knowledge": "",
"dst knowledge": "",
"intent knowledge": "",
"prompt": []
},
"HDSA-Dialog--train--3": {
"original dialog id": "MUL1196",
"dialog index": 3,
"original dialog info": {},
"log": [
{
"turn id": 1,
"user utterance": "i am looking for museums to visit in town . what are my options ?",
"system response": "there are [value_count] museums in the city . do you have a particular area of town that you are interested in ?",
"dialog history": "",
"original user side information": {
"user_orig": "i 'm looking for museums to visit in town . what are my options ?",
"BS": {
"attraction": [
[
"type",
"museum"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[attraction_address]": "98 king street",
"[attraction_postcode]": "cb11ln",
"[attraction_area]": "centre",
"[attraction_phone]": "1223314960",
"[attraction_openhours]": "?",
"[attraction_name]": "broughton house gallery",
"[attraction_pricerange]": "free",
"[attraction_entrance fee]": "free",
"[attraction_type]": "museum"
},
"act": {
"attraction-request-area": "?",
"attraction-inform-type": "museums",
"attraction-inform-choice": "23"
},
"sys_orig": "there are 23 museums in the city . do you have a particular area of town that you 're interested in ?"
}
},
{
"turn id": 2,
"user utterance": "i have no idea . could you suggest [value_count] that sounds interesting ?",
"system response": "i recommend the museum of archaeology and anthropology in the [attraction_area] of town . how does that sound ?",
"dialog history": "<USER> i am looking for museums to visit in town . what are my options ? <SYSTEM> there are [value_count] museums in the city . do you have a particular area of town that you are interested in ?",
"original user side information": {
"user_orig": "i have no idea . could you suggest one that sounds interesting ?",
"BS": {
"attraction": [
[
"type",
"museum"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[attraction_address]": "98 king street",
"[attraction_postcode]": "cb11ln",
"[attraction_area]": "centre",
"[attraction_phone]": "1223314960",
"[attraction_openhours]": "?",
"[attraction_name]": "broughton house gallery",
"[attraction_pricerange]": "free",
"[attraction_entrance fee]": "free",
"[attraction_type]": "museum"
},
"act": {
"attraction-recommend-name": "museum of archaeology and anthropology",
"general-none-none": "none",
"attraction-recommend-area": "centre of town"
},
"sys_orig": "i recommend the museum of archaeology and anthropology in the centre of town . how does that sound ?"
}
},
{
"turn id": 3,
"user utterance": "can i get the phone number and address please . i also need a hotel with free parking .",
"system response": "the phone number is [attraction_phone] and the address is [attraction_address] . in what area would you like the hotel to be in ?",
"dialog history": "<USER> i am looking for museums to visit in town . what are my options ? <SYSTEM> there are [value_count] museums in the city . do you have a particular area of town that you are interested in ? <USER> i have no idea . could you suggest [value_count] that sounds interesting ? <SYSTEM> i recommend the museum of archaeology and anthropology in the [attraction_area] of town . how does that sound ?",
"original user side information": {
"user_orig": "can i get the phone number and address please . i also need a hotel with free parking .",
"BS": {
"attraction": [
[
"type",
"museum"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[attraction_address]": "98 king street",
"[attraction_postcode]": "cb11ln",
"[attraction_area]": "centre",
"[attraction_phone]": "1223314960",
"[attraction_openhours]": "?",
"[attraction_name]": "broughton house gallery",
"[attraction_pricerange]": "free",
"[attraction_entrance fee]": "free",
"[attraction_type]": "museum"
},
"act": {
"attraction-inform-address": "downing street",
"hotel-request-area": "?",
"attraction-inform-phone": "01223333516"
},
"sys_orig": "the phone number is 01223333516 and the address is university of cambridge , downing street . in what area would you like the hotel to be in ?"
}
},
{
"turn id": 4,
"user utterance": "near the museum if possible . i am looking for a guesthouse with free parking .",
"system response": "i found the [hotel_name] that meets your requirement -s . would you like me to book your stay ?",
"dialog history": "<USER> i am looking for museums to visit in town . what are my options ? <SYSTEM> there are [value_count] museums in the city . do you have a particular area of town that you are interested in ? <USER> i have no idea . could you suggest [value_count] that sounds interesting ? <SYSTEM> i recommend the museum of archaeology and anthropology in the [attraction_area] of town . how does that sound ? <USER> can i get the phone number and address please . i also need a hotel with free parking . <SYSTEM> the phone number is [attraction_phone] and the address is [attraction_address] . in what area would you like the hotel to be in ?",
"original user side information": {
"user_orig": "near the museum if possible . i 'm looking for a guesthouse with free parking .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"type",
"guesthouse"
],
[
"area",
"centre"
]
],
"attraction": [
[
"type",
"museum"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[hotel_name]": "alexander bed and breakfast",
"[hotel_internet]": "yes",
"[hotel_address]": "56 saint barnabas road",
"[hotel_reference]": "xxxxxxxx",
"[hotel_postcode]": "cb12de",
"[hotel_parking]": "yes",
"[hotel_phone]": "1223525725",
"[hotel_pricerange]": "cheap",
"[hotel_area]": "centre",
"[hotel_stars]": "4",
"[hotel_type]": "guesthouse"
},
"act": {
"booking-inform-none": "none",
"hotel-inform-name": "alexander bed and breakfast"
},
"sys_orig": "i found the alexander bed and breakfast that meets your requirements . would you like me to book your stay ?"
}
},
{
"turn id": 5,
"user utterance": "no , i am not ready to book quite yet . thanks for your help . bye .",
"system response": "you are welcome and i hope you enjoy your museum visit .",
"dialog history": "<USER> i am looking for museums to visit in town . what are my options ? <SYSTEM> there are [value_count] museums in the city . do you have a particular area of town that you are interested in ? <USER> i have no idea . could you suggest [value_count] that sounds interesting ? <SYSTEM> i recommend the museum of archaeology and anthropology in the [attraction_area] of town . how does that sound ? <USER> can i get the phone number and address please . i also need a hotel with free parking . <SYSTEM> the phone number is [attraction_phone] and the address is [attraction_address] . in what area would you like the hotel to be in ? <USER> near the museum if possible . i am looking for a guesthouse with free parking . <SYSTEM> i found the [hotel_name] that meets your requirement -s . would you like me to book your stay ?",
"original user side information": {
"user_orig": "no , i 'm not ready to book quite yet . thanks for your help . bye .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"type",
"guesthouse"
],
[
"area",
"centre"
]
],
"attraction": [
[
"type",
"museum"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[hotel_type]": "guesthouse",
"[hotel_internet]": "yes",
"[hotel_pricerange]": "cheap",
"[hotel_address]": "56 saint barnabas road",
"[hotel_parking]": "yes",
"[hotel_phone]": "1223525725",
"[hotel_postcode]": "cb12de",
"[hotel_area]": "centre",
"[hotel_stars]": "4",
"[hotel_name]": "alexander bed and breakfast"
},
"act": {
"general-none-none": "none"
},
"sys_orig": "you 're welcome and i hope you enjoy your museum visit ."
}
}
],
"external knowledge non-flat": {
"metadata": {},
"slots and values": {},
"intents": {}
},
"external knowledge": "",
"dst knowledge": "",
"intent knowledge": "",
"prompt": []
},
"HDSA-Dialog--train--4": {
"original dialog id": "SNG01471",
"dialog index": 4,
"original dialog info": {},
"log": [
{
"turn id": 1,
"user utterance": "hello , i am looking for a train heading to [train_destination] and i will be departing from [train_departure] .",
"system response": "the first train leaves on [train_day] at [train_leaveat] and arrives at [train_arriveby] . should i book it for you ?",
"dialog history": "",
"original user side information": {
"user_orig": "hello , i am looking for a train heading to cambridge and i will be departing from kings lynn .",
"BS": {
"train": [
[
"departure",
"kings lynn"
],
[
"destination",
"cambridge"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[train_arriveby]": "05:58",
"[train_duration]": "47 minutes",
"[train_reference]": "xxxxxxxx",
"[train_departure]": "cambridge",
"[train_price]": "9.80 pounds",
"[train_day]": "friday",
"[train_destination]": "kings lynn",
"[train_leaveat]": "05:11",
"[train_trainid]": "tr3112"
},
"act": {
"train-inform-day": "friday",
"booking-inform-none": "none",
"train-inform-leaveat": "05:11",
"train-inform-arriveby": "05:58"
},
"sys_orig": "the first train leaves on friday at 05:11 and arrives at 05:58. should i book it for you ?"
}
},
{
"turn id": 2,
"user utterance": "no , not at this time . thank you , goodbye .",
"system response": "thank you . enjoy your trip .",
"dialog history": "<USER> hello , i am looking for a train heading to [train_destination] and i will be departing from [train_departure] . <SYSTEM> the first train leaves on [train_day] at [train_leaveat] and arrives at [train_arriveby] . should i book it for you ?",
"original user side information": {
"user_orig": "no , not at this time . thank you , good bye .",
"BS": {
"train": [
[
"departure",
"kings lynn"
],
[
"destination",
"cambridge"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[train_destination]": "cambridge",
"[train_leaveat]": "05:11",
"[train_price]": "9.80 pounds",
"[train_departure]": "kings lynn",
"[train_day]": "monday",
"[train_arriveby]": "05:58",
"[train_duration]": "47 minutes",
"[train_trainid]": "tr4943"
},
"act": {
"general-none-none": "none"
},
"sys_orig": "thank you . enjoy your trip ."
}
}
],
"external knowledge non-flat": {
"metadata": {},
"slots and values": {},
"intents": {}
},
"external knowledge": "",
"dst knowledge": "",
"intent knowledge": "",
"prompt": []
},
"HDSA-Dialog--train--5": {
"original dialog id": "PMUL3490",
"dialog index": 5,
"original dialog info": {},
"log": [
{
"turn id": 1,
"user utterance": "i am looking for information . can you help me with a place to stay while i am in town ?",
"system response": "i can help you . which part of town ?",
"dialog history": "",
"original user side information": {
"user_orig": "i am looking for information . can you help me with a place to stay while i 'm in town ?",
"BS": {}
},
"original system side information": {
"KB": 0,
"source": {
"[hotel_name]": "a and b guest house",
"[hotel_internet]": "yes",
"[hotel_address]": "124 tenison road",
"[hotel_reference]": "xxxxxxxx",
"[hotel_postcode]": "cb12dp",
"[hotel_parking]": "no",
"[hotel_phone]": "1223315702",
"[hotel_pricerange]": "moderate",
"[hotel_area]": "east",
"[hotel_stars]": "4",
"[hotel_type]": "guesthouse"
},
"act": {
"hotel-request-area": "?"
},
"sys_orig": "i can help you . which part of town ?"
}
},
{
"turn id": 2,
"user utterance": "the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count]",
"system response": "okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ?",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ?",
"original user side information": {
"user_orig": "the north part of town is where i want to go and include free parking and should have a star of 4",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[hotel_name]": "acorn guest house",
"[hotel_internet]": "yes",
"[hotel_address]": "154 chesterton road",
"[hotel_reference]": "xxxxxxxx",
"[hotel_postcode]": "cb41da",
"[hotel_parking]": "yes",
"[hotel_phone]": "1223353888",
"[hotel_pricerange]": "moderate",
"[hotel_area]": "north",
"[hotel_stars]": "4",
"[hotel_type]": "guesthouse"
},
"act": {
"booking-inform-none": "none",
"hotel-inform-address": "154 chesterton road",
"hotel-inform-name": "acorn guest house"
},
"sys_orig": "okay , how about the acorn guest house ? it 's located on 154 chesterton road . would you like me to make a reservation ?"
}
},
{
"turn id": 3,
"user utterance": "that sounds perfect . i need a room for [value_count] people and [value_count] nights starting from [value_day] .",
"system response": "the booking was successful . you have a reservation for [value_count] people , staying [value_count] nights a [hotel_name] starting on [value_day] . your reference number is [hotel_reference] .",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ? <USER> the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count] <SYSTEM> okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ?",
"original user side information": {
"user_orig": "that sounds perfect . i need a room for 3 people and 4 nights starting from sunday .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[hotel_type]": "guesthouse",
"[hotel_internet]": "yes",
"[taxi_reference]": "z45i87ld",
"[train_reference]": "z45i87ld",
"[hotel_parking]": "yes",
"[hotel_phone]": "1223353888",
"[hospital_reference]": "z45i87ld",
"[hotel_area]": "north",
"[bus_reference]": "z45i87ld",
"[hotel_postcode]": "cb41da",
"[restaurant_reference]": "z45i87ld",
"[police_reference]": "z45i87ld",
"[hotel_name]": "acorn guest house",
"[hotel_reference]": "z45i87ld",
"[attraction_reference]": "z45i87ld",
"[hotel_pricerange]": "moderate",
"[hotel_stars]": "4",
"[hotel_address]": "154 chesterton road"
},
"act": {
"booking-book-name": "acorn guest house",
"booking-book-reference": "z45i87ld",
"booking-book-people": "3",
"booking-book-day": "sunday",
"booking-book-stay": "4"
},
"sys_orig": "the booking was successful . you have a reservation for 3 people , staying 4 nights a acorn guest house starting on sunday . your reference number is : z45i87ld ."
}
},
{
"turn id": 4,
"user utterance": "thank you ! i also need a swimming pool in the [attraction_area] area of [value_place] .",
"system response": "i would recommend [attraction_name] . would you like more information ?",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ? <USER> the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count] <SYSTEM> okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ? <USER> that sounds perfect . i need a room for [value_count] people and [value_count] nights starting from [value_day] . <SYSTEM> the booking was successful . you have a reservation for [value_count] people , staying [value_count] nights a [hotel_name] starting on [value_day] . your reference number is [hotel_reference] .",
"original user side information": {
"user_orig": "thank you ! i also need a swimming pool in the north area of cambridge .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
],
"attraction": [
[
"type",
"swimmingpool"
],
[
"area",
"north"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[attraction_address]": "between victoria road and the river",
"[attraction_reference]": "xxxxxxxx",
"[attraction_postcode]": "cb43px",
"[attraction_area]": "north",
"[attraction_phone]": "1223302579",
"[attraction_openhours]": "?",
"[attraction_name]": "jesus green outdoor pool",
"[attraction_pricerange]": "?",
"[attraction_entrance fee]": "?",
"[attraction_type]": "swimmingpool"
},
"act": {
"attraction-recommend-name": "jesus green outdoor pool",
"general-none-none": "none"
},
"sys_orig": "i 'd recommend jesus green outdoor pool . would you like more information ?"
}
},
{
"turn id": 5,
"user utterance": "can you please provide me with the address , postcode and phone number ?",
"system response": "sure ! the address is [attraction_address] , the postcode is [attraction_postcode] , and the phone number is [attraction_phone] .",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ? <USER> the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count] <SYSTEM> okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ? <USER> that sounds perfect . i need a room for [value_count] people and [value_count] nights starting from [value_day] . <SYSTEM> the booking was successful . you have a reservation for [value_count] people , staying [value_count] nights a [hotel_name] starting on [value_day] . your reference number is [hotel_reference] . <USER> thank you ! i also need a swimming pool in the [attraction_area] area of [value_place] . <SYSTEM> i would recommend [attraction_name] . would you like more information ?",
"original user side information": {
"user_orig": "can you please provide me with the address , postcode and phone number ?",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
],
"attraction": [
[
"type",
"swimmingpool"
],
[
"area",
"north"
]
]
}
},
"original system side information": {
"KB": 2,
"source": {
"[attraction_address]": "between victoria road and the river",
"[attraction_postcode]": "cb43px",
"[attraction_area]": "north",
"[attraction_phone]": "1223302579",
"[attraction_openhours]": "?",
"[attraction_name]": "jesus green outdoor pool",
"[attraction_pricerange]": "?",
"[attraction_entrance fee]": "?",
"[attraction_type]": "swimmingpool"
},
"act": {
"attraction-inform-address": "between victoria road and the river",
"attraction-inform-phone": "01223302579",
"attraction-inform-postcode": "cb43px"
},
"sys_orig": "sure ! the address is between victoria road and the river , the postcode is cb43px , and the phone number is 01223302579 ."
}
},
{
"turn id": 6,
"user utterance": "lastly a taxi from the hotel to the pool please .",
"system response": "do you have a arrival time in mind ?",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ? <USER> the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count] <SYSTEM> okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ? <USER> that sounds perfect . i need a room for [value_count] people and [value_count] nights starting from [value_day] . <SYSTEM> the booking was successful . you have a reservation for [value_count] people , staying [value_count] nights a [hotel_name] starting on [value_day] . your reference number is [hotel_reference] . <USER> thank you ! i also need a swimming pool in the [attraction_area] area of [value_place] . <SYSTEM> i would recommend [attraction_name] . would you like more information ? <USER> can you please provide me with the address , postcode and phone number ? <SYSTEM> sure ! the address is [attraction_address] , the postcode is [attraction_postcode] , and the phone number is [attraction_phone] .",
"original user side information": {
"user_orig": "lastly a taxi from the hotel to the pool please .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
],
"taxi": [
[
"departure",
"acorn guest house"
],
[
"destination",
"jesus green outdoor pool"
]
],
"attraction": [
[
"type",
"swimmingpool"
],
[
"area",
"north"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {},
"act": {
"taxi-request-arriveby": "?"
},
"sys_orig": "do you have a arrival time in mind ?"
}
},
{
"turn id": 7,
"user utterance": "i want to to leave the hotel by [value_time] .",
"system response": "when is your arrival time ?",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ? <USER> the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count] <SYSTEM> okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ? <USER> that sounds perfect . i need a room for [value_count] people and [value_count] nights starting from [value_day] . <SYSTEM> the booking was successful . you have a reservation for [value_count] people , staying [value_count] nights a [hotel_name] starting on [value_day] . your reference number is [hotel_reference] . <USER> thank you ! i also need a swimming pool in the [attraction_area] area of [value_place] . <SYSTEM> i would recommend [attraction_name] . would you like more information ? <USER> can you please provide me with the address , postcode and phone number ? <SYSTEM> sure ! the address is [attraction_address] , the postcode is [attraction_postcode] , and the phone number is [attraction_phone] . <USER> lastly a taxi from the hotel to the pool please . <SYSTEM> do you have a arrival time in mind ?",
"original user side information": {
"user_orig": "i want to to leave the hotel by 10:30 .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
],
"taxi": [
[
"departure",
"acorn guest house"
],
[
"destination",
"jesus green outdoor pool"
]
],
"attraction": [
[
"type",
"swimmingpool"
],
[
"area",
"north"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {},
"act": {
"taxi-request-arriveby": "?"
},
"sys_orig": "when is your arrival time ?"
}
},
{
"turn id": 8,
"user utterance": "my arrival time will be [value_time] .",
"system response": "your taxi have been booked for a [taxi_type] and its contact number is [taxi_phone] .",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ? <USER> the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count] <SYSTEM> okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ? <USER> that sounds perfect . i need a room for [value_count] people and [value_count] nights starting from [value_day] . <SYSTEM> the booking was successful . you have a reservation for [value_count] people , staying [value_count] nights a [hotel_name] starting on [value_day] . your reference number is [hotel_reference] . <USER> thank you ! i also need a swimming pool in the [attraction_area] area of [value_place] . <SYSTEM> i would recommend [attraction_name] . would you like more information ? <USER> can you please provide me with the address , postcode and phone number ? <SYSTEM> sure ! the address is [attraction_address] , the postcode is [attraction_postcode] , and the phone number is [attraction_phone] . <USER> lastly a taxi from the hotel to the pool please . <SYSTEM> do you have a arrival time in mind ? <USER> i want to to leave the hotel by [value_time] . <SYSTEM> when is your arrival time ?",
"original user side information": {
"user_orig": "my arrival time will be 17:00 .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
],
"taxi": [
[
"departure",
"acorn guest house"
],
[
"destination",
"jesus green outdoor pool"
],
[
"arriveBy",
"17:00"
]
],
"attraction": [
[
"type",
"swimmingpool"
],
[
"area",
"north"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {},
"act": {
"taxi-inform-phone": "07055228719",
"taxi-inform-type": "black volvo"
},
"sys_orig": "your taxi have been booked for a black volvo and its contact number is 07055228719 ."
}
},
{
"turn id": 9,
"user utterance": "thanks . that is all for today .",
"system response": "thanks for inquiring with us and have a great day",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ? <USER> the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count] <SYSTEM> okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ? <USER> that sounds perfect . i need a room for [value_count] people and [value_count] nights starting from [value_day] . <SYSTEM> the booking was successful . you have a reservation for [value_count] people , staying [value_count] nights a [hotel_name] starting on [value_day] . your reference number is [hotel_reference] . <USER> thank you ! i also need a swimming pool in the [attraction_area] area of [value_place] . <SYSTEM> i would recommend [attraction_name] . would you like more information ? <USER> can you please provide me with the address , postcode and phone number ? <SYSTEM> sure ! the address is [attraction_address] , the postcode is [attraction_postcode] , and the phone number is [attraction_phone] . <USER> lastly a taxi from the hotel to the pool please . <SYSTEM> do you have a arrival time in mind ? <USER> i want to to leave the hotel by [value_time] . <SYSTEM> when is your arrival time ? <USER> my arrival time will be [value_time] . <SYSTEM> your taxi have been booked for a [taxi_type] and its contact number is [taxi_phone] .",
"original user side information": {
"user_orig": "thanks . that is all for today .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
],
"taxi": [
[
"departure",
"acorn guest house"
],
[
"destination",
"jesus green outdoor pool"
],
[
"arriveBy",
"17:00"
]
],
"attraction": [
[
"type",
"swimmingpool"
],
[
"area",
"north"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {},
"act": {
"general-none-none": "none"
},
"sys_orig": "thanks for inquiring with us and have a great day"
}
},
{
"turn id": 10,
"user utterance": "thanks . i hope your day is good too .",
"system response": "it sure is . thanks .",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ? <USER> the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count] <SYSTEM> okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ? <USER> that sounds perfect . i need a room for [value_count] people and [value_count] nights starting from [value_day] . <SYSTEM> the booking was successful . you have a reservation for [value_count] people , staying [value_count] nights a [hotel_name] starting on [value_day] . your reference number is [hotel_reference] . <USER> thank you ! i also need a swimming pool in the [attraction_area] area of [value_place] . <SYSTEM> i would recommend [attraction_name] . would you like more information ? <USER> can you please provide me with the address , postcode and phone number ? <SYSTEM> sure ! the address is [attraction_address] , the postcode is [attraction_postcode] , and the phone number is [attraction_phone] . <USER> lastly a taxi from the hotel to the pool please . <SYSTEM> do you have a arrival time in mind ? <USER> i want to to leave the hotel by [value_time] . <SYSTEM> when is your arrival time ? <USER> my arrival time will be [value_time] . <SYSTEM> your taxi have been booked for a [taxi_type] and its contact number is [taxi_phone] . <USER> thanks . that is all for today . <SYSTEM> thanks for inquiring with us and have a great day",
"original user side information": {
"user_orig": "thanks . i hope your day is good too .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
],
"taxi": [
[
"departure",
"acorn guest house"
],
[
"destination",
"jesus green outdoor pool"
],
[
"arriveBy",
"17:00"
]
],
"attraction": [
[
"type",
"swimmingpool"
],
[
"area",
"north"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {},
"act": {
"general-none-none": "none"
},
"sys_orig": "it sure is . thanks ."
}
},
{
"turn id": 11,
"user utterance": "good . glad to hear it . you can end this conversation now . i do not need anything else .",
"system response": "thank you for using our service .",
"dialog history": "<USER> i am looking for information . can you help me with a place to stay while i am in town ? <SYSTEM> i can help you . which part of town ? <USER> the [hotel_area] part of town is where i want to go and include free parking and should have a star of [value_count] <SYSTEM> okay , how about the [hotel_name] ? it s located on [hotel_address] . would you like me to make a reservation ? <USER> that sounds perfect . i need a room for [value_count] people and [value_count] nights starting from [value_day] . <SYSTEM> the booking was successful . you have a reservation for [value_count] people , staying [value_count] nights a [hotel_name] starting on [value_day] . your reference number is [hotel_reference] . <USER> thank you ! i also need a swimming pool in the [attraction_area] area of [value_place] . <SYSTEM> i would recommend [attraction_name] . would you like more information ? <USER> can you please provide me with the address , postcode and phone number ? <SYSTEM> sure ! the address is [attraction_address] , the postcode is [attraction_postcode] , and the phone number is [attraction_phone] . <USER> lastly a taxi from the hotel to the pool please . <SYSTEM> do you have a arrival time in mind ? <USER> i want to to leave the hotel by [value_time] . <SYSTEM> when is your arrival time ? <USER> my arrival time will be [value_time] . <SYSTEM> your taxi have been booked for a [taxi_type] and its contact number is [taxi_phone] . <USER> thanks . that is all for today . <SYSTEM> thanks for inquiring with us and have a great day <USER> thanks . i hope your day is good too . <SYSTEM> it sure is . thanks .",
"original user side information": {
"user_orig": "good . glad to hear it . you can end this conversation now . i do n't need anything else .",
"BS": {
"hotel": [
[
"parking",
"yes"
],
[
"area",
"north"
],
[
"stars",
"4"
]
],
"taxi": [
[
"departure",
"acorn guest house"
],
[
"destination",
"jesus green outdoor pool"
],
[
"arriveBy",
"17:00"
]
],
"attraction": [
[
"type",
"swimmingpool"
],
[
"area",
"north"
]
]
}
},
"original system side information": {
"KB": 0,
"source": {},
"act": {
"general-none-none": "none"
},
"sys_orig": "thank you for using our service ."
}
}
],
"external knowledge non-flat": {
"metadata": {},
"slots and values": {},
"intents": {}
},
"external knowledge": "",
"dst knowledge": "",
"intent knowledge": "",
"prompt": []
}
} |