File size: 51,455 Bytes
7942019 6aa21a1 66df1ec 6aa21a1 7942019 bd42e77 7942019 |
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 |
---
annotations_creators:
- none
language_creators:
- unknown
language:
- zh
license:
- apache-2.0
multilinguality:
- unknown
pretty_name: CrossWOZ
size_categories:
- unknown
source_datasets:
- original
task_categories:
- dialog-response-generation
task_ids:
- unknown
---
# Dataset Card for GEM/CrossWOZ
## Dataset Description
- **Homepage:** https://github.com/thu-coai/CrossWOZ
- **Repository:** https://github.com/thu-coai/CrossWOZ
- **Paper:** https://aclanthology.org/2020.tacl-1.19
- **Leaderboard:** N/A
- **Point of Contact:** Qi Zhu
### Link to Main Data Card
You can find the main data card on the [GEM Website](https://gem-benchmark.com/data_cards/CrossWOZ).
### Dataset Summary
CrossWOZ is a Chinese multi-domain task-oriented dialogue dataset . It contains 6K dialogue sessions and 102K utterances for 5 domains, including hotel, restaurant, attraction, metro, and taxi. About 60{\%} of the dialogues have cross-domain user goals that favor inter-domain dependency and encourage natural transition across domains in conversation.
You can load the dataset via:
```
import datasets
data = datasets.load_dataset('GEM/CrossWOZ')
```
The data loader can be found [here](https://huggingface.co/datasets/GEM/CrossWOZ).
#### website
[Github](https://github.com/thu-coai/CrossWOZ)
#### paper
[ACL Anthology](https://aclanthology.org/2020.tacl-1.19)
#### authors
Qi Zhu, Kaili Huang, Zheng Zhang, Xiaoyan Zhu, and Minlie Huang from CoAI group, Tsinghua University
## Dataset Overview
### Where to find the Data and its Documentation
#### Webpage
<!-- info: What is the webpage for the dataset (if it exists)? -->
<!-- scope: telescope -->
[Github](https://github.com/thu-coai/CrossWOZ)
#### Download
<!-- info: What is the link to where the original dataset is hosted? -->
<!-- scope: telescope -->
[Github](https://github.com/thu-coai/CrossWOZ)
#### Paper
<!-- info: What is the link to the paper describing the dataset (open access preferred)? -->
<!-- scope: telescope -->
[ACL Anthology](https://aclanthology.org/2020.tacl-1.19)
#### BibTex
<!-- info: Provide the BibTex-formatted reference for the dataset. Please use the correct published version (ACL anthology, etc.) instead of google scholar created Bibtex. -->
<!-- scope: microscope -->
```
@article{zhu-etal-2020-crosswoz,
title = "{C}ross{WOZ}: A Large-Scale {C}hinese Cross-Domain Task-Oriented Dialogue Dataset",
author = "Zhu, Qi and
Huang, Kaili and
Zhang, Zheng and
Zhu, Xiaoyan and
Huang, Minlie",
journal = "Transactions of the Association for Computational Linguistics",
volume = "8",
year = "2020",
url = "https://aclanthology.org/2020.tacl-1.19",
doi = "10.1162/tacl_a_00314",
pages = "281--295",
abstract = "To advance multi-domain (cross-domain) dialogue modeling as well as alleviate the shortage of Chinese task-oriented datasets, we propose CrossWOZ, the first large-scale Chinese Cross-Domain Wizard-of-Oz task-oriented dataset. It contains 6K dialogue sessions and 102K utterances for 5 domains, including hotel, restaurant, attraction, metro, and taxi. Moreover, the corpus contains rich annotation of dialogue states and dialogue acts on both user and system sides. About 60{\%} of the dialogues have cross-domain user goals that favor inter-domain dependency and encourage natural transition across domains in conversation. We also provide a user simulator and several benchmark models for pipelined task-oriented dialogue systems, which will facilitate researchers to compare and evaluate their models on this corpus. The large size and rich annotation of CrossWOZ make it suitable to investigate a variety of tasks in cross-domain dialogue modeling, such as dialogue state tracking, policy learning, user simulation, etc.",
}
```
#### Contact Name
<!-- quick -->
<!-- info: If known, provide the name of at least one person the reader can contact for questions about the dataset. -->
<!-- scope: periscope -->
Qi Zhu
#### Contact Email
<!-- info: If known, provide the email of at least one person the reader can contact for questions about the dataset. -->
<!-- scope: periscope -->
zhuq96@gmail.com
#### Has a Leaderboard?
<!-- info: Does the dataset have an active leaderboard? -->
<!-- scope: telescope -->
no
### Languages and Intended Use
#### Multilingual?
<!-- quick -->
<!-- info: Is the dataset multilingual? -->
<!-- scope: telescope -->
no
#### Covered Languages
<!-- quick -->
<!-- info: What languages/dialects are covered in the dataset? -->
<!-- scope: telescope -->
`Chinese`
#### License
<!-- quick -->
<!-- info: What is the license of the dataset? -->
<!-- scope: telescope -->
apache-2.0: Apache License 2.0
#### Intended Use
<!-- info: What is the intended use of the dataset? -->
<!-- scope: microscope -->
CrossWOZ is the first large-scale Chinese Cross-Domain Wizard-of-Oz task-oriented dataset. It contains 6K dialogue sessions and 102K utterances for 5 domains, including hotel, restaurant, attraction, metro, and taxi. Moreover, the corpus contains rich annotation of dialogue states and dialogue acts at both user and system sides. We also provide a user simulator and several benchmark models for pipelined taskoriented dialogue systems, which will facilitate researchers to compare and evaluate their models on this corpus.
#### Primary Task
<!-- info: What primary task does the dataset support? -->
<!-- scope: telescope -->
Dialog Response Generation
#### Communicative Goal
<!-- quick -->
<!-- info: Provide a short description of the communicative goal of a model trained for this task on this dataset. -->
<!-- scope: periscope -->
Generate a response according to the dialog context and database search results.
### Credit
#### Curation Organization Type(s)
<!-- info: In what kind of organization did the dataset curation happen? -->
<!-- scope: telescope -->
`academic`
#### Curation Organization(s)
<!-- info: Name the organization(s). -->
<!-- scope: periscope -->
Tsinghua University
#### Dataset Creators
<!-- info: Who created the original dataset? List the people involved in collecting the dataset and their affiliation(s). -->
<!-- scope: microscope -->
Qi Zhu, Kaili Huang, Zheng Zhang, Xiaoyan Zhu, and Minlie Huang from CoAI group, Tsinghua University
#### Funding
<!-- info: Who funded the data creation? -->
<!-- scope: microscope -->
National Science Foundation of China, National Key R&D Program of China
#### Who added the Dataset to GEM?
<!-- info: Who contributed to the data card and adding the dataset to GEM? List the people+affiliations involved in creating this data card and who helped integrate this dataset into GEM. -->
<!-- scope: microscope -->
Qi Zhu (Tsinghua University)
### Dataset Structure
#### Data Fields
<!-- info: List and describe the fields present in the dataset. -->
<!-- scope: telescope -->
- `gem_id` (string): GEM-CrossWOZ-{split}-{id}
- `dialog_id` (string): dialog ID
- `sys_id` (string): system annotator ID
- `usr_id` (string): user annotation ID
- `type` (string): dialog type
- `task description` (list of strings): natural language descriptions of the user goal
- `goal` (list of tuples), includes:
- `sub-goal id` (string)
- `domain name` (string)
- `slot name` (string)
- `constraint` if filled, else `requirement` (string)
- `whether be mentioned in previous turns` (string)
- `messages` (list of dict): dialog turns. Each turn contains:
- `content` (string): utterance
- `role` (string): user or system
- `dialog_act` (list of tuples), includes:
- `domain` (string)
- `intent` (string)
- `slot` (string)
- `value` (string)
- `user_state` (list of tuples): same format as "goal", can be viewed as dynamic goal.
- `sys_state_init` (dict): the first db query emitted, records user constraints faithfully. If the system find no result that matches, he/she may relax the constraints manually and search db multiple times.
- `domain` (dict): slot(string)-value(string) pairs
- `selectedResults` (list of string): db search result that would be used in this turn.
- `sys_state` (dict): the final db query emitted, records the db used by the system in this turn. Same format as sys_state_init. Note that this may not satisfy all user constraints.
- `final_goal` (list of tuples): user state/goal at the end of dialog. same format as "goal".
#### Example Instance
<!-- info: Provide a JSON formatted example of a typical instance in the dataset. -->
<!-- scope: periscope -->
```
{'dialog_id': '2303',
'final_goal': [['1', '餐馆', '人均消费', '50-100元', 'True'],
['1', '餐馆', '推荐菜', "['美食街']", 'True'],
['1', '餐馆', '名称', '鲜鱼口老字号美食街', 'True'],
['1', '餐馆', '营业时间', '周一至周日 10:00-22:00', 'True'],
['1', '餐馆', '周边景点', "['天安门广场', '前门大街', '恭王府', '故宫']", 'True'],
['2', '景点', '名称', '故宫', 'True'],
['2', '景点', '评分', '4.5分以上', 'True'],
['2', '景点', '地址', '北京市东城区景山前街4号', 'True'],
['2', '景点', '电话', '010-85007938', 'True'],
['3', '酒店', '名称', '桔子水晶酒店(北京安贞店)', 'True'],
['3', '酒店', '电话', '010-84273030', 'True']],
'gem_id': 'GEM-CrossWOZ-test-0',
'goal': [['1', '餐馆', '人均消费', '50-100元', 'False'],
['1', '餐馆', '推荐菜', "['美食街']", 'False'],
['1', '餐馆', '名称', '', 'False'],
['1', '餐馆', '营业时间', '', 'False'],
['1', '餐馆', '周边景点', '[]', 'False'],
['2', '景点', '名称', '出现在id=1的周边景点里', 'False'],
['2', '景点', '评分', '4.5分以上', 'False'],
['2', '景点', '地址', '', 'False'],
['2', '景点', '电话', '', 'False'],
['3', '酒店', '名称', '桔子水晶酒店(北京安贞店)', 'False'],
['3', '酒店', '电话', '', 'False']],
'messages': {'content': ['你好,我想吃美食街,帮我推荐一个人均消费在50-100元的餐馆,谢谢。',
'为您推荐鲜鱼口老字号美食街,人均消费75元,有您想吃的美食街哦。',
'营业时间是什么时间?',
'周一至周日 10:00-22:00。',
'他家周边有什么景点吗?',
'有故宫, 前门大街, 恭王府, 天安门广场。',
'哦,我想在这些附近景点里找一个4.5分以上的,有吗?',
'故宫就是哦,4.7分。',
'好的,电话和地址告诉我一下。',
'010-85007938;北京市东城区景山前街4号。',
'好的,麻烦你帮我查一下桔子水晶酒店(北京安贞店)电话呗。',
'010-84273030。',
'好的,收到,谢谢你!',
'不客气。'],
'dialog_act': [[['General', 'greet', 'none', 'none'],
['General', 'thank', 'none', 'none'],
['Inform', '餐馆', '人均消费', '50-100元'],
['Inform', '餐馆', '推荐菜', '美食街'],
['Request', '餐馆', '名称', '']],
[['Inform', '餐馆', '人均消费', '75元'], ['Inform', '餐馆', '名称', '鲜鱼口老字号美食街']],
[['Request', '餐馆', '营业时间', '']],
[['Inform', '餐馆', '营业时间', '周一至周日 10:00-22:00']],
[['Request', '餐馆', '周边景点', '']],
[['Inform', '餐馆', '周边景点', '前门大街'],
['Inform', '餐馆', '周边景点', '天安门广场'],
['Inform', '餐馆', '周边景点', '恭王府'],
['Inform', '餐馆', '周边景点', '故宫']],
[['Inform', '景点', '评分', '4.5分以上'], ['Select', '景点', '源领域', '餐馆']],
[['Inform', '景点', '名称', '故宫'], ['Inform', '景点', '评分', '4.7分']],
[['Request', '景点', '地址', ''], ['Request', '景点', '电话', '']],
[['Inform', '景点', '地址', '北京市东城区景山前街4号'],
['Inform', '景点', '电话', '010-85007938']],
[['Inform', '酒店', '名称', '桔子水晶酒店(北京安贞店)'], ['Request', '酒店', '电话', '']],
[['Inform', '酒店', '电话', '010-84273030']],
[['General', 'thank', 'none', 'none']],
[['General', 'welcome', 'none', 'none']]],
'role': ['usr',
'sys',
'usr',
'sys',
'usr',
'sys',
'usr',
'sys',
'usr',
'sys',
'usr',
'sys',
'usr',
'sys'],
'sys_state': [{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': ['鲜鱼口老字号美食街'],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': ['鲜鱼口老字号美食街'],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': ['鲜鱼口老字号美食街'],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': ['故宫'],
'名称': '故宫',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': ['故宫'],
'名称': '故宫',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '故宫',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': ['桔子水晶酒店(北京安贞店)'],
'价格': '',
'名称': '桔子水晶酒店(北京安贞店)',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '故宫',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '桔子水晶酒店(北京安贞店)',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}}],
'sys_state_init': [{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': ['鲜鱼口老字号美食街'],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': ['鲜鱼口老字号美食街'],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': ['鲜鱼口老字号美食街'],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': ['故宫'],
'名称': '故宫',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': ['鲜鱼口老字号美食街'],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': ['故宫'],
'名称': '故宫',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': ['故宫'],
'名称': '故宫',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': ['桔子水晶酒店(北京安贞店)'],
'价格': '',
'名称': '桔子水晶酒店(北京安贞店)',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': [],
'价格': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '',
'评分': ''}},
{'出租': {'selectedResults': [], '出发地': '', '目的地': ''},
'地铁': {'selectedResults': [], '出发地': '', '目的地': ''},
'景点': {'selectedResults': [],
'名称': '故宫',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'游玩时间': '',
'评分': '',
'门票': ''},
'酒店': {'selectedResults': ['桔子水晶酒店(北京安贞店)'],
'价格': '',
'名称': '桔子水晶酒店(北京安贞店)',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'评分': '',
'酒店类型': '',
'酒店设施': ''},
'餐馆': {'selectedResults': [],
'人均消费': '50-100元',
'名称': '',
'周边景点': '',
'周边酒店': '',
'周边餐馆': '',
'推荐菜': '美食街',
'评分': ''}}],
'user_state': [[['1', '餐馆', '人均消费', '50-100元', 'True'],
['1', '餐馆', '推荐菜', "['美食街']", 'True'],
['1', '餐馆', '名称', '', 'True'],
['1', '餐馆', '营业时间', '', 'False'],
['1', '餐馆', '周边景点', '[]', 'False'],
['2', '景点', '名称', '出现在id=1的周边景点里', 'False'],
['2', '景点', '评分', '4.5分以上', 'False'],
['2', '景点', '地址', '', 'False'],
['2', '景点', '电话', '', 'False'],
['3', '酒店', '名称', '桔子水晶酒店(北京安贞店)', 'False'],
['3', '酒店', '电话', '', 'False']],
[],
[['1', '餐馆', '人均消费', '50-100元', 'True'],
['1', '餐馆', '推荐菜', "['美食街']", 'True'],
['1', '餐馆', '名称', '鲜鱼口老字号美食街', 'True'],
['1', '餐馆', '营业时间', '', 'True'],
['1', '餐馆', '周边景点', '[]', 'False'],
['2', '景点', '名称', '出现在id=1的周边景点里', 'False'],
['2', '景点', '评分', '4.5分以上', 'False'],
['2', '景点', '地址', '', 'False'],
['2', '景点', '电话', '', 'False'],
['3', '酒店', '名称', '桔子水晶酒店(北京安贞店)', 'False'],
['3', '酒店', '电话', '', 'False']],
[],
[['1', '餐馆', '人均消费', '50-100元', 'True'],
['1', '餐馆', '推荐菜', "['美食街']", 'True'],
['1', '餐馆', '名称', '鲜鱼口老字号美食街', 'True'],
['1', '餐馆', '营业时间', '周一至周日 10:00-22:00', 'True'],
['1', '餐馆', '周边景点', '[]', 'True'],
['2', '景点', '名称', '出现在id=1的周边景点里', 'False'],
['2', '景点', '评分', '4.5分以上', 'False'],
['2', '景点', '地址', '', 'False'],
['2', '景点', '电话', '', 'False'],
['3', '酒店', '名称', '桔子水晶酒店(北京安贞店)', 'False'],
['3', '酒店', '电话', '', 'False']],
[],
[['1', '餐馆', '人均消费', '50-100元', 'True'],
['1', '餐馆', '推荐菜', "['美食街']", 'True'],
['1', '餐馆', '名称', '鲜鱼口老字号美食街', 'True'],
['1', '餐馆', '营业时间', '周一至周日 10:00-22:00', 'True'],
['1', '餐馆', '周边景点', "['天安门广场', '前门大街', '恭王府', '故宫']", 'True'],
['2', '景点', '名称', '出现在id=1的周边景点里', 'True'],
['2', '景点', '评分', '4.5分以上', 'True'],
['2', '景点', '地址', '', 'False'],
['2', '景点', '电话', '', 'False'],
['3', '酒店', '名称', '桔子水晶酒店(北京安贞店)', 'False'],
['3', '酒店', '电话', '', 'False']],
[],
[['1', '餐馆', '人均消费', '50-100元', 'True'],
['1', '餐馆', '推荐菜', "['美食街']", 'True'],
['1', '餐馆', '名称', '鲜鱼口老字号美食街', 'True'],
['1', '餐馆', '营业时间', '周一至周日 10:00-22:00', 'True'],
['1', '餐馆', '周边景点', "['天安门广场', '前门大街', '恭王府', '故宫']", 'True'],
['2', '景点', '名称', '故宫', 'True'],
['2', '景点', '评分', '4.5分以上', 'True'],
['2', '景点', '地址', '', 'True'],
['2', '景点', '电话', '', 'True'],
['3', '酒店', '名称', '桔子水晶酒店(北京安贞店)', 'False'],
['3', '酒店', '电话', '', 'False']],
[],
[['1', '餐馆', '人均消费', '50-100元', 'True'],
['1', '餐馆', '推荐菜', "['美食街']", 'True'],
['1', '餐馆', '名称', '鲜鱼口老字号美食街', 'True'],
['1', '餐馆', '营业时间', '周一至周日 10:00-22:00', 'True'],
['1', '餐馆', '周边景点', "['天安门广场', '前门大街', '恭王府', '故宫']", 'True'],
['2', '景点', '名称', '故宫', 'True'],
['2', '景点', '评分', '4.5分以上', 'True'],
['2', '景点', '地址', '北京市东城区景山前街4号', 'True'],
['2', '景点', '电话', '010-85007938', 'True'],
['3', '酒店', '名称', '桔子水晶酒店(北京安贞店)', 'True'],
['3', '酒店', '电话', '', 'True']],
[],
[['1', '餐馆', '人均消费', '50-100元', 'True'],
['1', '餐馆', '推荐菜', "['美食街']", 'True'],
['1', '餐馆', '名称', '鲜鱼口老字号美食街', 'True'],
['1', '餐馆', '营业时间', '周一至周日 10:00-22:00', 'True'],
['1', '餐馆', '周边景点', "['天安门广场', '前门大街', '恭王府', '故宫']", 'True'],
['2', '景点', '名称', '故宫', 'True'],
['2', '景点', '评分', '4.5分以上', 'True'],
['2', '景点', '地址', '北京市东城区景山前街4号', 'True'],
['2', '景点', '电话', '010-85007938', 'True'],
['3', '酒店', '名称', '桔子水晶酒店(北京安贞店)', 'True'],
['3', '酒店', '电话', '010-84273030', 'True']],
[]]},
'sys_id': 96,
'task description': ['你要去一个餐馆(id=1)用餐。你希望餐馆的人均消费是50-100元的。你想吃的菜肴是美食街。你想知道这个餐馆的名称、营业时间、周边景点。',
'你要去id=1附近的景点(id=2)游玩。你希望景点的评分是4.5分以上。你想知道这个景点的地址、电话。',
'你要去名叫桔子水晶酒店(北京安贞店)的酒店(id=3)住宿。你想知道这个酒店的电话。'],
'type': '不独立多领域',
'usr_id': 97}
```
#### Data Splits
<!-- info: Describe and name the splits in the dataset if there are more than one. -->
<!-- scope: periscope -->
| Split | Train | Valid | Test |
| --------------------- | ------ | ----- | ----- |
| \# dialogues | 5,012 | 500 | 500 |
| \# Turns (utterances) | 84,692 | 8,458 | 8,476 |
| Vocab | 12,502 | 5,202 | 5,143 |
| Avg. sub-goals | 3.24 | 3.26 | 3.26 |
| Avg. semantic tuples | 14.8 | 14.9 | 15.0 |
| Avg. turns | 16.9 | 16.9 | 17.0 |
| Avg. tokens per turn | 16.3 | 16.3 | 16.2 |
## Dataset in GEM
### Rationale for Inclusion in GEM
#### Why is the Dataset in GEM?
<!-- info: What does this dataset contribute toward better generation evaluation and why is it part of GEM? -->
<!-- scope: microscope -->
CrossWOZ is the first large-scale Chinese Cross-Domain Wizard-of-Oz task-oriented dataset.
#### Similar Datasets
<!-- info: Do other datasets for the high level task exist? -->
<!-- scope: telescope -->
yes
#### Unique Language Coverage
<!-- info: Does this dataset cover other languages than other datasets for the same task? -->
<!-- scope: periscope -->
no
#### Difference from other GEM datasets
<!-- info: What else sets this dataset apart from other similar datasets in GEM? -->
<!-- scope: microscope -->
The corpus contains rich annotation of dialogue states and dialogue acts at both user and system sides, which can be used in a wide range of tasks.
#### Ability that the Dataset measures
<!-- info: What aspect of model ability can be measured with this dataset? -->
<!-- scope: periscope -->
Dialog understanding, dialog policy learning
### GEM-Specific Curation
#### Modificatied for GEM?
<!-- info: Has the GEM version of the dataset been modified in any way (data, processing, splits) from the original curated data? -->
<!-- scope: telescope -->
yes
#### GEM Modifications
<!-- info: What changes have been made to he original dataset? -->
<!-- scope: periscope -->
`other`
#### Modification Details
<!-- info: For each of these changes, described them in more details and provided the intended purpose of the modification -->
<!-- scope: microscope -->
To adapt to hugging face Datasets, we 1) separate user annotators' ID and system annotations' ID; 2) we convert the data type in goal/user state to string.
#### Additional Splits?
<!-- info: Does GEM provide additional splits to the dataset? -->
<!-- scope: telescope -->
no
### Getting Started with the Task
#### Pointers to Resources
<!-- info: Getting started with in-depth research on the task. Add relevant pointers to resources that researchers can consult when they want to get started digging deeper into the task. -->
<!-- scope: microscope -->
[Code](https://github.com/thu-coai/Convlab-2)
#### Technical Terms
<!-- info: Technical terms used in this card and the dataset and their definitions -->
<!-- scope: microscope -->
According to the type of user goal, we group the dialogues in the training set into five categories:
- S: 417 dialogues have only one sub-goal in HAR domains.
- M: 1573 dialogues have multiple sub-goals (2-3) in HAR domains. However, these sub-goals do not have cross-domain informable slots.
- M+T: 691 dialogues have multiple sub-goals in HAR domains and at least one sub-goal in the metro or taxi domain (3-5 sub-goals). The sub-goals in HAR domains do not have cross-domain informable slots.
- CM: 1,759 dialogues have multiple sub-goals (2-5) in HAR domains with cross-domain informable slots.
- CM+T: 572 dialogues have multiple sub-goals in HAR domains with cross-domain informable slots and at least one sub-goal in the metro or taxi domain (3-5 sub-goals).
## Previous Results
### Previous Results
#### Measured Model Abilities
<!-- info: What aspect of model ability can be measured with this dataset? -->
<!-- scope: telescope -->
Dialog understanding, dialog policy learning
#### Metrics
<!-- info: What metrics are typically used for this task? -->
<!-- scope: periscope -->
`BLEU`
#### Proposed Evaluation
<!-- info: List and describe the purpose of the metrics and evaluation methodology (including human evaluation) that the dataset creators used when introducing this task. -->
<!-- scope: microscope -->
BLEU evaluates the generation quality.
#### Previous results available?
<!-- info: Are previous results available? -->
<!-- scope: telescope -->
yes
#### Other Evaluation Approaches
<!-- info: What evaluation approaches have others used? -->
<!-- scope: periscope -->
Inform rate: how many entities in the gold response appear in the generated response.
#### Relevant Previous Results
<!-- info: What are the most relevant previous results for this task/dataset? -->
<!-- scope: microscope -->
BLEU on MultiWOZ dataset.
## Dataset Curation
### Original Curation
#### Original Curation Rationale
<!-- info: Original curation rationale -->
<!-- scope: telescope -->
Gather human-to-human dialog in Chinese.
#### Communicative Goal
<!-- info: What was the communicative goal? -->
<!-- scope: periscope -->
Generate a response according to the dialog context and database search results.
#### Sourced from Different Sources
<!-- info: Is the dataset aggregated from different data sources? -->
<!-- scope: telescope -->
no
### Language Data
#### How was Language Data Obtained?
<!-- info: How was the language data obtained? -->
<!-- scope: telescope -->
`Crowdsourced`
#### Where was it crowdsourced?
<!-- info: If crowdsourced, where from? -->
<!-- scope: periscope -->
`Participatory experiment`
#### Language Producers
<!-- info: What further information do we have on the language producers? -->
<!-- scope: microscope -->
An usr/sys ID indicates the creator of different data points.
#### Topics Covered
<!-- info: Does the language in the dataset focus on specific topics? How would you describe them? -->
<!-- scope: periscope -->
domains: attraction, hotel, restaurant, metro, taxi
#### Data Validation
<!-- info: Was the text validated by a different worker or a data curator? -->
<!-- scope: telescope -->
validated by data curator
#### Was Data Filtered?
<!-- info: Were text instances selected or filtered? -->
<!-- scope: telescope -->
not filtered
### Structured Annotations
#### Additional Annotations?
<!-- quick -->
<!-- info: Does the dataset have additional annotations for each instance? -->
<!-- scope: telescope -->
none
#### Annotation Service?
<!-- info: Was an annotation service used? -->
<!-- scope: telescope -->
no
### Consent
#### Any Consent Policy?
<!-- info: Was there a consent policy involved when gathering the data? -->
<!-- scope: telescope -->
yes
#### Consent Policy Details
<!-- info: What was the consent policy? -->
<!-- scope: microscope -->
Annotators agree using the dataset for research purpose.
#### Other Consented Downstream Use
<!-- info: What other downstream uses of the data did the original data creators and the data curators consent to? -->
<!-- scope: microscope -->
Any
### Private Identifying Information (PII)
#### Contains PII?
<!-- quick -->
<!-- info: Does the source language data likely contain Personal Identifying Information about the data creators or subjects? -->
<!-- scope: telescope -->
unlikely
#### Categories of PII
<!-- info: What categories of PII are present or suspected in the data? -->
<!-- scope: periscope -->
`generic PII`
#### Any PII Identification?
<!-- info: Did the curators use any automatic/manual method to identify PII in the dataset? -->
<!-- scope: periscope -->
no identification
### Maintenance
#### Any Maintenance Plan?
<!-- info: Does the original dataset have a maintenance plan? -->
<!-- scope: telescope -->
no
## Broader Social Context
### Previous Work on the Social Impact of the Dataset
#### Usage of Models based on the Data
<!-- info: Are you aware of cases where models trained on the task featured in this dataset ore related tasks have been used in automated systems? -->
<!-- scope: telescope -->
no
### Impact on Under-Served Communities
#### Addresses needs of underserved Communities?
<!-- info: Does this dataset address the needs of communities that are traditionally underserved in language technology, and particularly language generation technology? Communities may be underserved for exemple because their language, language variety, or social or geographical context is underepresented in NLP and NLG resources (datasets and models). -->
<!-- scope: telescope -->
yes
#### Details on how Dataset Addresses the Needs
<!-- info: Describe how this dataset addresses the needs of underserved communities. -->
<!-- scope: microscope -->
CrossWOZ is the first large-scale Chinese Cross-Domain Wizard-of-Oz task-oriented dataset. The corpus contains rich annotation of dialogue states and dialogue acts at both user and system sides, which can be used in a wide range of tasks.
### Discussion of Biases
#### Any Documented Social Biases?
<!-- info: Are there documented social biases in the dataset? Biases in this context are variations in the ways members of different social categories are represented that can have harmful downstream consequences for members of the more disadvantaged group. -->
<!-- scope: telescope -->
no
#### Are the Language Producers Representative of the Language?
<!-- info: Does the distribution of language producers in the dataset accurately represent the full distribution of speakers of the language world-wide? If not, how does it differ? -->
<!-- scope: periscope -->
Yes
## Considerations for Using the Data
### PII Risks and Liability
#### Potential PII Risk
<!-- info: Considering your answers to the PII part of the Data Curation Section, describe any potential privacy to the data subjects and creators risks when using the dataset. -->
<!-- scope: microscope -->
No
### Licenses
#### Copyright Restrictions on the Dataset
<!-- info: Based on your answers in the Intended Use part of the Data Overview Section, which of the following best describe the copyright and licensing status of the dataset? -->
<!-- scope: periscope -->
`open license - commercial use allowed`
#### Copyright Restrictions on the Language Data
<!-- info: Based on your answers in the Language part of the Data Curation Section, which of the following best describe the copyright and licensing status of the underlying language data? -->
<!-- scope: periscope -->
`open license - commercial use allowed`
### Known Technical Limitations
#### Technical Limitations
<!-- info: Describe any known technical limitations, such as spurrious correlations, train/test overlap, annotation biases, or mis-annotations, and cite the works that first identified these limitations when possible. -->
<!-- scope: microscope -->
No
#### Unsuited Applications
<!-- info: When using a model trained on this dataset in a setting where users or the public may interact with its predictions, what are some pitfalls to look out for? In particular, describe some applications of the general task featured in this dataset that its curation or properties make it less suitable for. -->
<!-- scope: microscope -->
Model may not handle unknown values in the dialog
#### Discouraged Use Cases
<!-- info: What are some discouraged use cases of a model trained to maximize the proposed metrics on this dataset? In particular, think about settings where decisions made by a model that performs reasonably well on the metric my still have strong negative consequences for user or members of the public. -->
<!-- scope: microscope -->
Responses can be diverse, which is not captured by BLEU
|