-
Notifications
You must be signed in to change notification settings - Fork 34
/
labels.json
32574 lines (32574 loc) · 681 KB
/
labels.json
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
[
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110141,
"doc_id": 22
}
],
"response": "Unfortunately, this hotel doesn't offer any breakfast at this time. Would you still be interested in staying here?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 18
}
],
"response": "Yes, but the dog must be on a short leash or in a basket sized 85x60x60 cm. Any other questions about the train service?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 14
}
],
"response": "Additional data is not available for purchase. Is there anything else I can help you with today?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_spoken",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110053,
"doc_id": 14
}
],
"response": "that's a great question looking into that i see the check in start check in time starts at three"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 19224,
"doc_id": 0
}
],
"response": "Yes, Fitzbillies does offer gluten-free options. Is there anything else I can help you with?"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "attraction",
"entity_id": 100096,
"doc_id": 5
}
],
"response": "The admission to Madame Tussauds is $19.99 per person. Can I do anything else for you today?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "hotel",
"entity_id": 6,
"doc_id": 2
}
],
"response": "You can park off-road at this hotel. Do you need help with anything else?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 120182,
"doc_id": 2
}
],
"response": "Yes, they do take reservations. Would you like me to make one for you?"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "attraction",
"entity_id": 100026,
"doc_id": 0
}
],
"response": "It costs eight dollars. Anything else I can help you with?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110026,
"doc_id": 22
}
],
"response": "The Club Donatello offers a la carte or Continental to choose from. Would you like anymore infomation about the Club Donatello?"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110114,
"doc_id": 10
}
],
"response": "They offer a light inter-continental meal every morning. Would you want me to book a room?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "sf_written"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110009,
"doc_id": 15
}
],
"response": "No, there is no smoking allowed at the Andrews Hotel. Would you like for information about the Andrews Hotel?"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "sf_written"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "hotel",
"entity_id": 15,
"doc_id": 18
}
],
"response": "El Shaddai doesn't have daily housekeeping. Will that be all?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "taxi",
"entity_id": "*",
"doc_id": 2
}
],
"response": "Up to 24 hours in advance you can cancel for free and after that there is a 10GBP free. Do you need help with anything else?"
},
{
"target": false,
"source": "sf_spoken"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 14
}
],
"response": "Sorry there is no additional data available for purchase. What else can I help you with today?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "taxi",
"entity_id": "*",
"doc_id": 4
}
],
"response": "Yes, you can pay the taxi with Master card. Does it work for you?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 23
}
],
"response": "Yes, you can park your bike at the station. Do you want me to go ahead and make this train booking for you?"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "sf_written"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "taxi",
"entity_id": "*",
"doc_id": 4
}
],
"response": "Yes, major credit and debit cards are accepted, including Master Card. Do you require any further assistance?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "attraction",
"entity_id": 100171,
"doc_id": 0
}
],
"response": "Sorry, there is no parking available at Embarcadero Waterfront. Do you have more questions I may help you with?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 19254,
"doc_id": 7
}
],
"response": "The restaurant has wheelchair access for those with disability. Anything else I can do for you?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 120318,
"doc_id": 7
}
],
"response": "The Pho 2000 does not have any vegetarian options at this time. Would you like me to look for a place that does offer vegetarian options?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 18
}
],
"response": "You may bring 2 domestic pets kept on a short lead or in a basket smaller than 85x60x60 cm. Is there anything else you might need?"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "attraction",
"entity_id": 100049,
"doc_id": 0
}
],
"response": "Unfortunately, the Dragon Gate does not offer parking for bikes. Would you like more information on this landmark or can I help you with something else?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "hotel",
"entity_id": 2,
"doc_id": 9
}
],
"response": "Yes, parking is available on site. Is there any other information you need?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "hotel",
"entity_id": 12,
"doc_id": 6
}
],
"response": "No, they only speak in german, italian, spanish, and english. Should i make the reservation now?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 19262,
"doc_id": 14
}
],
"response": "Sorry, City Stop Restaurant does not offer live music. Should I make the reservation for you?"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110121,
"doc_id": 3
}
],
"response": "I'm sorry, Layne Hotel does not offer extra beds. Would you like to book this hotel though?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "taxi",
"entity_id": "*",
"doc_id": 2
}
],
"response": "You can cancel for free up to 24 hours before your scheduled time. Is there anything else I can help you with?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 19209,
"doc_id": 3
}
],
"response": "Yes, highchairs are available for babies to sit on. Did you need to know anything else?"
},
{
"target": true,
"source": "sf_spoken",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 120496,
"doc_id": 18
}
],
"response": "there is actually there is bike parking available here"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 11
}
],
"response": "There is basic wi-fi available on the train. Is there anything else I can help you with?"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 120476,
"doc_id": 8
}
],
"response": "No, unfortunately Tortellino does not have live music available. Is there anything else I can assist you with today?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110163,
"doc_id": 2
}
],
"response": "Yes, there is an elevator at St. Regis San Francisco. Is there anything else you'd like to know?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 21
}
],
"response": "Yes, but there may be a fee, so check with your station. would you like to book a ticket?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 19188,
"doc_id": 6
}
],
"response": "None. This restaurant is not wheelchair accessible. Would you like me to book a table for you?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110012,
"doc_id": 8
}
],
"response": "This hotel has 12:00PM listed as their check out time. Would you like me to get the phone number for you?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 120144,
"doc_id": 11
}
],
"response": "I'm sorry, there is no outdoor seating at Good Luck Dim Sum. Would you like me to find any more information?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "attraction",
"entity_id": 100077,
"doc_id": 2
}
],
"response": "Unfortunately, you can't go there in a wheelchair because it is not wheelchair accessible. Can I help you in any other way?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "hotel",
"entity_id": 2,
"doc_id": 33
}
],
"response": "No, there's no spa at the Alexander Bed and Breakfast. Anything else for you today?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110137,
"doc_id": 12
}
],
"response": "Nob Hill Motor Inn offers free coffee, tea, and juice to their guests. Do you have any other questions about Nob Hill Motor Inn?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 120279,
"doc_id": 9
}
],
"response": "It has a very casual and classy ambience, quite fun. Would you like to book a table?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": false,
"source": "sf_written"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 19224,
"doc_id": 13
}
],
"response": "Yes, there are parking facilities at this restaurant. Can I give you any other information about the restaurant?"
},
{
"target": false,
"source": "sf_spoken"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 13
}
],
"response": "There is a 50MB data cap per day, with no other payment options available for more. Is there anything else you needed?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "hotel",
"entity_id": 3,
"doc_id": 4
}
],
"response": "You must cancel at least five days in advance. Would you like any more assistance?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "taxi",
"entity_id": "*",
"doc_id": 4
}
],
"response": "Yes, they do take Visa and most major credit cards, and, of course, cash. Do you need any further information?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "hotel",
"entity_id": 23,
"doc_id": 30
}
],
"response": "No, this hotel does not have a gym. Anything else I can do for you?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 120033,
"doc_id": 12
}
],
"response": "No high chairs are available for babies. Should I reserve the table for you?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "taxi",
"entity_id": "*",
"doc_id": 2
}
],
"response": "Yes, there will be a fee of 10 GBP charged. Is there anything else I can do for you?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 22
}
],
"response": "There may be a parking fee that varies by station. Do you require assistance with anything else?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "train",
"entity_id": "*",
"doc_id": 6
}
],
"response": "You must apply for a refund and buy another ticket. Do you need more information?"
},
{
"target": true,
"source": "multiwoz",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 19188,
"doc_id": 12
}
],
"response": "Sorry, there are no gluten free options available at this restaurant. What else may I assist with?"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110079,
"doc_id": 18
}
],
"response": "Yes, the front desk is open 24 hours. Do you have any other questions I can help you with?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "sf_written"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110042,
"doc_id": 7
}
],
"response": "Housekeeping is provided daily. Can I provide any other information for you?"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": false,
"source": "multiwoz"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110002,
"doc_id": 5
}
],
"response": "The Admiral Hotel offers heating in all the guest rooms on the property. Would you like more information about the Admiral Hotel at this time?"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "hotel",
"entity_id": 110089,
"doc_id": 14
}
],
"response": "Yes, there is daily housekeeping at The Hotel Spero. Is there anything else you'd like to know about The Hotel Spero?"
},
{
"target": true,
"source": "sf_written",
"knowledge": [
{
"domain": "restaurant",
"entity_id": 120174,
"doc_id": 8
}
],
"response": "Sorry, but at this time Jake's Steaks does not have a happy hour. Anything else I can help you with?"