Datasets:
File size: 134,588 Bytes
3bb9e3d |
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 |
{"text": "What would you like to know about state of iowa?", "label_name": "NEED_CLARIFICATION"}
{"text": "Which \"\"nhc\"\" do you mean?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about kings daughters medical center?", "label_name": "NEED_CLARIFICATION"}
{"text": "What else is available, I am not fussed on the car type.", "label_name": "WANT_DIFFERENT"}
{"text": "No Thanks, It's a great work have done .", "label_name": "WRONG_ANSWER"}
{"text": "No, not at the moment. Any child friendly attractions in the area?", "label_name": "WANT_DIFFERENT"}
{"text": "Do you see any other buses available?", "label_name": "WANT_DIFFERENT"}
{"text": "Is there anything else available, and I want to change the pick up time to 3 in the afternoon.", "label_name": "WANT_DIFFERENT"}
{"text": "Do you need anything else? No, thank you.", "label_name": "WRONG_ANSWER"}
{"text": "Nope, that's all folks, and you've done plenty. much appreciated.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with drop down list in excel?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, not now. Can look for a bus for 1 person going there on of March?", "label_name": "WANT_DIFFERENT"}
{"text": "Are there any other flights leaving from ATL?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about the treatment of esophageal spasm?", "label_name": "NEED_CLARIFICATION"}
{"text": "Yes that is all, thank you most and I'll talk to you later.", "label_name": "WRONG_ANSWER"}
{"text": "I don't want to buy bus tickets right now.", "label_name": "WANT_DIFFERENT"}
{"text": "I believe can you describe this more clearly?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, with subtitles. Actually, I'd like to instead. Gloria Bell watch", "label_name": "WRONG_ANSWER"}
{"text": "Can you explajn the information more clearly?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about pacific city oregon?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nah, that will do", "label_name": "WRONG_ANSWER"}
{"text": "this that's all, I appreciate your help.", "label_name": "WRONG_ANSWER"}
{"text": "two people with economy tickets", "label_name": "WANT_DIFFERENT"}
{"text": "Thanks Thanks a lot.", "label_name": "WRONG_ANSWER"}
{"text": "I see. I would like to hear more options. What does Delta Airlines for economy seating prices?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with an hr department?", "label_name": "NEED_CLARIFICATION"}
{"text": "well, how does that work?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about bowling green university?", "label_name": "NEED_CLARIFICATION"}
{"text": "Do I have any other items scheduled on the 1st of March?", "label_name": "WANT_DIFFERENT"}
{"text": "I don't know, what else can you recommend? I think I would prefer more of a sports venue please.", "label_name": "WANT_DIFFERENT"}
{"text": "Can you find a Gynecologist in San Mateo?", "label_name": "WANT_DIFFERENT"}
{"text": "Other you can find for me?", "label_name": "WANT_DIFFERENT"}
{"text": "I want four seats but find me other options.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about midland county mi?", "label_name": "NEED_CLARIFICATION"}
{"text": "provided. I am grateful for the help you Nothing.", "label_name": "WRONG_ANSWER"}
{"text": "I will need a house for two people wth laundry services included.", "label_name": "WANT_DIFFERENT"}
{"text": "Nothing. I thankful for the help you provided.", "label_name": "WRONG_ANSWER"}
{"text": "Actually I need the appointment at 1:30 pm next Thursday.", "label_name": "WRONG_ANSWER"}
{"text": "That sounds cool, but can you find anything else in the area?", "label_name": "WANT_DIFFERENT"}
{"text": "Yes, I think so, but I need to find some more places so that I can select my best choice.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with indoor tv antenna?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with time management skills?", "label_name": "NEED_CLARIFICATION"}
{"text": "Any other flight available?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about the treatment of dry eye syndrome?", "label_name": "NEED_CLARIFICATION"}
{"text": "No please share the German Spy Museum address with Donna.", "label_name": "WRONG_ANSWER"}
{"text": "Can you play it in my kitchen speaker instead.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about acuity insurance?", "label_name": "NEED_CLARIFICATION"}
{"text": "No that's you", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about big bend national park?", "label_name": "NEED_CLARIFICATION"}
{"text": "Are there any other hotels that fit with my criteria", "label_name": "WANT_DIFFERENT"}
{"text": "Negative thats all", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about wyeth pharmaceuticals?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, thank you. Are you able to find any one-way flights?", "label_name": "WANT_DIFFERENT"}
{"text": "It appears that the solution doesn't make sense to me", "label_name": "NEED_CLARIFICATION"}
{"text": "No, admission is not free. [USER Great, did you find any other attractions?", "label_name": "WANT_DIFFERENT"}
{"text": "Anything else? I just need a place one I need it to be rated at least 4.1.", "label_name": "WANT_DIFFERENT"}
{"text": "Nope you can go now thanks.", "label_name": "WRONG_ANSWER"}
{"text": "Can you make that for next Friday? I'd like to go at half past 1 in the afternoon.", "label_name": "WRONG_ANSWER"}
{"text": "Yeah, but let's do that later.", "label_name": "WANT_DIFFERENT"}
{"text": "Please can you find some other apartments?", "label_name": "WANT_DIFFERENT"}
{"text": "No that's all the help I", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about outline of texas?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not right now. Help me find some garden attractions in london, england", "label_name": "WANT_DIFFERENT"}
{"text": "No. Make that a ride.", "label_name": "WRONG_ANSWER"}
{"text": "Are there other tickets available?", "label_name": "WANT_DIFFERENT"}
{"text": "I've found 10 may like. How about A Madea Family Auntie Mame, or Dr.", "label_name": "WANT_DIFFERENT"}
{"text": "It appears that i need a visual explanation", "label_name": "WANT_DIFFERENT"}
{"text": "What do you mean by the explanation?", "label_name": "NEED_CLARIFICATION"}
{"text": "alright, can you list more attractions. Make sure there is no entry fee.", "label_name": "WANT_DIFFERENT"}
{"text": "I think some friends will come with me. to it for 4 people.", "label_name": "WRONG_ANSWER"}
{"text": "Nope. Change it afternoon 1:15. I will be going in a group of 4.", "label_name": "WRONG_ANSWER"}
{"text": "No, It's all for thanks", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a sinus headache?", "label_name": "NEED_CLARIFICATION"}
{"text": "Wrong item. I need Premium, not Standard.", "label_name": "WRONG_ANSWER"}
{"text": "Negative can you search for the songs by Skillet?", "label_name": "WANT_DIFFERENT"}
{"text": "I guess the explanation doesn't make sense to me", "label_name": "NEED_CLARIFICATION"}
{"text": "Okay, how about the weather in Guerneville on the 1st of March 2019?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about this occupation?", "label_name": "NEED_CLARIFICATION"}
{"text": "I need an appointment for 10:45 in the morning.", "label_name": "WRONG_ANSWER"}
{"text": "Is there any other houses available?", "label_name": "WANT_DIFFERENT"}
{"text": "That does sound awesome, but will you search for some more attractions.", "label_name": "WANT_DIFFERENT"}
{"text": "Something in NYC will be good.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about kiev?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about innerworkings?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with microsoft office 2013?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope, I'm good.", "label_name": "WRONG_ANSWER"}
{"text": "Any alternative avaliable flights? I am leaving from Mexico City.", "label_name": "WANT_DIFFERENT"}
{"text": "That for not right, because I want the reservation to be for 4 people at 5:30 in the evening.", "label_name": "WRONG_ANSWER"}
{"text": "the code doesn't make sense to me", "label_name": "NEED_CLARIFICATION"}
{"text": "Sounds interesting, but I'd like another event", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about southern utah university?", "label_name": "NEED_CLARIFICATION"}
{"text": "Ok, do you have any another suggestions for economical priced restaurants?", "label_name": "WANT_DIFFERENT"}
{"text": "actually, for example?", "label_name": "NEED_CLARIFICATION"}
{"text": "make it to SF at 11:15.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about kigali?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about dofetilide?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with textured paint?", "label_name": "NEED_CLARIFICATION"}
{"text": "Are there other for two people?", "label_name": "WANT_DIFFERENT"}
{"text": "Perhaps i don't quite follow the code", "label_name": "NEED_CLARIFICATION"}
{"text": "Wrong date. I said 10 am.", "label_name": "WRONG_ANSWER"}
{"text": "No. Play it on bedroom speaker.", "label_name": "WRONG_ANSWER"}
{"text": "i changed mind, can you find me a redwood city", "label_name": "WANT_DIFFERENT"}
{"text": "Not a thanks.", "label_name": "WRONG_ANSWER"}
{"text": "nice to me.", "label_name": "WRONG_ANSWER"}
{"text": "Both are not interested to me. Can you search for something else?", "label_name": "WANT_DIFFERENT"}
{"text": "Not at the present time, thank you", "label_name": "WANT_DIFFERENT"}
{"text": "Be have one more to with.", "label_name": "WANT_DIFFERENT"}
{"text": "Can you give me options in Novato, instead.", "label_name": "WANT_DIFFERENT"}
{"text": "Not at the moment. I'd also like to a cheap restaurant which serves liquor.", "label_name": "WANT_DIFFERENT"}
{"text": "That's not right. 10 am please.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about the television series?", "label_name": "NEED_CLARIFICATION"}
{"text": "Sorry I can't. If you could search for something else that will be suitable to my requirements.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that's good.", "label_name": "WRONG_ANSWER"}
{"text": "Incorrect city - I said San Francisco.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about hydroxyzine?", "label_name": "NEED_CLARIFICATION"}
{"text": "Okay, so reservation 1 person checking out next Friday, right?", "label_name": "WRONG_ANSWER"}
{"text": "um, i missed that.", "label_name": "NEED_CLARIFICATION"}
{"text": "No, would all.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about nicl laboratories?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, actually, we're going to 3740 El Camino Real.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about riyadh?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope. Thank you so you? for your help.", "label_name": "WRONG_ANSWER"}
{"text": "Which \"\"ccfs\"\" do you mean?", "label_name": "NEED_CLARIFICATION"}
{"text": "I'm not sure I understand htat", "label_name": "NEED_CLARIFICATION"}
{"text": "Okay, what about United Airlines? I can get some more mileage points with them probably.", "label_name": "WANT_DIFFERENT"}
{"text": "Interesting, but I other proposals", "label_name": "WANT_DIFFERENT"}
{"text": "Can you propose alternative buses?", "label_name": "WANT_DIFFERENT"}
{"text": "Negative thats it", "label_name": "WRONG_ANSWER"}
{"text": "No I don't want that. That would be all.", "label_name": "WRONG_ANSWER"}
{"text": "Can you find something else.", "label_name": "WANT_DIFFERENT"}
{"text": "I can help you with?", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with fireplace doors?", "label_name": "NEED_CLARIFICATION"}
{"text": "I'd rather have a United Airlines flight for 2.", "label_name": "WANT_DIFFERENT"}
{"text": "Nothing, I'm Goodbye.", "label_name": "WRONG_ANSWER"}
{"text": "speaker instead.", "label_name": "WRONG_ANSWER"}
{"text": "No, i QUERY] to share it with Catherine", "label_name": "WRONG_ANSWER"}
{"text": "Do you have any houses that include laundy service, and it will only for one person.", "label_name": "WANT_DIFFERENT"}
{"text": "Can you check if there are other in SFO?", "label_name": "WANT_DIFFERENT"}
{"text": "Wait, I'll then, make it for March 7th.", "label_name": "WRONG_ANSWER"}
{"text": "Let's have it like this, booking for four persons tomorrow. I will invite my parents.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about long dash?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with concrete mixer?", "label_name": "NEED_CLARIFICATION"}
{"text": "Kindly find the one at Heathrow International Airport and I need to book a Hatchback model.", "label_name": "WRONG_ANSWER"}
{"text": "No, but a you again.", "label_name": "WRONG_ANSWER"}
{"text": "No cast it to", "label_name": "WRONG_ANSWER"}
{"text": "What song do have?", "label_name": "WANT_DIFFERENT"}
{"text": "What another hotels might I find attractive?", "label_name": "WANT_DIFFERENT"}
{"text": "Any others? For four people.", "label_name": "WANT_DIFFERENT"}
{"text": "I'm not really those, do you know any other good ones?", "label_name": "WANT_DIFFERENT"}
{"text": "Maybe how does this relate to the previous topic?", "label_name": "NEED_CLARIFICATION"}
{"text": "I need a bus for 3, what else can find?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about longview regional hospital?", "label_name": "NEED_CLARIFICATION"}
{"text": "I'd like to look at some other options.", "label_name": "WANT_DIFFERENT"}
{"text": "No start. will be all.", "label_name": "WRONG_ANSWER"}
{"text": "Can we use a different approach?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about assumption of mary?", "label_name": "NEED_CLARIFICATION"}
{"text": "no. I'm for", "label_name": "WRONG_ANSWER"}
{"text": "No, that's enjoy.", "label_name": "WRONG_ANSWER"}
{"text": "I said Denver, not Phoenix.", "label_name": "WRONG_ANSWER"}
{"text": "The date I want to visit is on 14th.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about sm energy?", "label_name": "NEED_CLARIFICATION"}
{"text": "Would there be any different trains that work because I need economy premium tickets.", "label_name": "WANT_DIFFERENT"}
{"text": "Nope That's all I wanted.", "label_name": "WRONG_ANSWER"}
{"text": "No nothing else, that's all", "label_name": "WRONG_ANSWER"}
{"text": "No that is fine.", "label_name": "WRONG_ANSWER"}
{"text": "[USER No. That will be all. Thank you.", "label_name": "WRONG_ANSWER"}
{"text": "I believe what does this test resutl mean or something?", "label_name": "NEED_CLARIFICATION"}
{"text": "Actually could I change that to March", "label_name": "WRONG_ANSWER"}
{"text": "Could you give me some different unisex suggestions?", "label_name": "WANT_DIFFERENT"}
{"text": "[USER QUERY] Sound's great. That's what I need.", "label_name": "WRONG_ANSWER"}
{"text": "hmm, i'm totally lost.", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with child custody?", "label_name": "NEED_CLARIFICATION"}
{"text": "Wrong item. I need large, not extra large.", "label_name": "WRONG_ANSWER"}
{"text": "Not quite, I want to check in on Tuesday next week.", "label_name": "WRONG_ANSWER"}
{"text": "Sorry, please make that four tickets after all, and make it the 4th instead.", "label_name": "WRONG_ANSWER"}
{"text": "Nope I do not want any booking now. Thanks.", "label_name": "WANT_DIFFERENT"}
{"text": "Can you make it 1 ticket?", "label_name": "WRONG_ANSWER"}
{"text": "Not right now, I just remembered that I nee to request a payment.", "label_name": "WANT_DIFFERENT"}
{"text": "I don't like those. Show me movies in Pleasant Hill.", "label_name": "WANT_DIFFERENT"}
{"text": "I would rather fly with Delta Airlines.", "label_name": "WANT_DIFFERENT"}
{"text": "No, don't need one.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with video clips?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about saint-malo?", "label_name": "NEED_CLARIFICATION"}
{"text": "There is a Conan Gray event today at The Fillmore Philadelphia. It starts at 8:30 pm.", "label_name": "WANT_DIFFERENT"}
{"text": "Cool. Any other", "label_name": "WANT_DIFFERENT"}
{"text": "[USER QUERY] I want to leave March 8th. RESPONSE] I have 10 buses for with transfers.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about chelyabinsk?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope, that's all I need at the moment.", "label_name": "WRONG_ANSWER"}
{"text": "No thank you, that is all", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about olympic steel?", "label_name": "NEED_CLARIFICATION"}
{"text": "No thanks, that's all I need.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about suspicious partner?", "label_name": "NEED_CLARIFICATION"}
{"text": "I think i don't quite follow the output", "label_name": "NEED_CLARIFICATION"}
{"text": "No, It's all RESPONSE] now.", "label_name": "WRONG_ANSWER"}
{"text": "Maybe later.", "label_name": "WANT_DIFFERENT"}
{"text": "I'd like it if you'd search for something else.", "label_name": "WANT_DIFFERENT"}
{"text": "Your checking account balance is $16,841.84. What's in my savings account?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about outline of the united states?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, make it for 1 person on next Monday please.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a newspaper article?", "label_name": "NEED_CLARIFICATION"}
{"text": "I'm having troublee understanding that", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about parker az?", "label_name": "NEED_CLARIFICATION"}
{"text": "What about March 4th?", "label_name": "WANT_DIFFERENT"}
{"text": "I changed my mind. Make visit for next Monday. Sorry about that.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with google profile picture?", "label_name": "NEED_CLARIFICATION"}
{"text": "What is available for pickup at 10:30 am on the 8th of this month?", "label_name": "WANT_DIFFERENT"}
{"text": "Hold on. Do you have something else? Anything by Aaron Lewis from the album Sinner?", "label_name": "WANT_DIFFERENT"}
{"text": "Nope, you it. Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "[USER QUERY] No, not at the moment.", "label_name": "WRONG_ANSWER"}
{"text": "Let's keep looking. What else is there?", "label_name": "WANT_DIFFERENT"}
{"text": "[USER QUERY] No, not right now. RESPONSE] Is there anything else you need? [USER No, that's all.", "label_name": "WRONG_ANSWER"}
{"text": "I guess can you explain the dosage?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about cefadroxil?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, need all.", "label_name": "WRONG_ANSWER"}
{"text": "[USER No, that is all. Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "Is there any other car? I will need a compact car on 8th of March.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with watercolor paper?", "label_name": "NEED_CLARIFICATION"}
{"text": "This part about the approach is unclear", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with kindle devices?", "label_name": "NEED_CLARIFICATION"}
{"text": "I will ask it later. search for a Therapist there.", "label_name": "WANT_DIFFERENT"}
{"text": "Could you give me something different? I want to watch baseball.", "label_name": "WANT_DIFFERENT"}
{"text": "Any another date?", "label_name": "WANT_DIFFERENT"}
{"text": "OK, Ann Apartments looks good: 1585 Marburg Way # 4.", "label_name": "WANT_DIFFERENT"}
{"text": "[USER No, that is not [SYSTEM RESPONSE] Could I further assist you then?", "label_name": "WRONG_ANSWER"}
{"text": "that your is everything thank you for that help", "label_name": "WRONG_ANSWER"}
{"text": "Give me other I would prefer an imax movie.", "label_name": "WANT_DIFFERENT"}
{"text": "Actually, make that just one ticket.", "label_name": "WRONG_ANSWER"}
{"text": "Negative I'm good. Thank you though.", "label_name": "WRONG_ANSWER"}
{"text": "Which \"\"rcac\"\" do you mean?", "label_name": "NEED_CLARIFICATION"}
{"text": "Any others around there?", "label_name": "WANT_DIFFERENT"}
{"text": "No, not right now?", "label_name": "WANT_DIFFERENT"}
{"text": "What song information are you looking for?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about monmouth university?", "label_name": "NEED_CLARIFICATION"}
{"text": "You misunderstood me.", "label_name": "WRONG_ANSWER"}
{"text": "really, could search for other movies?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with ankle?", "label_name": "NEED_CLARIFICATION"}
{"text": "All right, thanks. What about in Chicago?", "label_name": "WANT_DIFFERENT"}
{"text": "No, thanks so much for much help.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about windstar cruises?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not right now, that would be all.", "label_name": "WRONG_ANSWER"}
{"text": "Not afternoon, I said morning.", "label_name": "WRONG_ANSWER"}
{"text": "That's incorrect. The number is 1.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a smartphone?", "label_name": "NEED_CLARIFICATION"}
{"text": "That is not right, because I want the reservation be for 10:45.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about heart hospital of lafayette?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with tile backsplash?", "label_name": "NEED_CLARIFICATION"}
{"text": "actually, help me understand this.", "label_name": "NEED_CLARIFICATION"}
{"text": "Are there other hotels fitting my requirements?", "label_name": "WANT_DIFFERENT"}
{"text": "If you could provide me with information on the other events.", "label_name": "WANT_DIFFERENT"}
{"text": "No thanks, I have a Im saving up for soon. Would you able to find a oneway flight?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with group policy settings?", "label_name": "NEED_CLARIFICATION"}
{"text": "change the departure date to the 2nd this month.", "label_name": "WRONG_ANSWER"}
{"text": "I have available times on the 14th of March?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about buick enclave?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, change it to Svetlana for $96.", "label_name": "WRONG_ANSWER"}
{"text": "No, not right now. Thanks so much for your are", "label_name": "WRONG_ANSWER"}
{"text": "No you so much.", "label_name": "WRONG_ANSWER"}
{"text": "Thank you is much for your help today! That so everything I need.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about fife instrument?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with power outages?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about agadir?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about bentley systems?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not now. Thanks for booking room.", "label_name": "WRONG_ANSWER"}
{"text": "What lese is", "label_name": "WANT_DIFFERENT"}
{"text": "No actually I changed my mind and want to watch The Farewell insead.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a car battery?", "label_name": "NEED_CLARIFICATION"}
{"text": "I not need to the reservation now.", "label_name": "WANT_DIFFERENT"}
{"text": "Actually, can we make it for 7:30 on March 12th?", "label_name": "WRONG_ANSWER"}
{"text": "Okay. Now how about event dates in San Diego. I heard Tuxedo is worth going to.", "label_name": "WANT_DIFFERENT"}
{"text": "No, not at Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "Okay. Can you find me a psychologist?", "label_name": "WANT_DIFFERENT"}
{"text": "No, that's all the things I want for now.", "label_name": "WRONG_ANSWER"}
{"text": "I would like to find events for some other dates as well.", "label_name": "WANT_DIFFERENT"}
{"text": "No, I don't need that. Can you find a dentist in the same area, too?", "label_name": "WANT_DIFFERENT"}
{"text": "Is there time? I to see it on the 5th of this month.", "label_name": "WANT_DIFFERENT"}
{"text": "Are there any alternatives? Preferably one with a 4.3 rating and above and provides laundry service.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about the crayon box that talked?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I don't want to book an appointment.", "label_name": "WANT_DIFFERENT"}
{"text": "Totally incorrect.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about university of memphis?", "label_name": "NEED_CLARIFICATION"}
{"text": "[USER What time is game?", "label_name": "WANT_DIFFERENT"}
{"text": "I think that be all. Thank you.", "label_name": "WRONG_ANSWER"}
{"text": "What else do you have? Can you find a three star hotel with wifi?", "label_name": "WANT_DIFFERENT"}
{"text": "Nope, try again! I need more options please.", "label_name": "WANT_DIFFERENT"}
{"text": "Okay. Anything else you would recommend? I'm looking for a museum.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about cent sign?", "label_name": "NEED_CLARIFICATION"}
{"text": "I've changed my mind. I want to go to Mister Jiu's. There'll be three of us.", "label_name": "WRONG_ANSWER"}
{"text": "No, not now. Is there a bus I need to leave on 1st need four flexible tickets.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about ortho atlanta?", "label_name": "NEED_CLARIFICATION"}
{"text": "No thanks, not right now. Can you look for a dentist me in the Mountain View area?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with vehicle registration?", "label_name": "NEED_CLARIFICATION"}
{"text": "No thanks for the help.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about hill physicians medical group?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about iron maiden fear of the dark?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, please look a table on the 5th of March.", "label_name": "WRONG_ANSWER"}
{"text": "No, I don't want to. That is all that I need.", "label_name": "WANT_DIFFERENT"}
{"text": "No, I actually rooms 1 room. Sorry.", "label_name": "WRONG_ANSWER"}
{"text": "[USER need a for 4 people preferably Pool ride.", "label_name": "WRONG_ANSWER"}
{"text": "Would you find me some more apartments?", "label_name": "WANT_DIFFERENT"}
{"text": "What will weather be on the 12th of this", "label_name": "WANT_DIFFERENT"}
{"text": "No, It's all for today. Thanks", "label_name": "WRONG_ANSWER"}
{"text": "Thank you. Now, please get me the balance in my checking account.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about encompass insurance?", "label_name": "NEED_CLARIFICATION"}
{"text": "Negative I do not want to buy tickets for the movie now.", "label_name": "WANT_DIFFERENT"}
{"text": "child-friendly?", "label_name": "WANT_DIFFERENT"}
{"text": "No, on kitchen device.", "label_name": "WRONG_ANSWER"}
{"text": "No I want to listen to it in the Kitchen.", "label_name": "WRONG_ANSWER"}
{"text": "How about Novato on the 12th of March 2019", "label_name": "WANT_DIFFERENT"}
{"text": "I want the check in date to be the 2nd of this month and I want to stay 2 days.", "label_name": "WRONG_ANSWER"}
{"text": "Can you find me more restaurants?", "label_name": "WANT_DIFFERENT"}
{"text": "Nope, lot. a that's", "label_name": "WRONG_ANSWER"}
{"text": "No, play it with subtitles", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a golf handicap?", "label_name": "NEED_CLARIFICATION"}
{"text": "You misunderstood.", "label_name": "WRONG_ANSWER"}
{"text": "Actually, cast it on my bedroom speaker instead.", "label_name": "WRONG_ANSWER"}
{"text": "No,i don't need to book now", "label_name": "WANT_DIFFERENT"}
{"text": "Is that will be all, thanks!", "label_name": "WRONG_ANSWER"}
{"text": "No that was anything", "label_name": "WRONG_ANSWER"}
{"text": "What another events do you have?", "label_name": "WANT_DIFFERENT"}
{"text": "Is there anything else I can do for you? [USER No. Thank you once again.", "label_name": "WRONG_ANSWER"}
{"text": "now, thanks. I want to find a salon please, something unisex in Concord.", "label_name": "WANT_DIFFERENT"}
{"text": "No, not now and I want you to search for some movies around there to watch and in particularly searc", "label_name": "WANT_DIFFERENT"}
{"text": "QUERY] penguin highway works [SYSTEM RESPONSE] wanna get [USER No I do not", "label_name": "WANT_DIFFERENT"}
{"text": "Actually, a ride for 3.", "label_name": "WRONG_ANSWER"}
{"text": "It appears that that doesn't make sense to me", "label_name": "NEED_CLARIFICATION"}
{"text": "Can you change the date to the 10th of March?", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about encore capital group?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, title the alarm cooking and set it for evening 4.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about the oblongs?", "label_name": "NEED_CLARIFICATION"}
{"text": "No thanks very much.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a blank page?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, that at is for 4 people.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with acrylic paint?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about michigan state university?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I don't want to buy tickets now. I just need information. Thank you!", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about hellevator?", "label_name": "NEED_CLARIFICATION"}
{"text": "Negative will do that later", "label_name": "WANT_DIFFERENT"}
{"text": "What about a different, more luxurious train?", "label_name": "WANT_DIFFERENT"}
{"text": "Find something else, I'd like to fly with united airlines frmo washington.", "label_name": "WANT_DIFFERENT"}
{"text": "Play it in my bedroom.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about alectinib?", "label_name": "NEED_CLARIFICATION"}
{"text": "I need more details about the instructions", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about hitler the rise of evil?", "label_name": "NEED_CLARIFICATION"}
{"text": "Actually is there anything available at 3:30 pm on March 3rd?", "label_name": "WRONG_ANSWER"}
{"text": "hmm, just to clarify.", "label_name": "NEED_CLARIFICATION"}
{"text": "Fine but about type type show? I would like it to be on the 14th of this month.", "label_name": "WANT_DIFFERENT"}
{"text": "No, not at the moment. Thanks for everything.", "label_name": "WRONG_ANSWER"}
{"text": "I would like to hear more rental car choices", "label_name": "WANT_DIFFERENT"}
{"text": "Just a slight change. I need 2 tickets.", "label_name": "WRONG_ANSWER"}
{"text": "Thanks but I'm", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about aqaba?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about asparaginase?", "label_name": "NEED_CLARIFICATION"}
{"text": "Oh, nice Any other event?", "label_name": "WANT_DIFFERENT"}
{"text": "That will be all, you very much.", "label_name": "WRONG_ANSWER"}
{"text": "Nope I want to share with Sandra.", "label_name": "WRONG_ANSWER"}
{"text": "I have mind. How about something in Napa. Roy is good from heard.", "label_name": "WRONG_ANSWER"}
{"text": "No, that's all for me. Thanks again!", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about clark atlanta university?", "label_name": "NEED_CLARIFICATION"}
{"text": "I actually want a therapist in Novato.", "label_name": "WANT_DIFFERENT"}
{"text": "I'm having trouble understanding the formula", "label_name": "NEED_CLARIFICATION"}
{"text": "Nevermind. I want four tickets.", "label_name": "WRONG_ANSWER"}
{"text": "Any different buses available?", "label_name": "WANT_DIFFERENT"}
{"text": "let's switch rooms. Please play it on the bedroom device.", "label_name": "WRONG_ANSWER"}
{"text": "um, because?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, please change that to Music practice.", "label_name": "WRONG_ANSWER"}
{"text": "That is not right, because I only need 1 ticket, and would be nice to have it for Annual School Perf", "label_name": "WRONG_ANSWER"}
{"text": "No, I'd like to book the room for three days.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with internet password?", "label_name": "NEED_CLARIFICATION"}
{"text": "Actually no, play it on my kitchen speaker.", "label_name": "WRONG_ANSWER"}
{"text": "um, where can i find more information?", "label_name": "NEED_CLARIFICATION"}
{"text": "Look for 4 tickets on another flight.", "label_name": "WANT_DIFFERENT"}
{"text": "I don't need anything else, thanks lot.", "label_name": "WRONG_ANSWER"}
{"text": "Can you also tell me the balance on my savings account?", "label_name": "WANT_DIFFERENT"}
{"text": "Sorry, i want to book for 1 people.", "label_name": "WRONG_ANSWER"}
{"text": "No, actually. I it from my bedroom speaker.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with bookmark bar?", "label_name": "NEED_CLARIFICATION"}
{"text": "Negative I'm good, thank you.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a limelight hydrangea?", "label_name": "NEED_CLARIFICATION"}
{"text": "I guess this part about the example is unclear", "label_name": "NEED_CLARIFICATION"}
{"text": "I need more details about the result", "label_name": "NEED_CLARIFICATION"}
{"text": "Please find some other", "label_name": "WANT_DIFFERENT"}
{"text": "um, something else please.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about chrysopidae?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I won't tickets. But I do need to find a hotel there.", "label_name": "WANT_DIFFERENT"}
{"text": "perhaps another time.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that's all need.", "label_name": "WRONG_ANSWER"}
{"text": "[USER Thanks. [SYSTEM RESPONSE] How else can I help? [USER That is all. you.", "label_name": "WRONG_ANSWER"}
{"text": "What version of Internet Explorer are you looking for?", "label_name": "NEED_CLARIFICATION"}
{"text": "I'd like to see some other options. I'll need three rooms in total.", "label_name": "WANT_DIFFERENT"}
{"text": "Sorry, what was that?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about borobudur?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, make it one ticket.", "label_name": "WRONG_ANSWER"}
{"text": "I need more details about the formula", "label_name": "NEED_CLARIFICATION"}
{"text": "I need more details about that", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with angular cli?", "label_name": "NEED_CLARIFICATION"}
{"text": "Negative I don't want to purchase tickets now.", "label_name": "WANT_DIFFERENT"}
{"text": "Are there any hotels?", "label_name": "WANT_DIFFERENT"}
{"text": "Okay. Can you find me another hotel?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about eastern washington university?", "label_name": "NEED_CLARIFICATION"}
{"text": "Is there any another house?", "label_name": "WANT_DIFFERENT"}
{"text": "As far as I know, i need more details about the output", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about whole health clinical group?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about a&w root beer?", "label_name": "NEED_CLARIFICATION"}
{"text": "Actually like to go with friends so would like four tickets.", "label_name": "WRONG_ANSWER"}
{"text": "Can help you with something [USER No, is all. Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "Thanks. Now tell me the balance with my savings account", "label_name": "WANT_DIFFERENT"}
{"text": "No, make for 2:15 in the afternoon on March 5th.", "label_name": "WRONG_ANSWER"}
{"text": "This is incorrect. The restaurant is Black", "label_name": "WRONG_ANSWER"}
{"text": "The restaurant Siam Taste.", "label_name": "WRONG_ANSWER"}
{"text": "Are there any other models?", "label_name": "WANT_DIFFERENT"}
{"text": "No. Keep it on hold.", "label_name": "WANT_DIFFERENT"}
{"text": "Nope search for something else to match my requirements.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a hoverboard?", "label_name": "NEED_CLARIFICATION"}
{"text": "Change to half past 10 in the morning for this Saturday.", "label_name": "WRONG_ANSWER"}
{"text": "Would you like rent the car? [USER No, is all I needed.", "label_name": "WANT_DIFFERENT"}
{"text": "As far as I know, can you explain the warranty terms probably?", "label_name": "NEED_CLARIFICATION"}
{"text": "Could you elaborate on the suggestion I guess?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with favorite bar?", "label_name": "NEED_CLARIFICATION"}
{"text": "Hmm, I want something else. A large car.", "label_name": "WANT_DIFFERENT"}
{"text": "As far as I know, you got the number wrong. It's 2 tickets perhaps.", "label_name": "WRONG_ANSWER"}
{"text": "an I would like to visit on the 4th.", "label_name": "WRONG_ANSWER"}
{"text": "not right now. I want to watch it on Tuesday next week, at Cinema.", "label_name": "WANT_DIFFERENT"}
{"text": "uh, what do you mean by that?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I would like to check out on the 10th of this month.", "label_name": "WRONG_ANSWER"}
{"text": "That's a little early for me to be honest. Are there any other options? I only need 1 ticket.", "label_name": "WANT_DIFFERENT"}
{"text": "Sounds cool but more into Electronica.", "label_name": "WANT_DIFFERENT"}
{"text": "Sounds nice, but can you find me something else on the 10th of March.", "label_name": "WANT_DIFFERENT"}
{"text": "No, make it for half past", "label_name": "WRONG_ANSWER"}
{"text": "Not now. Many QUERY]", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about fort carson?", "label_name": "NEED_CLARIFICATION"}
{"text": "Can you find other ones? I want a Compact car and I'll pick it up in Paris.", "label_name": "WANT_DIFFERENT"}
{"text": "Actually, I changed my find me someone else.", "label_name": "WANT_DIFFERENT"}
{"text": "actually, almost but not correct.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about rapid city airport?", "label_name": "NEED_CLARIFICATION"}
{"text": "I'd prefer an alternative this", "label_name": "WANT_DIFFERENT"}
{"text": "Can you please tell me if there are any other events.", "label_name": "WANT_DIFFERENT"}
{"text": "Negative but I want to find something else interesting to do on that day.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with chevron credit card?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about the treatment of hypokalemia?", "label_name": "NEED_CLARIFICATION"}
{"text": "No I that's great.", "label_name": "WRONG_ANSWER"}
{"text": "I prefer 2 in the afternoon.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with cloth diapers?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with umbilical hernia?", "label_name": "NEED_CLARIFICATION"}
{"text": "Yep but please make it a private transaction.", "label_name": "WRONG_ANSWER"}
{"text": "No. Change the destination to Landmark's Albany Twin.", "label_name": "WRONG_ANSWER"}
{"text": "No. I would like to pick up the car at 11 o\"clock in the", "label_name": "WRONG_ANSWER"}
{"text": "Please find some other apartment that should have 3 bed rooms", "label_name": "WANT_DIFFERENT"}
{"text": "Not thank you, I do not require further help.", "label_name": "WANT_DIFFERENT"}
{"text": "Nope, by.", "label_name": "WRONG_ANSWER"}
{"text": "No, I the to watch want movie Breakthrough.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about ga state patrol?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with w-2 forms?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with tax deductions?", "label_name": "NEED_CLARIFICATION"}
{"text": "No actually, cast it the my", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about tanzania?", "label_name": "NEED_CLARIFICATION"}
{"text": "This is great, and although I like baseballs I really like", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about licking mo?", "label_name": "NEED_CLARIFICATION"}
{"text": "it. that's Nope,", "label_name": "WRONG_ANSWER"}
{"text": "This part about the formula is unclear", "label_name": "NEED_CLARIFICATION"}
{"text": "Any alternative ideas?", "label_name": "WANT_DIFFERENT"}
{"text": "[SYSTEM RESPONSE] Do you need any other help?", "label_name": "WRONG_ANSWER"}
{"text": "ok, and next thursday?", "label_name": "WANT_DIFFERENT"}
{"text": "No but thank you for helping.", "label_name": "WRONG_ANSWER"}
{"text": "No, that will do it, thanks", "label_name": "WRONG_ANSWER"}
{"text": "Which \"\"npc\"\" do you mean?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, San Francisco not Seattle.", "label_name": "WRONG_ANSWER"}
{"text": "Hmmm.. Any different flights I should consider? I'm heading to LAX instead", "label_name": "WANT_DIFFERENT"}
{"text": "Which \"\"fssa\"\" do you mean?", "label_name": "NEED_CLARIFICATION"}
{"text": "Actually, no. Please play it on my bedroom device.", "label_name": "WRONG_ANSWER"}
{"text": "I would like a room four days.", "label_name": "WRONG_ANSWER"}
{"text": "No, thanks for helping me out.", "label_name": "WRONG_ANSWER"}
{"text": "that's it. for the help.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a wedding officiant?", "label_name": "NEED_CLARIFICATION"}
{"text": "No actually this think I might go solo, so just for 1", "label_name": "WRONG_ANSWER"}
{"text": "Cool, are there any other attractions can me?", "label_name": "WANT_DIFFERENT"}
{"text": "Yes, but we can do that later. Let's find attractions there that don't cost anything.", "label_name": "WANT_DIFFERENT"}
{"text": "Nope. Do they have a spot t 09:45?", "label_name": "WRONG_ANSWER"}
{"text": "Can you find me some Barbecue restaurants?", "label_name": "WANT_DIFFERENT"}
{"text": "I would like to have the movie with subtitles.", "label_name": "WRONG_ANSWER"}
{"text": "Not please play it with subtitles.", "label_name": "WRONG_ANSWER"}
{"text": "Could you clarify the method probably?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about wintersun?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not now, cheers for your help.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a frequency table?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about the sun also rises?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about ft sill?", "label_name": "NEED_CLARIFICATION"}
{"text": "Do you have any different bus options?", "label_name": "WANT_DIFFERENT"}
{"text": "Not right now, purchase tickets to the event you found earlier.", "label_name": "WANT_DIFFERENT"}
{"text": "Could you change the check out date to March 7th instead?", "label_name": "WRONG_ANSWER"}
{"text": "Tell me my account balance.", "label_name": "WANT_DIFFERENT"}
{"text": "Can you explain the dosage?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a christmas tree?", "label_name": "NEED_CLARIFICATION"}
{"text": "I am searching for a a hotel room in London, UK. Are there any other suitable hotels available?", "label_name": "WANT_DIFFERENT"}
{"text": "welcome. are welcome", "label_name": "WRONG_ANSWER"}
{"text": "Please explain.", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope. I don't wish to get tickets. That is what I want.", "label_name": "WANT_DIFFERENT"}
{"text": "Which \"\"bvs\"\" do you mean?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with sodium levels?", "label_name": "NEED_CLARIFICATION"}
{"text": "Do you have any alternative cars for I'm looking for Concord and I can pick it up at half past 10 in", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with silver coins?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a christmas cactus?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about vindictus?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a concrete floor?", "label_name": "NEED_CLARIFICATION"}
{"text": "Please search for other movies. I am into scary movies and would like to go to Century Daly City.", "label_name": "WANT_DIFFERENT"}
{"text": "Not interested. Any other movies which are directed by QUentin Tarantino?", "label_name": "WANT_DIFFERENT"}
{"text": "Not now, thank you. That's all I need.", "label_name": "WANT_DIFFERENT"}
{"text": "No, I need to search for something else, help me.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with one million dollars?", "label_name": "NEED_CLARIFICATION"}
{"text": "actually, i have no idea what that means.", "label_name": "NEED_CLARIFICATION"}
{"text": "No, actually make that for the evening 5:15.", "label_name": "WRONG_ANSWER"}
{"text": "help? Appreciate the help", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about brook trout?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not just yet first I need a round ticket.", "label_name": "WANT_DIFFERENT"}
{"text": "Are there any another there?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a punching bag?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about battle of leyte gulf?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope make it for morning 10.", "label_name": "WRONG_ANSWER"}
{"text": "Maybe how does this relate to the previous topic perhaps?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about nijmegen?", "label_name": "NEED_CLARIFICATION"}
{"text": "Could you find alternatives for me? I would like to reserve one room.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a green dot card?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I to check with my friends first to see if they to go. That's everything need right now.", "label_name": "WANT_DIFFERENT"}
{"text": "No, I want to check in next Tuesday. I need 3 rooms.", "label_name": "WRONG_ANSWER"}
{"text": "No not at time.", "label_name": "WANT_DIFFERENT"}
{"text": "No, you. all. Thank that's", "label_name": "WRONG_ANSWER"}
{"text": "No, not for help. I'll check back.", "label_name": "WRONG_ANSWER"}
{"text": "It appears that i'm not sure I understand the output", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope make that one person please.", "label_name": "WRONG_ANSWER"}
{"text": "Actually, make it for four.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with ms account?", "label_name": "NEED_CLARIFICATION"}
{"text": "right thanks, could you find me a country song please.", "label_name": "WANT_DIFFERENT"}
{"text": "No, I would like to check in on the 3rd of March and check out on the 4th.", "label_name": "WRONG_ANSWER"}
{"text": "No, I will purchase later thank you.", "label_name": "WANT_DIFFERENT"}
{"text": "Any another suggestions you have?", "label_name": "WANT_DIFFERENT"}
{"text": "Alright, did you find any other attractions in LA?", "label_name": "WANT_DIFFERENT"}
{"text": "Which \"\"vso\"\" do you mean?", "label_name": "NEED_CLARIFICATION"}
{"text": "It would help if you explained the suggestion better", "label_name": "NEED_CLARIFICATION"}
{"text": "You mentioned finding two restaurants. What's your suggestion?", "label_name": "WANT_DIFFERENT"}
{"text": "Negative try the 3rd of March", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about how to die in oregon?", "label_name": "NEED_CLARIFICATION"}
{"text": "It would help if you explained the method better", "label_name": "NEED_CLARIFICATION"}
{"text": "Negative It's all, thank you", "label_name": "WRONG_ANSWER"}
{"text": "No thanks, that should do it for now.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about prime occupational medicine?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope not at this time. I am all set.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about okotoks?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about schiffert health center?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with bitcoin address?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I'm done with you now.", "label_name": "WRONG_ANSWER"}
{"text": "No, not those. Please find some other titles.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a whatsapp video call?", "label_name": "NEED_CLARIFICATION"}
{"text": "What about Shanice in New York City, check for other dates please.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a sticky note?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about etomidate?", "label_name": "NEED_CLARIFICATION"}
{"text": "No thanks. I'm good", "label_name": "WRONG_ANSWER"}
{"text": "Nothing else, thanks for the help.", "label_name": "WRONG_ANSWER"}
{"text": "Okay. What's another choice, kindly", "label_name": "WANT_DIFFERENT"}
{"text": "No. I need 3 tickets.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a satellite dish?", "label_name": "NEED_CLARIFICATION"}
{"text": "No. Thank you !", "label_name": "WRONG_ANSWER"}
{"text": "Nope. I am in a group of 3 people.", "label_name": "WRONG_ANSWER"}
{"text": "Please change the time to 12:45 book accordingly.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with windows ink workspace?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about lusaka?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about the mountain between us?", "label_name": "NEED_CLARIFICATION"}
{"text": "Can you find me a different salon?", "label_name": "WANT_DIFFERENT"}
{"text": "Yes, but later. I to some things to do there.", "label_name": "WANT_DIFFERENT"}
{"text": "No it please", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about international lonestar?", "label_name": "NEED_CLARIFICATION"}
{"text": "What browser are you looking for?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, make it Kabul Kabob & Grill instead", "label_name": "WRONG_ANSWER"}
{"text": "Are there any another options and leaving on Tuesday next week.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about southern states cooperative?", "label_name": "NEED_CLARIFICATION"}
{"text": "I changed correct? mind. Make the table for one person on March 7th.", "label_name": "WRONG_ANSWER"}
{"text": "Any alternative hotel I may enjoy? I want something with 2 rooms and a one star rating.", "label_name": "WANT_DIFFERENT"}
{"text": "No. I am not interested in getting the", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with glasses prescription?", "label_name": "NEED_CLARIFICATION"}
{"text": "I don't follow the diagnosis", "label_name": "NEED_CLARIFICATION"}
{"text": "reservation. is incorrect. The restaurant is Black Angus.", "label_name": "WRONG_ANSWER"}
{"text": "wait ???", "label_name": "NEED_CLARIFICATION"}
{"text": "No, but thanks again.", "label_name": "WRONG_ANSWER"}
{"text": "You have a scheduled Viewing at San Jose Apartments that will begin at 2:30 pm.", "label_name": "WANT_DIFFERENT"}
{"text": "Not right now. I want to see a movie when I get there.", "label_name": "WANT_DIFFERENT"}
{"text": "I guess make that shorter", "label_name": "WANT_DIFFERENT"}
{"text": "I'd still like to hear other movie suggestions before I decide.", "label_name": "WANT_DIFFERENT"}
{"text": "actually, why?", "label_name": "NEED_CLARIFICATION"}
{"text": "If you could find some more movies. I would like to watch at AMC Bay Street for a 3d show.", "label_name": "WANT_DIFFERENT"}
{"text": "Neat! Do you have any alternative attractions in mind?", "label_name": "WANT_DIFFERENT"}
{"text": "You to add new event to you calendar? [USER not now.", "label_name": "WANT_DIFFERENT"}
{"text": "all That's Nope. for now.", "label_name": "WRONG_ANSWER"}
{"text": "tldr? tho", "label_name": "NEED_CLARIFICATION"}
{"text": "Shall i assist you with anything else? [USER No, thanks your help.", "label_name": "WRONG_ANSWER"}
{"text": "No, that will be all for Thanks for", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a compound bow?", "label_name": "NEED_CLARIFICATION"}
{"text": "Do I have any other bus options?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about blackwater river state park?", "label_name": "NEED_CLARIFICATION"}
{"text": "Oh, sorry. I just got a that I'll have to leave on the 2nd of March. Would that date for me,", "label_name": "WRONG_ANSWER"}
{"text": "uh, do you have a better option?", "label_name": "WANT_DIFFERENT"}
{"text": "No, that help everything. Thanks so much for your was", "label_name": "WRONG_ANSWER"}
{"text": "Hold on. Can you change that to the 2nd of March?", "label_name": "WRONG_ANSWER"}
{"text": "Man on the TV?", "label_name": "WRONG_ANSWER"}
{"text": "In my opinion, what error code is that probably?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about assumption college?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a franchise business?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, that is not required. Thanks though!", "label_name": "WANT_DIFFERENT"}
{"text": "That is incorrect. I would like the table for Friday next", "label_name": "WRONG_ANSWER"}
{"text": "Oops. I meant to tell you that the event is the Phillies Vs Braves game.", "label_name": "WRONG_ANSWER"}
{"text": "Nope, that'll be all. Thanks much!", "label_name": "WRONG_ANSWER"}
{"text": "I mentioned 1 night, not 2 nights.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about hamilton county public health?", "label_name": "NEED_CLARIFICATION"}
{"text": "Can you find me some other salon?", "label_name": "WANT_DIFFERENT"}
{"text": "Can you search regular show movies shown in Santa Clara", "label_name": "WANT_DIFFERENT"}
{"text": "And how about on March 12th in Anaheim?", "label_name": "WANT_DIFFERENT"}
{"text": "No make it 4 and and check in will be on March 10th.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about libreville?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, thanks for helping me", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about gulf oil?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about ancient india?", "label_name": "NEED_CLARIFICATION"}
{"text": "Skip to the next option available", "label_name": "WANT_DIFFERENT"}
{"text": "No, I would like 1 ticket.", "label_name": "WRONG_ANSWER"}
{"text": "actually, what are the steps involved?", "label_name": "NEED_CLARIFICATION"}
{"text": "Let's make that for the 13th, and change the salon to Divine Beauty Salon.", "label_name": "WRONG_ANSWER"}
{"text": "What's something later?", "label_name": "WANT_DIFFERENT"}
{"text": "hmm, meaning?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about chester?", "label_name": "NEED_CLARIFICATION"}
{"text": "I am interested in knowing the other dates told me about.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about d\u00fcsseldorf?", "label_name": "NEED_CLARIFICATION"}
{"text": "Ok, look again in SFO", "label_name": "WANT_DIFFERENT"}
{"text": "Is there any different flights?", "label_name": "WANT_DIFFERENT"}
{"text": "For now we're set you squared away, but thanks for all your help", "label_name": "WRONG_ANSWER"}
{"text": "Yes. Thanks a lot.", "label_name": "WRONG_ANSWER"}
{"text": "No, I want one", "label_name": "WRONG_ANSWER"}
{"text": "Do you have some another alternative?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about this university?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about south charlotte dermatology?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about alteryx?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with idle air control valve?", "label_name": "NEED_CLARIFICATION"}
{"text": "No check in is next Thursday and check out is March 11th.", "label_name": "WRONG_ANSWER"}
{"text": "Ok, what about in Pleasanton, next Wednesday?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about ford trimotor?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about flying fish?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not now, thanks! Now want to listen the song", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about iberdrola?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, there are 4 persons in my group.", "label_name": "WRONG_ANSWER"}
{"text": "no i actually want falcons vs buccaneers next thursday", "label_name": "WRONG_ANSWER"}
{"text": "Please other results. movies directed by Martin Scorsese, and I also like a documentary.", "label_name": "WANT_DIFFERENT"}
{"text": "No I got it from here thanks.", "label_name": "WRONG_ANSWER"}
{"text": "Actually let's change that to 4 o'clock in the evening", "label_name": "WRONG_ANSWER"}
{"text": "Hotel in San Francisco with a check in on March 3rd and check out on March 4th.", "label_name": "WRONG_ANSWER"}
{"text": "else? that's all", "label_name": "WRONG_ANSWER"}
{"text": "No, that's all. Thanks", "label_name": "WRONG_ANSWER"}
{"text": "I would also like to know how much is in my savings account.", "label_name": "WANT_DIFFERENT"}
{"text": "I like that one, but would you mind to find some other events? I really love sports events.", "label_name": "WANT_DIFFERENT"}
{"text": "Actually, the process is wrong", "label_name": "WRONG_ANSWER"}
{"text": "No, thank you, you've been a great help am I really appreciate it!", "label_name": "WRONG_ANSWER"}
{"text": "No, you've taken care of everything thanks.", "label_name": "WRONG_ANSWER"}
{"text": "None of those, what", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a concrete bird bath?", "label_name": "NEED_CLARIFICATION"}
{"text": "good but find me something else.It will be ok for me to be in March 13th around NYC.", "label_name": "WANT_DIFFERENT"}
{"text": "No thanks. you find a one-way flight there next week? I have 0 bags to check in.", "label_name": "WANT_DIFFERENT"}
{"text": "No, not now. Could you get me a reservation as Patxi's in that area please?", "label_name": "WANT_DIFFERENT"}
{"text": "Are there other to choose", "label_name": "WANT_DIFFERENT"}
{"text": "nope thanks a lot for your help", "label_name": "WRONG_ANSWER"}
{"text": "Is there anything I'm going to Washington.", "label_name": "WANT_DIFFERENT"}
{"text": "like a one way flight there.", "label_name": "WANT_DIFFERENT"}
{"text": "Can you actually find me a from portland?", "label_name": "WANT_DIFFERENT"}
{"text": "No, I don't really want a reservation right now.", "label_name": "WANT_DIFFERENT"}
{"text": "No, thanks for Thank help.", "label_name": "WRONG_ANSWER"}
{"text": "Not thanks, could you get me a regular cab ride for two to 2316 Dwight Way instead?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a business meeting?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with account information?", "label_name": "NEED_CLARIFICATION"}
{"text": "In my opinion, i'm not sure I understand the example", "label_name": "NEED_CLARIFICATION"}
{"text": "Is there some other house you can suggest, has a rating of 4.6 or higher?", "label_name": "WANT_DIFFERENT"}
{"text": "Please my savings account balance.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about granisetron?", "label_name": "NEED_CLARIFICATION"}
{"text": "Are there any other attractions that you can think of?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about midrand?", "label_name": "NEED_CLARIFICATION"}
{"text": "I like the sound of that, but let's keep looking. What else is there?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about the masque of the red death?", "label_name": "NEED_CLARIFICATION"}
{"text": "Is there anything else? I like La Min Phyu songs.", "label_name": "WANT_DIFFERENT"}
{"text": "Not this moment. I desire to find an event to go to.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about magpie?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about flag of australia?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about sealed air?", "label_name": "NEED_CLARIFICATION"}
{"text": "What about African by Diamond Platnumz A Boy Tandale? you will like it.", "label_name": "WANT_DIFFERENT"}
{"text": "Any other times I guess?", "label_name": "WANT_DIFFERENT"}
{"text": "that was Thanks!", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about radio romance?", "label_name": "NEED_CLARIFICATION"}
{"text": "so, like what?", "label_name": "NEED_CLARIFICATION"}
{"text": "Is there any free time?", "label_name": "WANT_DIFFERENT"}
{"text": "No, search for some other cars.", "label_name": "WANT_DIFFERENT"}
{"text": "Any alternative cars available to rent?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about saab automobile?", "label_name": "NEED_CLARIFICATION"}
{"text": "What else? I would like a small car to pick up afternoon 3:30.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with hardie board siding?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, Please change the check out date to 9th of this month and the number of people to 4.", "label_name": "WRONG_ANSWER"}
{"text": "Are there any other hotels that I might prefer? I would like a 3 star hotel.", "label_name": "WANT_DIFFERENT"}
{"text": "Not just yet. Can you check the weather?", "label_name": "WANT_DIFFERENT"}
{"text": "Could you find some other movies? I prefer Adventure movies.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about 343 industries?", "label_name": "NEED_CLARIFICATION"}
{"text": "Present me some other apartment", "label_name": "WANT_DIFFERENT"}
{"text": "[SYSTEM second thought, play it on bedroom device my bedroom.", "label_name": "WRONG_ANSWER"}
{"text": "Could you find another one?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about city of stockton?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about nayak plastic surgery?", "label_name": "NEED_CLARIFICATION"}
{"text": "Are you able to find anything", "label_name": "WANT_DIFFERENT"}
{"text": "no thanks for help help", "label_name": "WRONG_ANSWER"}
{"text": "No, I want 9 am, not 10 am.", "label_name": "WRONG_ANSWER"}
{"text": "Nope I'm quite done with you for now.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about winston's wish?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I don't need to book a table.", "label_name": "WANT_DIFFERENT"}
{"text": "No, not right now. I'd like to reserve a table for 1 at 1:30 pm for that restaurant.", "label_name": "WANT_DIFFERENT"}
{"text": "No, help you.", "label_name": "WRONG_ANSWER"}
{"text": "Do you want to buy tickets for the event? [USER Maybe later, interested in more for events.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about cancer symptoms?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope, thanks want for your help.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about maned wolf?", "label_name": "NEED_CLARIFICATION"}
{"text": "the instructions doesn't seem accurate", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about merrimack college?", "label_name": "NEED_CLARIFICATION"}
{"text": "Perhaps what else do you have probably?", "label_name": "WANT_DIFFERENT"}
{"text": "actually, how does this apply to my situation?", "label_name": "NEED_CLARIFICATION"}
{"text": "uh, what are the requirements?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about the site?", "label_name": "NEED_CLARIFICATION"}
{"text": "As far as I know, what do you mean by the approach?", "label_name": "NEED_CLARIFICATION"}
{"text": "Okay, can you maybe find me a two star hotel?", "label_name": "WANT_DIFFERENT"}
{"text": "I'm not sure I understand this", "label_name": "NEED_CLARIFICATION"}
{"text": "Is there any Baseball event on the 1st?", "label_name": "WANT_DIFFERENT"}
{"text": "This part about the recommendation is unclear", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about superjail?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about great blue heron?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about the disease?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about perficient?", "label_name": "NEED_CLARIFICATION"}
{"text": "I saw that already. I prefer to see a comedy directed by chris butler.", "label_name": "WANT_DIFFERENT"}
{"text": "No, I prefer with subtitles", "label_name": "WRONG_ANSWER"}
{"text": "No, 17:45 would be better.", "label_name": "WRONG_ANSWER"}
{"text": "I need it until the 9th of this month", "label_name": "WANT_DIFFERENT"}
{"text": "hmm, that doesn't seem right to me.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about hampi?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about lugano?", "label_name": "NEED_CLARIFICATION"}
{"text": "I want some not very costly please.", "label_name": "WANT_DIFFERENT"}
{"text": "nevermind. Thanks anyways.", "label_name": "WRONG_ANSWER"}
{"text": "Now, I want 1 room. I to check in on the 4th of March.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about jacksonville state university?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about appalachia?", "label_name": "NEED_CLARIFICATION"}
{"text": "What about other cars? Find a Compact car to be picked up at 1:30 in the afternoon.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that will be all. you.", "label_name": "WRONG_ANSWER"}
{"text": "no, done with them, bye.", "label_name": "WRONG_ANSWER"}
{"text": "Are there any available cars in Paris?", "label_name": "WANT_DIFFERENT"}
{"text": "Inaccurate try again, I need 3 tickets on March 14th. Your batting 0", "label_name": "WRONG_ANSWER"}
{"text": "Not at this moment. That will be all.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that is you Thank you for helping.", "label_name": "WRONG_ANSWER"}
{"text": "No. my kitchen device.", "label_name": "WRONG_ANSWER"}
{"text": "Correct me if I'm wrong, but your answer doesn't make sense to me", "label_name": "NEED_CLARIFICATION"}
{"text": "No, the 14th would be better.", "label_name": "WRONG_ANSWER"}
{"text": "No, not at this time! Thank", "label_name": "WRONG_ANSWER"}
{"text": "What version of PowerPoint are you looking for?", "label_name": "NEED_CLARIFICATION"}
{"text": "It appears that i don't understand the diagnosis", "label_name": "NEED_CLARIFICATION"}
{"text": "There's an error in the steps", "label_name": "WRONG_ANSWER"}
{"text": "Could you find something else? I want a hotel with wifi.", "label_name": "WANT_DIFFERENT"}
{"text": "What else is available? I an event in Livermore on 7th.", "label_name": "WANT_DIFFERENT"}
{"text": "I don't need anything else, thanks again.", "label_name": "WRONG_ANSWER"}
{"text": "No thank you, that is all I need RESPONSE] now!", "label_name": "WRONG_ANSWER"}
{"text": "Just to confirm, you need a table for 2 at Bai Thai in San Francisco at 1 pm today?", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about perkins engines?", "label_name": "NEED_CLARIFICATION"}
{"text": "Thank you. I need another weather This time for Nairobi.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about geraldton?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, actually, make for 4 tickets.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about brittany spaniel?", "label_name": "NEED_CLARIFICATION"}
{"text": "[USER QUERY] Thanks for all the help.", "label_name": "WRONG_ANSWER"}
{"text": "Find me other ones", "label_name": "WANT_DIFFERENT"}
{"text": "Let's try something else for the recommendation", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with an emergency fund?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about barcelona spain?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not at the moment.", "label_name": "WANT_DIFFERENT"}
{"text": "well, in what way?", "label_name": "NEED_CLARIFICATION"}
{"text": "ok fine, Please also tell me the balance amount of my savings account", "label_name": "WANT_DIFFERENT"}
{"text": "Can you find me two rooms in any other hotel?", "label_name": "WANT_DIFFERENT"}
{"text": "um, can you rewrite this?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about kundun?", "label_name": "NEED_CLARIFICATION"}
{"text": "What type of business are you looking for?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about utah highway patrol?", "label_name": "NEED_CLARIFICATION"}
{"text": "On second thought, better make it one ticket and also change the date to March 6th.", "label_name": "WRONG_ANSWER"}
{"text": "well, can you explain it in simpler terms?", "label_name": "NEED_CLARIFICATION"}
{"text": "No.Thank", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about sibutramine?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, that's Thanks again.", "label_name": "WRONG_ANSWER"}
{"text": "Ugh, get another then, there is a prime number there, and I'm freaking out, hurry, hurry, you.", "label_name": "WANT_DIFFERENT"}
{"text": "I need more details about your answer", "label_name": "NEED_CLARIFICATION"}
{"text": "Sorry, could you schedule it at afternoon 2:15 instead?", "label_name": "WRONG_ANSWER"}
{"text": "What else can you display me.", "label_name": "WANT_DIFFERENT"}
{"text": "I would like to come on the 14th of March.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with lucky bamboo plants?", "label_name": "NEED_CLARIFICATION"}
{"text": "so, which option would work better?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I'd like to watch", "label_name": "WRONG_ANSWER"}
{"text": "No thank you. I just wanted to know about Cantonese dishes in the area.", "label_name": "WANT_DIFFERENT"}
{"text": "actually, explain please.", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about jubail?", "label_name": "NEED_CLARIFICATION"}
{"text": "Do you have other movies? I also like mystery movies and ones directed by Brian De Palma.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about w\u00fcrzburg?", "label_name": "NEED_CLARIFICATION"}
{"text": "I see, are there any alternatives? Would prefer a 3 star with wifi service.", "label_name": "WANT_DIFFERENT"}
{"text": "im confused af fr", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about myriad genetics?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about armstrong state university?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with winter squash?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about willemstad?", "label_name": "NEED_CLARIFICATION"}
{"text": "fine. Do you have details of any other therapist?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about goose?", "label_name": "NEED_CLARIFICATION"}
{"text": "Change to three to 1 Kearny Street.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about seether?", "label_name": "NEED_CLARIFICATION"}
{"text": "No.Thank for help.", "label_name": "WRONG_ANSWER"}
{"text": "Not for now, thank you.", "label_name": "WRONG_ANSWER"}
{"text": "No, that is not needed. Could you book a pool ride for one to 655 Redwood Highway Suite 100 too?", "label_name": "WANT_DIFFERENT"}
{"text": "Keep searching,", "label_name": "WANT_DIFFERENT"}
{"text": "Correct but maybe later.", "label_name": "WANT_DIFFERENT"}
{"text": "Perhaps i don't like this this", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about big five personality traits?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a wedding cake?", "label_name": "NEED_CLARIFICATION"}
{"text": "Can better, I'll leave from and I require a direct bus.", "label_name": "WANT_DIFFERENT"}
{"text": "Can you check with Southwest Airlines for the departure time quarter to 7 A the morning?", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about silver hallmarks?", "label_name": "NEED_CLARIFICATION"}
{"text": "no, please play on bedroom device", "label_name": "WRONG_ANSWER"}
{"text": "I also interested in events on other dates i came to know that Crystal Vs Norwich is good.", "label_name": "WANT_DIFFERENT"}
{"text": "Show me other options for your answer", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with an audiobook?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I prefer at half past 9 in the morning, please", "label_name": "WRONG_ANSWER"}
{"text": "continue searching for other therapists. Search for a Psychologist in Lafayette.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about american cockroach?", "label_name": "NEED_CLARIFICATION"}
{"text": "You have the wrong date. It should be March 1st.", "label_name": "WRONG_ANSWER"}
{"text": "No, thanks anyway.", "label_name": "WRONG_ANSWER"}
{"text": "Can you explain the instructions more clearly?", "label_name": "NEED_CLARIFICATION"}
{"text": "No. That's I for now. Thank you.", "label_name": "WRONG_ANSWER"}
{"text": "Are there any other hotel options? I am looking to book 1 room.", "label_name": "WANT_DIFFERENT"}
{"text": "There are including Alone from the Alan Walker album Different World.", "label_name": "WANT_DIFFERENT"}
{"text": "Can you one rated 4.4 or higher?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with engine coolant?", "label_name": "NEED_CLARIFICATION"}
{"text": "That's not so good for me. Can you get me an economy flight with United Airlines?", "label_name": "WANT_DIFFERENT"}
{"text": "there another option?", "label_name": "WANT_DIFFERENT"}
{"text": "Can you make the appointment for to 3 in the afternoon instead?", "label_name": "WRONG_ANSWER"}
{"text": "No, I do not want to have tickets for this bus at the moment.", "label_name": "WANT_DIFFERENT"}
{"text": "Search for something else and I need to book 4 tickets.", "label_name": "WANT_DIFFERENT"}
{"text": "No, the correct datetime is March 14th.", "label_name": "WRONG_ANSWER"}
{"text": "No, please make that two", "label_name": "WRONG_ANSWER"}
{"text": "Anything thanks", "label_name": "WRONG_ANSWER"}
{"text": "Sounds interesting, but I desire something child-friendly", "label_name": "WANT_DIFFERENT"}
{"text": "QUERY] Sure, got it RESPONSE] What else do you need with? [USER else, thanks!", "label_name": "WRONG_ANSWER"}
{"text": "[USER QUERY] Thanks, can you also help me find something child friendly to do I get there.", "label_name": "WANT_DIFFERENT"}
{"text": "No, actually, change that to just a regular ride.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with safety data sheet?", "label_name": "NEED_CLARIFICATION"}
{"text": "Can you explain the formula?", "label_name": "NEED_CLARIFICATION"}
{"text": "Which \"\"tftt\"\" do you mean?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about christian county kentucky?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, the restaurant is Sushi Tozai and please make that 11:45 in the morning.", "label_name": "WRONG_ANSWER"}
{"text": "Nah, can you find me anything else?", "label_name": "WANT_DIFFERENT"}
{"text": "very that is all. Thanks No, much.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about brunswick county va?", "label_name": "NEED_CLARIFICATION"}
{"text": "What product information are you looking for?", "label_name": "NEED_CLARIFICATION"}
{"text": "that's all right now.", "label_name": "WRONG_ANSWER"}
{"text": "Are there any other like to travel in Economy.", "label_name": "WANT_DIFFERENT"}
{"text": "No, please change it to pool ride.", "label_name": "WRONG_ANSWER"}
{"text": "Do you have documentary from any director?", "label_name": "WANT_DIFFERENT"}
{"text": "to play the movie. Is there anything else I can help with?", "label_name": "WRONG_ANSWER"}
{"text": "Anything else? Maybe like a Drama directed by Claire Denis.", "label_name": "WANT_DIFFERENT"}
{"text": "Nope, RESPONSE] right now.", "label_name": "WRONG_ANSWER"}
{"text": "No. That'll you all. Thank you.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with icloud account?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about swv?", "label_name": "NEED_CLARIFICATION"}
{"text": "I'd appreciate more information on the output", "label_name": "NEED_CLARIFICATION"}
{"text": "No, you were helpful. Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about louisiana tech university?", "label_name": "NEED_CLARIFICATION"}
{"text": "No thats it, thanks.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about university of north ga?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a prom dress?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope, not right now. Aid me find a movie to steam.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about entacapone?", "label_name": "NEED_CLARIFICATION"}
{"text": "Can you search in Philly? I like rock concerts.", "label_name": "WANT_DIFFERENT"}
{"text": "Hm, could you find me a different baseball event?", "label_name": "WANT_DIFFERENT"}
{"text": "Sorry, play on the kitchen device please.", "label_name": "WRONG_ANSWER"}
{"text": "Please book hotel for three days only,", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about wuppertal?", "label_name": "NEED_CLARIFICATION"}
{"text": "No. Can you play it on the bedroom speaker", "label_name": "WRONG_ANSWER"}
{"text": "No, thanks for your help.", "label_name": "WRONG_ANSWER"}
{"text": "No, not now. I want to listen to some music. Find me some songs by Bebe Rexha.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about rowan county ky?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with fb messages?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not yet, first tell me what times it is playing at the theater located at 3rd Street Cinema.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that was room", "label_name": "WRONG_ANSWER"}
{"text": "That is not right, because I want to share the location with Raymond.", "label_name": "WRONG_ANSWER"}
{"text": "it. Good bye.", "label_name": "WRONG_ANSWER"}
{"text": "I see. Take a look at Calistoga for me, kindly", "label_name": "WANT_DIFFERENT"}
{"text": "Are there different dates available?", "label_name": "WANT_DIFFERENT"}
{"text": "No not now. Thanks for finding that.", "label_name": "WANT_DIFFERENT"}
{"text": "Do you have another alternatives? I enjoy films directed by Tina Gordon.", "label_name": "WANT_DIFFERENT"}
{"text": "Which Bible translation are you looking for?", "label_name": "NEED_CLARIFICATION"}
{"text": "actually, please fix that.", "label_name": "WRONG_ANSWER"}
{"text": "According to my knowledge, that is incorrect", "label_name": "WRONG_ANSWER"}
{"text": "Am I free on other time on the", "label_name": "WANT_DIFFERENT"}
{"text": "I'm not sure I understand the information", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about connecticut college?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about cortisporin?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with contact information?", "label_name": "NEED_CLARIFICATION"}
{"text": "No it's alright", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about range resources?", "label_name": "NEED_CLARIFICATION"}
{"text": "Any different attractions available?", "label_name": "WANT_DIFFERENT"}
{"text": "I'll decide later.", "label_name": "WANT_DIFFERENT"}
{"text": "Would you to purchase tickets this bus? [USER No, not away.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that's not necessary right now. Thanks. That's all.", "label_name": "WANT_DIFFERENT"}
{"text": "whether is there any other trains available?", "label_name": "WANT_DIFFERENT"}
{"text": "No, change it to dinner at 6:15 pm.", "label_name": "WRONG_ANSWER"}
{"text": "Actually it is the day after tomorrow I need.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about this place?", "label_name": "NEED_CLARIFICATION"}
{"text": "Negative thank you. That will be all.", "label_name": "WRONG_ANSWER"}
{"text": "um, i'm a bit lost here.", "label_name": "NEED_CLARIFICATION"}
{"text": "Incorrect. I need 4, you said 3.", "label_name": "WRONG_ANSWER"}
{"text": "In my opinion, what error code is that?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, thanks. That's all I want.", "label_name": "WRONG_ANSWER"}
{"text": "thanks a lot for your help though", "label_name": "WRONG_ANSWER"}
{"text": "You made a mistake with the calculation", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about bethesda game studios?", "label_name": "NEED_CLARIFICATION"}
{"text": "Actually, I think you misheard me.", "label_name": "WRONG_ANSWER"}
{"text": "Nah, the info is aces though.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about amphetamine?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about ohio theater?", "label_name": "NEED_CLARIFICATION"}
{"text": "Did you find anyone", "label_name": "WANT_DIFFERENT"}
{"text": "um, can you make it shorter?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with edible mushrooms?", "label_name": "NEED_CLARIFICATION"}
{"text": "These good, but are other events you can find me? I really enjoy Baseball.", "label_name": "WANT_DIFFERENT"}
{"text": "Let's try something else for the formula", "label_name": "WANT_DIFFERENT"}
{"text": "I would like to watch it with Hindi subtitles.", "label_name": "WRONG_ANSWER"}
{"text": "No, that will be all. you again.", "label_name": "WRONG_ANSWER"}
{"text": "let's explore bus options first.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about magadan?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about alt-j?", "label_name": "NEED_CLARIFICATION"}
{"text": "I might buy them later. Can you also tell me my bank balance?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with credit bureaus?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with epic games launcher?", "label_name": "NEED_CLARIFICATION"}
{"text": "No thats it.", "label_name": "WRONG_ANSWER"}
{"text": "As far as I know, what are the side effects I believe?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about warren state hospital?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about native health?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, thank Thanks", "label_name": "WRONG_ANSWER"}
{"text": "No, thanks a bunch!", "label_name": "WRONG_ANSWER"}
{"text": "No, add an event to my calendar. Can you book a shared ride in a cab for me?", "label_name": "WANT_DIFFERENT"}
{"text": "No, do it on Kitchen Speaker.", "label_name": "WRONG_ANSWER"}
{"text": "no right now, i want you to share the location with larry", "label_name": "WANT_DIFFERENT"}
{"text": "No, change that to 16:45.", "label_name": "WRONG_ANSWER"}
{"text": "well, come again?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, that's all I for now.", "label_name": "WRONG_ANSWER"}
{"text": "How about others?", "label_name": "WANT_DIFFERENT"}
{"text": "no it, thanks!", "label_name": "WRONG_ANSWER"}
{"text": "And are there any other flights after", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with electricity bill?", "label_name": "NEED_CLARIFICATION"}
{"text": "so, completely wrong.", "label_name": "WRONG_ANSWER"}
{"text": "uh, what's the technical term for that?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about the hotel?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about southampton pediatrics?", "label_name": "NEED_CLARIFICATION"}
{"text": "Is there any different hotels available?", "label_name": "WANT_DIFFERENT"}
{"text": "No, that won't necessary. all for now.", "label_name": "WANT_DIFFERENT"}
{"text": "Is there other options?", "label_name": "WANT_DIFFERENT"}
{"text": "Actually I want listen to it on the kitchen speaker.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about columbia pictures?", "label_name": "NEED_CLARIFICATION"}
{"text": "can play it with Hindi subtitles?", "label_name": "WRONG_ANSWER"}
{"text": "I'm not sure but what do you mean by the code?", "label_name": "NEED_CLARIFICATION"}
{"text": "thank No you, that is all.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about sika deer?", "label_name": "NEED_CLARIFICATION"}
{"text": "What else. I need two rooms.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a walbro carburetor?", "label_name": "NEED_CLARIFICATION"}
{"text": "No. That will be", "label_name": "WRONG_ANSWER"}
{"text": "Negative instead I would rather have the appointment at 6 in the evening.", "label_name": "WRONG_ANSWER"}
{"text": "Okay. But please try to search for some other nice places.", "label_name": "WANT_DIFFERENT"}
{"text": "What organism are you looking for?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with grey hair?", "label_name": "NEED_CLARIFICATION"}
{"text": "Are any other options available?", "label_name": "WANT_DIFFERENT"}
{"text": "Make that shorter", "label_name": "WANT_DIFFERENT"}
{"text": "Do you have other recommendations?", "label_name": "WANT_DIFFERENT"}
{"text": "No. Make it at two pm for", "label_name": "WRONG_ANSWER"}
{"text": "Anything Can you look at two hotels in Anaheim?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with memory foam mattress pad?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about anzac day?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with cna license?", "label_name": "NEED_CLARIFICATION"}
{"text": "What else leaves on the 8th, but from Seattle", "label_name": "WANT_DIFFERENT"}
{"text": "No thanks, I'll book them later. I don't need else", "label_name": "WANT_DIFFERENT"}
{"text": "Fine any doctor in San Jose and should be Dermatologist", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about nursing assistant?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, don't get me tickets. can you tell me what time I can see it. I want to see it on March 1st?", "label_name": "WANT_DIFFERENT"}
{"text": "It seems like can you explain this more clearly?", "label_name": "NEED_CLARIFICATION"}
{"text": "What did you find?", "label_name": "WANT_DIFFERENT"}
{"text": "No, Change the name to Music practice.", "label_name": "WRONG_ANSWER"}
{"text": "No, not right now. Find me a round trip flight departing next Monday to get there.", "label_name": "WANT_DIFFERENT"}
{"text": "No, actually, change whole to 4 people on March 8th.", "label_name": "WRONG_ANSWER"}
{"text": "Not that doesn't suit well my schedule.", "label_name": "WRONG_ANSWER"}
{"text": "No, that was very helpful. Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with an access point?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope I have been very helpful.", "label_name": "WRONG_ANSWER"}
{"text": "Sorry, I need the insurance also. Make book booking accordingly.", "label_name": "WRONG_ANSWER"}
{"text": "What other buses are there? Just for 1 person.", "label_name": "WANT_DIFFERENT"}
{"text": "Nope thanks, you have been very helpful.", "label_name": "WRONG_ANSWER"}
{"text": "My friend just called me. I have 2 people in my We actually want to go to 510 San Anselmo Avenue.", "label_name": "WRONG_ANSWER"}
{"text": "No, I'm not looking to book right now, but I would like to find a house to stay at while I'm there.", "label_name": "WANT_DIFFERENT"}
{"text": "I guess make the solution shorter", "label_name": "WANT_DIFFERENT"}
{"text": "I think you're mistaken about the solution", "label_name": "WRONG_ANSWER"}
{"text": "thanks a now", "label_name": "WRONG_ANSWER"}
{"text": "No, I'll schedule it later. Thanks.", "label_name": "WANT_DIFFERENT"}
{"text": "Ok, your checking account balance is $23,455.45. [USER Ok, great. Please give me my savings as well.", "label_name": "WANT_DIFFERENT"}
{"text": "Cool, are there any other attractions around there, that children can go to also?", "label_name": "WANT_DIFFERENT"}
{"text": "No, you helped me", "label_name": "WRONG_ANSWER"}
{"text": "What other movies do you have? Just something regular please.", "label_name": "WANT_DIFFERENT"}
{"text": "um, huh?", "label_name": "NEED_CLARIFICATION"}
{"text": "date I want to check out on the 13th and check in later today.", "label_name": "WRONG_ANSWER"}
{"text": "Nothing, you've done quite enough.", "label_name": "WRONG_ANSWER"}
{"text": "Not a one, though.", "label_name": "WRONG_ANSWER"}
{"text": "Maybe could you clarify the solution?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, not now. What are the viewing times and dates? I want to watch it on March 2nd.", "label_name": "WANT_DIFFERENT"}
{"text": "No, Please play it on Kitchen speaker.", "label_name": "WRONG_ANSWER"}
{"text": "No, I'll do that later. That's all for now.", "label_name": "WANT_DIFFERENT"}
{"text": "No, actually I tickets. want 2 just", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about double-crested cormorant?", "label_name": "NEED_CLARIFICATION"}
{"text": "Are there other hotels meeting my requirements?", "label_name": "WANT_DIFFERENT"}
{"text": "Ok, are there any other?", "label_name": "WANT_DIFFERENT"}
{"text": "No, I am RESPONSE]", "label_name": "WRONG_ANSWER"}
{"text": "That will be all for today.", "label_name": "WRONG_ANSWER"}
{"text": "I want one ticket in economy class: what flights are available?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about emory sleep center?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a heavy bag?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I want to check in this Saturday on the 8th of March.", "label_name": "WRONG_ANSWER"}
{"text": "We will book it later.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that would be all", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about lacey wa?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, was we actually schedule the appointment for one pm on March 13th?", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with windows store apps?", "label_name": "NEED_CLARIFICATION"}
{"text": "Fine. But still do you have any other hotels that might suit my taste?", "label_name": "WANT_DIFFERENT"}
{"text": "No, not yet. I'll looking. That's all for now.", "label_name": "WANT_DIFFERENT"}
{"text": "No, not now and can a house there. I want to stay there for a while. Please find the suitable one.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with windows insider?", "label_name": "NEED_CLARIFICATION"}
{"text": "No thank you. I want to find a movie to watch online", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about whakapapa?", "label_name": "NEED_CLARIFICATION"}
{"text": "No please make it for the 6th of March.", "label_name": "WRONG_ANSWER"}
{"text": "Cool, find a museum next.", "label_name": "WANT_DIFFERENT"}
{"text": "On second thought play it on the speaker outside.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about the television episode?", "label_name": "NEED_CLARIFICATION"}
{"text": "What other options you have?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a soaker hose?", "label_name": "NEED_CLARIFICATION"}
{"text": "Want to buy for the bus? [USER Yes, but not right now.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about adenosine?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with data usage?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about bell canada?", "label_name": "NEED_CLARIFICATION"}
{"text": "Please on. Can you play it on the speaker in the kitchen please?", "label_name": "WRONG_ANSWER"}
{"text": "[USER QUERY] like to see a drama RESPONSE] I have 10 to recommend for you.", "label_name": "WANT_DIFFERENT"}
{"text": "um, can you explain that again?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I can do that later, I only needed help finding the event.", "label_name": "WANT_DIFFERENT"}
{"text": "No thanks. What is", "label_name": "WANT_DIFFERENT"}
{"text": "No, I'll wait on that.", "label_name": "WANT_DIFFERENT"}
{"text": "Actually change that to a luxury ride", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about bohol?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about vancouver canada?", "label_name": "NEED_CLARIFICATION"}
{"text": "Anything not now.", "label_name": "WRONG_ANSWER"}
{"text": "no , thanks for your help . not now.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a martingale collar?", "label_name": "NEED_CLARIFICATION"}
{"text": "I want economy", "label_name": "WANT_DIFFERENT"}
{"text": "No. That's all else? need.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about abbottabad?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about ft leonard wood mo?", "label_name": "NEED_CLARIFICATION"}
{"text": "um, that doesn't seem right to me.", "label_name": "WRONG_ANSWER"}
{"text": "Any another homes? I need accommodations for three people.", "label_name": "WANT_DIFFERENT"}
{"text": "[USER QUERY] Can you find me the name of the director of this movie?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about lamb to the slaughter?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about blucora?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about longueuil?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, that is all QUERY] thank you.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a certified letter?", "label_name": "NEED_CLARIFICATION"}
{"text": "Thanks. What's the forecast March 4th?", "label_name": "WANT_DIFFERENT"}
{"text": "wait not this", "label_name": "WANT_DIFFERENT"}
{"text": "Maybe at a later Will you show me some there?", "label_name": "WANT_DIFFERENT"}
{"text": "No, I want to book an appointment first. Make it for 12 in the afternoon.", "label_name": "WANT_DIFFERENT"}
{"text": "Are there other options? i need to pick it up from Vegas happy with any model.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with passive voice?", "label_name": "NEED_CLARIFICATION"}
{"text": "What else do you have? I need three Economy tickets.", "label_name": "WANT_DIFFERENT"}
{"text": "The offer food at moderate prices. Their contact number 408-270-2578.", "label_name": "WANT_DIFFERENT"}
{"text": "Are there any alternative 2 star hotels?", "label_name": "WANT_DIFFERENT"}
{"text": "No, not right now, but thank you anyway.", "label_name": "WRONG_ANSWER"}
{"text": "Are any other hotels available?", "label_name": "WANT_DIFFERENT"}
{"text": "You made a mistake with your answer", "label_name": "WRONG_ANSWER"}
{"text": "No, I have to check with my friends first to see if they want to go.", "label_name": "WANT_DIFFERENT"}
{"text": "Incorrect. I asked for Premium.", "label_name": "WRONG_ANSWER"}
{"text": "was that No, it, thanks.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about plastic omnium?", "label_name": "NEED_CLARIFICATION"}
{"text": "I desire to find a different salon.", "label_name": "WANT_DIFFERENT"}
{"text": "No, not currently.", "label_name": "WANT_DIFFERENT"}
{"text": "It appears that can you explain the steps to reproduce?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about nateglinide?", "label_name": "NEED_CLARIFICATION"}
{"text": "Is there anything else for the 14th of this month?", "label_name": "WANT_DIFFERENT"}
{"text": "That's good. I also look at some other I'm interested in Baseball, around NYC?", "label_name": "WANT_DIFFERENT"}
{"text": "No thank I'll book later. That'll be everything.", "label_name": "WANT_DIFFERENT"}
{"text": "Do you have anyone else?", "label_name": "WANT_DIFFERENT"}
{"text": "Find me a movie directed by Michael Gordon.", "label_name": "WANT_DIFFERENT"}
{"text": "Could you kindly search some other movies?", "label_name": "WANT_DIFFERENT"}
{"text": "Sorry, could I watch it with subtitle please?", "label_name": "WRONG_ANSWER"}
{"text": "Nope is there anyone else?", "label_name": "WANT_DIFFERENT"}
{"text": "No thanks, about you book me a ride there instead?", "label_name": "WANT_DIFFERENT"}
{"text": "Keep going. Try some Korean. Intermediate Priced.", "label_name": "WANT_DIFFERENT"}
{"text": "No, anything else available? I need rated around at least 4.6 higher.", "label_name": "WANT_DIFFERENT"}
{"text": "That's not right. Some friends of mine will be at too, so I need tickets for four people.", "label_name": "WRONG_ANSWER"}
{"text": "No, that's all I need. Thanks again.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with windows boot manager?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, please play it on the bedroom speaker instead.", "label_name": "WRONG_ANSWER"}
{"text": "Never mind, I need a Fine, play on speaker in kitchen.", "label_name": "WRONG_ANSWER"}
{"text": "No, I'm OK with that.", "label_name": "WANT_DIFFERENT"}
{"text": "No not now. Now book a table in that 2 people", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about the novel?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, play it on the Play device for me.", "label_name": "WRONG_ANSWER"}
{"text": "at this time. I am a priced breakfast restaurant with live music.", "label_name": "WANT_DIFFERENT"}
{"text": "Please fix that - it's one, not two.", "label_name": "WRONG_ANSWER"}
{"text": "Could you elaborate on your answer?", "label_name": "NEED_CLARIFICATION"}
{"text": "That sounds good but can you find anything else? How about a child-friendly historical landmark?", "label_name": "WANT_DIFFERENT"}
{"text": "No, Please make the reservation for four people.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about cadillac ats?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I'm right. Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "Maybe later. I'd rather focus on finding a restaurant right now.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that's all I wanted. Thank you.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with lawn weeds?", "label_name": "NEED_CLARIFICATION"}
{"text": "It would help if you explained your answer better", "label_name": "NEED_CLARIFICATION"}
{"text": "be of further assistance?", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about university of san francisco?", "label_name": "NEED_CLARIFICATION"}
{"text": "Would there be any different houses? There is one person and I need rating 4.1 or higher.", "label_name": "WANT_DIFFERENT"}
{"text": "Not at the moment. Appreciated for everything.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about lawbreakers?", "label_name": "NEED_CLARIFICATION"}
{"text": "No. Please make it for 7:30 pm at Santa Clara.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about city of waco?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with deed restrictions?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about cardiff international white water?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about ims health?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about the brave little toaster goes to mars?", "label_name": "NEED_CLARIFICATION"}
{"text": "Do you have any other houses?", "label_name": "WANT_DIFFERENT"}
{"text": "Please can you tell me what is the balance in my savings account too?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about ipswich witches?", "label_name": "NEED_CLARIFICATION"}
{"text": "Sorry, would you play it on the bedroom speaker?", "label_name": "WRONG_ANSWER"}
{"text": "What else do you have? I want an afforadable place that has alcohol.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that's it. you.", "label_name": "WRONG_ANSWER"}
{"text": "Is there any other restaurant available. Please check it for my reference.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with android device?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I only need Bobo's table of 2 now.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about state of missouri?", "label_name": "NEED_CLARIFICATION"}
{"text": "What's the next date?", "label_name": "WANT_DIFFERENT"}
{"text": "um, help me understand this.", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about high liner foods?", "label_name": "NEED_CLARIFICATION"}
{"text": "wrong. The rooms I need are two and I will stay for 7 days", "label_name": "WRONG_ANSWER"}
{"text": "It's supposed to be on the 2nd.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with army promotion points?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nah. I'm excellent Thanks for the help!", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about treyarch?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not right now, thanks for all your help today, that will be all.", "label_name": "WANT_DIFFERENT"}
{"text": "No, I think I'm all set, thank you.", "label_name": "WRONG_ANSWER"}
{"text": "Wonderful; are there different attractions you can mention?", "label_name": "WANT_DIFFERENT"}
{"text": "Any other things you have?", "label_name": "WANT_DIFFERENT"}
{"text": "actually, just to clarify.", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about book of ephesians?", "label_name": "NEED_CLARIFICATION"}
{"text": "No wait. This for for 1 person. Also update it to the 13th of March.", "label_name": "WRONG_ANSWER"}
{"text": "Any other times available besides that?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with gray hair?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not that is all today.", "label_name": "WRONG_ANSWER"}
{"text": "That's all. Your is appreciated.", "label_name": "WRONG_ANSWER"}
{"text": "Is there any different restaurant you can find me?", "label_name": "WANT_DIFFERENT"}
{"text": "That's pretty expensive. I'm looking for a restaurant that's not very costly.", "label_name": "WANT_DIFFERENT"}
{"text": "I would suggest a SUV Dacia Duster. This vehicle can be picked up at Chicago Union Station.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about city of hayward?", "label_name": "NEED_CLARIFICATION"}
{"text": "[USER Can you see if there are other options?", "label_name": "WANT_DIFFERENT"}
{"text": "Sorry, I think four in the evening is better.", "label_name": "WRONG_ANSWER"}
{"text": "I'd like to have subtitles in Mandarin, I'd like to practise.", "label_name": "WRONG_ANSWER"}
{"text": "be Good bye.", "label_name": "WRONG_ANSWER"}
{"text": "needs if you like/", "label_name": "WRONG_ANSWER"}
{"text": "That's not my medication", "label_name": "WRONG_ANSWER"}
{"text": "No, make it one ticket. Also, I Damien Jurado was fun.", "label_name": "WRONG_ANSWER"}
{"text": "Nope Thank so much.", "label_name": "WRONG_ANSWER"}
{"text": "How does this relate to the orevious topic?", "label_name": "NEED_CLARIFICATION"}
{"text": "How does this relate to the previous topic?", "label_name": "NEED_CLARIFICATION"}
{"text": "You've provided all the info I need for now. Many thanks.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with fluorescent bulbs?", "label_name": "NEED_CLARIFICATION"}
{"text": "Am I available on March 3rd?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about pullman family medicine?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about prochlorperazine?", "label_name": "NEED_CLARIFICATION"}
{"text": "Sorry, you the appointment on Sunday instead?", "label_name": "WRONG_ANSWER"}
{"text": "Are there any options? I am departing from Chicago and I like American Airlines.", "label_name": "WANT_DIFFERENT"}
{"text": "No, I want it on my kitchen device", "label_name": "WRONG_ANSWER"}
{"text": "I'd like it to have subtitles in Mandarin, I'd like to practise.", "label_name": "WRONG_ANSWER"}
{"text": "Sorry, play it on the Play Speaker.", "label_name": "WRONG_ANSWER"}
{"text": "I don't grasp this concept", "label_name": "NEED_CLARIFICATION"}
{"text": "No you got it all thanks again.", "label_name": "WRONG_ANSWER"}
{"text": "No yet, are there any buses that there?", "label_name": "WANT_DIFFERENT"}
{"text": "Please search for the rooms at different hotel like the on named Mantra 2 Bond Street.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with white wallpaper?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, that will be it. Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "Any one star hotels I might like?", "label_name": "WANT_DIFFERENT"}
{"text": "No, is there open at 4 in the evening?", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about tibetan terrier?", "label_name": "NEED_CLARIFICATION"}
{"text": "Negative for now we're all set", "label_name": "WRONG_ANSWER"}
{"text": "Please update to tomorrow.", "label_name": "WRONG_ANSWER"}
{"text": "I don't comprehend the charges", "label_name": "NEED_CLARIFICATION"}
{"text": "I am grateful for you", "label_name": "WRONG_ANSWER"}
{"text": "uh, i missed that.", "label_name": "NEED_CLARIFICATION"}
{"text": "I have to think. if you could check for bus tickets to go to that place of event.", "label_name": "WANT_DIFFERENT"}
{"text": "No. Change the date to March 13th.", "label_name": "WRONG_ANSWER"}
{"text": "hmm, one more time?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, be all. Thanks again!", "label_name": "WRONG_ANSWER"}
{"text": "Actually, I changed my mind. Let me get 2 tickets.", "label_name": "WRONG_ANSWER"}
{"text": "I guess can you explain the steps to reproduce?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about cit group?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about sabatier?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about kite pharma?", "label_name": "NEED_CLARIFICATION"}
{"text": "It's located in 1030 Main Street.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about nerja?", "label_name": "NEED_CLARIFICATION"}
{"text": "of appeal to me. I'd rather watch a different movie at Century San Centre. 3D or not doesn't matter.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about rotorua?", "label_name": "NEED_CLARIFICATION"}
{"text": "Anything else to choose from?", "label_name": "WANT_DIFFERENT"}
{"text": "I've changed my mind, can you please reserve the appointment on March 9th instead?", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about seattle washington airport?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about russell county ky?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about iron county wi?", "label_name": "NEED_CLARIFICATION"}
{"text": "I believe not interested in that one or something.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a telephone?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a military base?", "label_name": "NEED_CLARIFICATION"}
{"text": "Can you find some other hotel might I am interested for a 3 star hotel.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with xbox live gold?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with new yahoo account?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about tunicate?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, not yet. Can you look for a bus to get there?", "label_name": "WANT_DIFFERENT"}
{"text": "No QUERY] all for now.", "label_name": "WRONG_ANSWER"}
{"text": "Is there any others for 13th of March. There will be 2 of us.", "label_name": "WANT_DIFFERENT"}
{"text": "Hmmmm, anyone else? I need a General", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with tool bars?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about postnuptial agreement?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with realtors license?", "label_name": "NEED_CLARIFICATION"}
{"text": "Something's off with the process", "label_name": "WRONG_ANSWER"}
{"text": "No, for is all thank you.", "label_name": "WRONG_ANSWER"}
{"text": "for Friday next week.", "label_name": "WRONG_ANSWER"}
{"text": "Nope. Thank you so much for your help.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about fender jazz bass?", "label_name": "NEED_CLARIFICATION"}
{"text": "That just about covers everything, thanks once again for the help.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with a good story?", "label_name": "NEED_CLARIFICATION"}
{"text": "Would there be any other trains that could work?", "label_name": "WANT_DIFFERENT"}
{"text": "What does United Airlines have with Economy seating?", "label_name": "WANT_DIFFERENT"}
{"text": "Is that all?", "label_name": "WANT_DIFFERENT"}
{"text": "Perhaps how does this relate to the previous topic sort of?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about medical matrix?", "label_name": "NEED_CLARIFICATION"}
{"text": "I think let me see some alternatives I guess.", "label_name": "WANT_DIFFERENT"}
{"text": "I forgot that I might be going alone, make for one", "label_name": "WRONG_ANSWER"}
{"text": "Look for something else in Economy.", "label_name": "WANT_DIFFERENT"}
{"text": "It would help if you explained the approach better", "label_name": "NEED_CLARIFICATION"}
{"text": "No. I want to check in on this week.", "label_name": "WRONG_ANSWER"}
{"text": "In a little while. Also, are there any good movies playing online? I like anything with Adam Sietz.", "label_name": "WANT_DIFFERENT"}
{"text": "Any other available flights?", "label_name": "WANT_DIFFERENT"}
{"text": "Not all set. Thanks!", "label_name": "WRONG_ANSWER"}
{"text": "The formula you used is wrong", "label_name": "WRONG_ANSWER"}
{"text": "No, actually I prefer subtitles.", "label_name": "WRONG_ANSWER"}
{"text": "Nope It's all for today", "label_name": "WRONG_ANSWER"}
{"text": "that's all I need today. so much.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about ferris wheel?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope, that's all for now. you!", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about hobo spider?", "label_name": "NEED_CLARIFICATION"}
{"text": "What exactly is the details?", "label_name": "NEED_CLARIFICATION"}
{"text": "No .Thank you very much!", "label_name": "WRONG_ANSWER"}
{"text": "Thanks, any other attractions you can think of?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about basingstoke?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about lander university?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, hold off on", "label_name": "WANT_DIFFERENT"}
{"text": "There is another Museum called Science World TELUS World of Science. [USER Cool.", "label_name": "WANT_DIFFERENT"}
{"text": "Dont , on", "label_name": "WRONG_ANSWER"}
{"text": "share Actually the location with Randy instead.", "label_name": "WRONG_ANSWER"}
{"text": "I need more details bout the example", "label_name": "NEED_CLARIFICATION"}
{"text": "Not Phoenix. Denver.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about commercial vehicle group?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope, thanks. I appreciate your help.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about yu-gi-oh gx?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope, Just gonna watch the show, stop bugging me.", "label_name": "WRONG_ANSWER"}
{"text": "Look some other I am looking for something not very costly breast", "label_name": "WANT_DIFFERENT"}
{"text": "No, thanks bye", "label_name": "WRONG_ANSWER"}
{"text": "I guess can I exchange for a different size?", "label_name": "WANT_DIFFERENT"}
{"text": "Wrong, try again, I need 3 tickets on March 14th. Your batting 0", "label_name": "WRONG_ANSWER"}
{"text": "No, Make it for four people on the please.", "label_name": "WRONG_ANSWER"}
{"text": "Nothing, I'm fine.", "label_name": "WRONG_ANSWER"}
{"text": "No, I want watch the movie with subtitles in", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about mill creek family practice?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about currency act?", "label_name": "NEED_CLARIFICATION"}
{"text": "Can you kindly search now for other cars available in Philly?", "label_name": "WANT_DIFFERENT"}
{"text": "It seems like what do you mean by the method?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not that right now.", "label_name": "WANT_DIFFERENT"}
{"text": "No thanks, I'm good for now.", "label_name": "WANT_DIFFERENT"}
{"text": "Search for something else and I need three baths.", "label_name": "WANT_DIFFERENT"}
{"text": "No. That is it for now.", "label_name": "WRONG_ANSWER"}
{"text": "Can you explain the solution more clearly?", "label_name": "NEED_CLARIFICATION"}
{"text": "I don't want to purchase now.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a crib?", "label_name": "NEED_CLARIFICATION"}
{"text": "itn is 3:15 pm", "label_name": "WRONG_ANSWER"}
{"text": "No. Thanks good your help.", "label_name": "WRONG_ANSWER"}
{"text": "I am looking for a museum, so any other ones you can find that is", "label_name": "WANT_DIFFERENT"}
{"text": "I apologize but your requested car could not be booked.", "label_name": "WRONG_ANSWER"}
{"text": "I didn't care for that one. Do you have any another suggestions?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about this team?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, not really, bye.", "label_name": "WRONG_ANSWER"}
{"text": "None of those sound remotely interesting. What different movies are playing?", "label_name": "WANT_DIFFERENT"}
{"text": "[USER QUERY] That works for me, thanks.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about badger?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope. That is all the assist I needed.", "label_name": "WRONG_ANSWER"}
{"text": "I think actually, the example is wrong", "label_name": "WRONG_ANSWER"}
{"text": "QUERY] Where is the office? [SYSTEM It's at 5755 Cottle Road # 4. [USER else you recommend?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to know about sullivan orthodontics?", "label_name": "NEED_CLARIFICATION"}
{"text": "In my opinion, the recommendation is incorrect", "label_name": "WRONG_ANSWER"}
{"text": "That is not right, because I changed my mind so I want you to cast it on television.", "label_name": "WRONG_ANSWER"}
{"text": "actually, i'm so confused right now.", "label_name": "NEED_CLARIFICATION"}
{"text": "actually, what's the timeline?", "label_name": "NEED_CLARIFICATION"}
{"text": "Can I add one person on? actually need to make it for three.", "label_name": "WRONG_ANSWER"}
{"text": "Search for something else which could be a Family movie.", "label_name": "WANT_DIFFERENT"}
{"text": "Later please. I need 3 tickets.", "label_name": "WANT_DIFFERENT"}
{"text": "That might work, but I'm just wondering if there is anything else I might like better.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that's it now. for", "label_name": "WRONG_ANSWER"}
{"text": "No, I forgot, my mother-in-law canceled, so I I need reservations for two and only need those at the", "label_name": "WRONG_ANSWER"}
{"text": "[USER QUERY] Thank you for your help. RESPONSE] Anything else need to do? [USER Nothing for Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "Nope It is for 1 person at seven in the evening.", "label_name": "WRONG_ANSWER"}
{"text": "Can you find something else?", "label_name": "WANT_DIFFERENT"}
{"text": "Nah, something better.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about dragon tales?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I'd like it at 16:30 instead.", "label_name": "WRONG_ANSWER"}
{"text": "No, for now we're good, thanks again", "label_name": "WRONG_ANSWER"}
{"text": "On second thought, play it on bedroom device my bedroom.", "label_name": "WRONG_ANSWER"}
{"text": "No, you've gone above and beyond, thanks.", "label_name": "WRONG_ANSWER"}
{"text": "No, I am not in need of making a transfer.", "label_name": "WANT_DIFFERENT"}
{"text": "dude thats cap", "label_name": "WRONG_ANSWER"}
{"text": "bruh what fr", "label_name": "NEED_CLARIFICATION"}
{"text": "No, not right now. I need to see if Betty wants to watch it.", "label_name": "WANT_DIFFERENT"}
{"text": "you check and see if there is a car available in at 12:30 pm?", "label_name": "WANT_DIFFERENT"}
{"text": "No, I actually want a table for correct?", "label_name": "WRONG_ANSWER"}
{"text": "What other items do you have?", "label_name": "WANT_DIFFERENT"}
{"text": "QUERY] that is all I needed.", "label_name": "WRONG_ANSWER"}
{"text": "That information is incorrect.", "label_name": "WRONG_ANSWER"}
{"text": "Not Thanks again.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about marshall medical center north?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not right can you tell me if there are any United Airlines round trip flights going there?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with a google form?", "label_name": "NEED_CLARIFICATION"}
{"text": "Would you like me to help purchase tickets now? [USER No, not right now.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about university of texas austin?", "label_name": "NEED_CLARIFICATION"}
{"text": "actually, can you explain that again?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about legal assistant?", "label_name": "NEED_CLARIFICATION"}
{"text": "the event on other days?", "label_name": "WANT_DIFFERENT"}
{"text": "No thanks. That was helpful, appreciate Bye.", "label_name": "WRONG_ANSWER"}
{"text": "Crestview Pines very good and located at 1600 Aster which is 4 and 3 baths for $4,750 a month.", "label_name": "WANT_DIFFERENT"}
{"text": "Actually, I'd rather you play it the speaker in the bedroom.", "label_name": "WRONG_ANSWER"}
{"text": "No, thats it thanks", "label_name": "WRONG_ANSWER"}
{"text": "I got it. Mmmmm, have another look for American Football events.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about hiroshima?", "label_name": "NEED_CLARIFICATION"}
{"text": "Shoot, I forgot another appointment in the morning. Can we make it three in afternoon?", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about medan?", "label_name": "NEED_CLARIFICATION"}
{"text": "so, where can i find more information?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with e-mails?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nope, that is fine. Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about godsmack?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, I don't want to buy the tickets right now.", "label_name": "WANT_DIFFERENT"}
{"text": "your solution doesn't make sense to me", "label_name": "NEED_CLARIFICATION"}
{"text": "Can you look for any other afforadable priced restaurant?", "label_name": "WANT_DIFFERENT"}
{"text": "Perhaps later. I need to think about it.", "label_name": "WANT_DIFFERENT"}
{"text": "Wrong item. I selected green.", "label_name": "WRONG_ANSWER"}
{"text": "Actually, is there availability at 12:30?", "label_name": "WRONG_ANSWER"}
{"text": "no, not for now. all i need.", "label_name": "WANT_DIFFERENT"}
{"text": "That's but can you find me else?", "label_name": "WANT_DIFFERENT"}
{"text": "yo idk what u mean", "label_name": "NEED_CLARIFICATION"}
{"text": "Maybe later. When am I free that day, the 1st of this month?", "label_name": "WANT_DIFFERENT"}
{"text": "No the reservation is for 3 people.", "label_name": "WRONG_ANSWER"}
{"text": "Possibly make the calculation shorter", "label_name": "WANT_DIFFERENT"}
{"text": "Are there any other cars available? Perhaps, a medium-sized car?", "label_name": "WANT_DIFFERENT"}
{"text": "No. I changed my mind I'm in a group of 3 and I prefer a Pool ride.", "label_name": "WRONG_ANSWER"}
{"text": "Possibly can you explain the formula probably?", "label_name": "NEED_CLARIFICATION"}
{"text": "Yes, but later. Can you help me find some attractions there, like a natural spot?", "label_name": "WANT_DIFFERENT"}
{"text": "Not I need 3 tickets.", "label_name": "WRONG_ANSWER"}
{"text": "As far as I know, i'm not sure I understand the instructions", "label_name": "NEED_CLARIFICATION"}
{"text": "No call it as", "label_name": "WRONG_ANSWER"}
{"text": "I think what are the side effects?", "label_name": "NEED_CLARIFICATION"}
{"text": "Maybe i don't understand the log output", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a pocket square?", "label_name": "NEED_CLARIFICATION"}
{"text": "hate to be a but try and find something else.", "label_name": "WANT_DIFFERENT"}
{"text": "I'm having trouble understanding your explanation", "label_name": "NEED_CLARIFICATION"}
{"text": "Are there any bus options to there? I need to leave on March 10th.", "label_name": "WANT_DIFFERENT"}
{"text": "No, not that I can think of.", "label_name": "WRONG_ANSWER"}
{"text": "No. anything You", "label_name": "WRONG_ANSWER"}
{"text": "hmm, can you repeat that?", "label_name": "NEED_CLARIFICATION"}
{"text": "Is there some other event I can attend?", "label_name": "WANT_DIFFERENT"}
{"text": "That's nice Do you have any other events like Football?", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with windows store app?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, QUERY] you for your help.", "label_name": "WRONG_ANSWER"}
{"text": "perfect, can you find different show events", "label_name": "WANT_DIFFERENT"}
{"text": "Make it for 1 person.", "label_name": "WRONG_ANSWER"}
{"text": "I'm not sure if that day will work. What about different days for that event?", "label_name": "WANT_DIFFERENT"}
{"text": "No thanks.", "label_name": "WRONG_ANSWER"}
{"text": "QUERY] Does it arrive the after and how many did you get this for?", "label_name": "WANT_DIFFERENT"}
{"text": "assist you with?", "label_name": "WRONG_ANSWER"}
{"text": "Are there other hotels in the area?", "label_name": "WANT_DIFFERENT"}
{"text": "No, thanks for the help though!", "label_name": "WRONG_ANSWER"}
{"text": "No, It's thanks", "label_name": "WRONG_ANSWER"}
{"text": "No, put it on in subtitles.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with favorites list?", "label_name": "NEED_CLARIFICATION"}
{"text": "Nah. What else is there?", "label_name": "WANT_DIFFERENT"}
{"text": "yo thats cap", "label_name": "WRONG_ANSWER"}
{"text": "Should I reserve the car for you? [USER No, not right now.", "label_name": "WANT_DIFFERENT"}
{"text": "No, change it to play on my bedroom.", "label_name": "WRONG_ANSWER"}
{"text": "Is there any buses available there on march 1st. It was for four persons.", "label_name": "WANT_DIFFERENT"}
{"text": "there will be four people in the party.", "label_name": "WRONG_ANSWER"}
{"text": "fine. But could you me alternative events? for those near New York.", "label_name": "WANT_DIFFERENT"}
{"text": "Not you've got it covered. Thank you.", "label_name": "WRONG_ANSWER"}
{"text": "Brilliant. Can you help me find a Museum?", "label_name": "WANT_DIFFERENT"}
{"text": "No, i do not want to make any transfer", "label_name": "WANT_DIFFERENT"}
{"text": "Actually, no, let's use the Bedroom speaker.", "label_name": "WRONG_ANSWER"}
{"text": "Any other help you need? [USER you no, thank FOLLOWUP]", "label_name": "WRONG_ANSWER"}
{"text": "much. Thanks for your help.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about pediatrics east?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about hi-five?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about kaiser aluminum?", "label_name": "NEED_CLARIFICATION"}
{"text": "Not thanks for your help.", "label_name": "WRONG_ANSWER"}
{"text": "That is all I today.", "label_name": "WRONG_ANSWER"}
{"text": "Not now. That's all I need from you for now.", "label_name": "WANT_DIFFERENT"}
{"text": "Did you wish make [USER No, not", "label_name": "WANT_DIFFERENT"}
{"text": "Something else you can find?I plan to leave on March 1st.", "label_name": "WANT_DIFFERENT"}
{"text": "No, that is not necessary. Thanks a lot though!", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with cna certification?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about fender precision bass?", "label_name": "NEED_CLARIFICATION"}
{"text": "You've done more than enough. That's all for now.", "label_name": "WRONG_ANSWER"}
{"text": "Can you find me any other available buses?", "label_name": "WANT_DIFFERENT"}
{"text": "I am not worried about what album its from but give me some more choices if you could", "label_name": "WANT_DIFFERENT"}
{"text": "Sorry, could you purchase the tickets for 2 instead?", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about naval station norfolk?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, but I appreciate all", "label_name": "WRONG_ANSWER"}
{"text": "No, bye", "label_name": "WRONG_ANSWER"}
{"text": "No thanks for your help.", "label_name": "WRONG_ANSWER"}
{"text": "I'm having trouble understanding the information", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with laptop screen?", "label_name": "NEED_CLARIFICATION"}
{"text": "service.", "label_name": "WRONG_ANSWER"}
{"text": "Not It's all, thank you!", "label_name": "WRONG_ANSWER"}
{"text": "What else is there? I'm leaving on March 1st.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with fb account?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with ring of elysium?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with a lawn mower battery?", "label_name": "NEED_CLARIFICATION"}
{"text": "no, not at the", "label_name": "WANT_DIFFERENT"}
{"text": "uh, no, the correct answer is.", "label_name": "WRONG_ANSWER"}
{"text": "No, I prefer on the 9th if it's possible", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about alabama state university?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, no transfer. Can you buy me two tickets for the concert?", "label_name": "WANT_DIFFERENT"}
{"text": "change the destination to 5560 santa", "label_name": "WRONG_ANSWER"}
{"text": "no that all i need", "label_name": "WRONG_ANSWER"}
{"text": "What do you think of True Grit? Its rating averages 7.6. [USER Do you any other movies to suggest?", "label_name": "WANT_DIFFERENT"}
{"text": "I guess make the calculation shorter", "label_name": "WANT_DIFFERENT"}
{"text": "Nope. I to have an appointment at 11:45 am.", "label_name": "WRONG_ANSWER"}
{"text": "Actually, can you kindly change that? I will be leaving from Anaheim.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with kidneys?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about post foods llc?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about the treatment of bronchiectasis?", "label_name": "NEED_CLARIFICATION"}
{"text": "No, not now. I want to find a one-way flight there.", "label_name": "WANT_DIFFERENT"}
{"text": "[USER Book it quarter 7 in the evening.", "label_name": "WRONG_ANSWER"}
{"text": "Are there any Economy Extra tickets available instead?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about aciclovir?", "label_name": "NEED_CLARIFICATION"}
{"text": "[USER QUERY] Thanks. also help me with 1 hotel [SYSTEM Ace Hotel Seattle has a 4.5 rating.", "label_name": "WANT_DIFFERENT"}
{"text": "I want something in sd", "label_name": "WANT_DIFFERENT"}
{"text": "no way thats right tho", "label_name": "WRONG_ANSWER"}
{"text": "Nope. We're anything set for now.", "label_name": "WRONG_ANSWER"}
{"text": "What would you like to know about adams state university?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about montana state university?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with apple os?", "label_name": "NEED_CLARIFICATION"}
{"text": "um, confused right now.", "label_name": "NEED_CLARIFICATION"}
{"text": "That's all the help I'll be needing for now. Thanks.", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to do with adsense account?", "label_name": "NEED_CLARIFICATION"}
{"text": "No.Make it please for 1st of this month.", "label_name": "WRONG_ANSWER"}
{"text": "How about one which has a four star rating?", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about confederate flag?", "label_name": "NEED_CLARIFICATION"}
{"text": "Possibly could you clarify the details perhaps?", "label_name": "NEED_CLARIFICATION"}
{"text": "Do you want me to the flight for you? [USER No, not yet.", "label_name": "WANT_DIFFERENT"}
{"text": "What do you want to do with property taxes?", "label_name": "NEED_CLARIFICATION"}
{"text": "This part about the suggestion is unclear", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to know about this medication?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with vinyl floor tiles?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about mole cricket?", "label_name": "NEED_CLARIFICATION"}
{"text": "As far as I know, what does this warning mean probably?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you mean by that?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with store app?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about financial controller?", "label_name": "NEED_CLARIFICATION"}
{"text": "got it, explore for some more attractions", "label_name": "WANT_DIFFERENT"}
{"text": "Are there any other restaurants?", "label_name": "WANT_DIFFERENT"}
{"text": "Are there any other attractions you can think of?", "label_name": "WANT_DIFFERENT"}
{"text": "Nothing else for", "label_name": "WRONG_ANSWER"}
{"text": "Maybe at a later time. What time am I able to watch the movie you found?", "label_name": "WANT_DIFFERENT"}
{"text": "This part about the details is unclear", "label_name": "NEED_CLARIFICATION"}
{"text": "I changed my mind, please play it on bedroom speaker.", "label_name": "WRONG_ANSWER"}
{"text": "This part about the result is uncllear", "label_name": "NEED_CLARIFICATION"}
{"text": "Not yet. I am not sure if my niece will like it.", "label_name": "WANT_DIFFERENT"}
{"text": "What would you like to know about incarnate word university?", "label_name": "NEED_CLARIFICATION"}
{"text": "Would there be any another trains that work?", "label_name": "WANT_DIFFERENT"}
{"text": "No, I don't buy yet. That's all I wanted from", "label_name": "WANT_DIFFERENT"}
{"text": "No, QUERY] you!", "label_name": "WRONG_ANSWER"}
{"text": "What do you want to know about benewah community hospital?", "label_name": "NEED_CLARIFICATION"}
{"text": "What do you want to do with audio device?", "label_name": "NEED_CLARIFICATION"}
{"text": "What would you like to know about nainital?", "label_name": "NEED_CLARIFICATION"}
|