-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_goals.json
7583 lines (7583 loc) · 784 KB
/
test_goals.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
{
"SNG0073.json": [
"You want to book a <span class='emphasis'>taxi</span>. The taxi should go to <span class='emphasis'>pizza hut fen ditton</span> and should depart from <span class='emphasis'>saint john's college</span>",
"The taxi should <span class='emphasis'>leave after 17:15</span>",
"Make sure you get <span class='emphasis'>car type</span> and <span class='emphasis'>contact number</span>"
],
"PMUL2437.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should be in the <span class='emphasis'>moderate</span> price range",
"Make sure you get <span class='emphasis'>food type</span> and <span class='emphasis'>postcode</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>mutliple sports</span> and should be <span class='emphasis'>in the same area as the restaurant</span>",
"If there is no such attraction, how about one that is in <span class='emphasis'>the type of architecture</span>",
"Make sure you get <span class='emphasis'>phone number</span>, <span class='emphasis'>entrance fee</span>, and <span class='emphasis'>address</span>"
],
"MUL2499.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should be in the <span class='emphasis'>cheap</span> price range",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>8 people</span> at <span class='emphasis'>18:30</span> on <span class='emphasis'>thursday</span>",
"If the booking fails how about <span class='emphasis'>17:30</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be <span class='emphasis'>in the same area as the restaurant</span> and should be in the type of <span class='emphasis'>entertainment</span>",
"If there is no such attraction, how about one that is in <span class='emphasis'>the type of architecture</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to make sure it arrives the restaurant <span class='emphasis'>by the booked time</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"MUL1575.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>restaurant two two</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>8 people</span> at <span class='emphasis'>11:15</span> on <span class='emphasis'>friday</span>",
"If the booking fails how about <span class='emphasis'>10:15</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>cambridge</span> and should <span class='emphasis'>leave after 12:15</span>",
"The train should go to <span class='emphasis'>peterborough</span> and should leave on <span class='emphasis'>saturday</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>the same group of people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL0671.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>arrive by 10:30</span> and should leave on <span class='emphasis'>saturday</span>",
"The train should go to <span class='emphasis'>cambridge</span> and should depart from <span class='emphasis'>birmingham new street</span>",
"Make sure you get <span class='emphasis'>train ID</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should <span class='emphasis'>include free wifi</span> and should be in the <span class='emphasis'>moderate</span> price range",
"The hotel should be in the type of <span class='emphasis'>guesthouse</span> and should be in the <span class='emphasis'>north</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>7 people</span> and <span class='emphasis'>5 nights</span> starting from <span class='emphasis'>the same day</span>",
"If the booking fails how about <span class='emphasis'>4 nights</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL3027.json": [
"You are looking for information in Cambridge",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>leicester</span> and should <span class='emphasis'>arrive by 16:15</span>",
"The train should go to <span class='emphasis'>cambridge</span> and should leave on <span class='emphasis'>monday</span>",
"Make sure you get <span class='emphasis'>travel time</span>"
],
"MUL1489.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should serve <span class='emphasis'>catalan</span> food and should be in the <span class='emphasis'>centre</span>",
"If there is no such restaurant, how about one that serves <span class='emphasis'>french</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>8 people</span> at <span class='emphasis'>17:30</span> on <span class='emphasis'>friday</span>",
"If the booking fails how about <span class='emphasis'>16:30</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>peterborough</span> and should go to <span class='emphasis'>cambridge</span>",
"The train should <span class='emphasis'>arrive by 11:15</span> and should be on <span class='emphasis'>the same day as the restaurant booking</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>the same group of people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG01608.json": [
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>moderate</span> price range and should serve <span class='emphasis'>portuguese</span> food",
"If there is no such restaurant, how about one that serves <span class='emphasis'>turkish</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>1 people</span> at <span class='emphasis'>14:00</span> on <span class='emphasis'>monday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG0888.json": [
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>moderate</span> price range and should be in the type of <span class='emphasis'>guesthouse</span>",
"The hotel should have <span class='emphasis'>a star of 3</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>4 people</span> and <span class='emphasis'>2 nights</span> starting from <span class='emphasis'>saturday</span>",
"If the booking fails how about <span class='emphasis'>1 nights</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL2305.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>entertainment</span>",
"Make sure you get <span class='emphasis'>postcode</span>, <span class='emphasis'>address</span>, and <span class='emphasis'>area</span>",
"You are also looking for a <span class='emphasis'>restaurant</span>. The restaurant should serve <span class='emphasis'>british</span> food and should be in the <span class='emphasis'>moderate</span> price range",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>7 people</span> at <span class='emphasis'>19:30</span> on <span class='emphasis'>friday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to make sure it arrives the restaurant <span class='emphasis'>by the booked time</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"MUL2321.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>maharajah tandoori restaurant</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>7 people</span> at <span class='emphasis'>12:30</span> on <span class='emphasis'>tuesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>boat</span> and should be in the <span class='emphasis'>east</span>",
"Make sure you get <span class='emphasis'>phone number</span> and <span class='emphasis'>postcode</span>"
],
"PMUL1812.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>leave after 13:45</span> and should depart from <span class='emphasis'>kings lynn</span>",
"The train should go to <span class='emphasis'>cambridge</span> and should leave on <span class='emphasis'>wednesday</span>",
"Make sure you get <span class='emphasis'>price</span> and <span class='emphasis'>arrival time</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel <span class='emphasis'>doesn't need to have free parking</span> and should <span class='emphasis'>include free wifi</span>",
"The hotel should be in the <span class='emphasis'>cheap</span> price range and should be in the type of <span class='emphasis'>guesthouse</span>",
"If there is no such hotel, how about one that has <span class='emphasis'>free parking</span>",
"Make sure you get <span class='emphasis'>phone number</span> and <span class='emphasis'>star of the hotel</span>"
],
"MUL2569.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>theatre</span>",
"Make sure you get <span class='emphasis'>area</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the type of <span class='emphasis'>hotel</span> and should be in the <span class='emphasis'>expensive</span> price range",
"The hotel should <span class='emphasis'>include free wifi</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>6 people</span> and <span class='emphasis'>5 nights</span> starting from <span class='emphasis'>saturday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>hotel</span> by <span class='emphasis'>19:45</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"MUL1491.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>arrive by 17:00</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should go to <span class='emphasis'>norwich</span> and should leave on <span class='emphasis'>saturday</span>",
"Make sure you get <span class='emphasis'>departure time</span> and <span class='emphasis'>train ID</span>",
"You are also looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should serve <span class='emphasis'>indian</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>2 people</span> at <span class='emphasis'>11:00</span> on <span class='emphasis'>the same day</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL3647.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>the slug and lettuce</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>4 people</span> at <span class='emphasis'>11:00</span> on <span class='emphasis'>thursday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>south</span>",
"Make sure you get <span class='emphasis'>attraction type</span> and <span class='emphasis'>entrance fee</span>"
],
"MUL1045.json": [
"You are planning your trip in Cambridge",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>south</span> and should be in the type of <span class='emphasis'>nightclub</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should <span class='emphasis'>include free parking</span> and should have <span class='emphasis'>a star of 2</span>",
"The hotel should be in the <span class='emphasis'>north</span> and should be in the type of <span class='emphasis'>hotel</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>4 people</span> and <span class='emphasis'>2 nights</span> starting from <span class='emphasis'>tuesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG01936.json": [
"You are looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>city centre north b and b</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>1 people</span> and <span class='emphasis'>5 nights</span> starting from <span class='emphasis'>friday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL1642.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>cambridge</span> and should go to <span class='emphasis'>london kings cross</span>",
"The train should leave on <span class='emphasis'>saturday</span> and should <span class='emphasis'>leave after 18:45</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>8 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>expensive</span> price range and should be in the <span class='emphasis'>centre</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>the same group of people</span> at <span class='emphasis'>14:15</span> on <span class='emphasis'>the same day</span>",
"If the booking fails how about <span class='emphasis'>13:15</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL0550.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>cambridge</span> and should go to <span class='emphasis'>bishops stortford</span>",
"The train should leave on <span class='emphasis'>monday</span> and should <span class='emphasis'>arrive by 18:45</span>",
"Make sure you get <span class='emphasis'>travel time</span> and <span class='emphasis'>price</span>",
"You are also looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>cheap</span> price range and should serve <span class='emphasis'>chinese</span> food",
"The restaurant should be in the <span class='emphasis'>centre</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>8 people</span> at <span class='emphasis'>10:30</span> on <span class='emphasis'>the same day</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL1612.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>sunday</span> and should go to <span class='emphasis'>london liverpool street</span>",
"The train should depart from <span class='emphasis'>cambridge</span> and should <span class='emphasis'>arrive by 18:00</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>1 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>sitar tandoori</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>the same group of people</span> at <span class='emphasis'>13:30</span> on <span class='emphasis'>the same day</span>",
"If the booking fails how about <span class='emphasis'>12:30</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL0088.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>cheap</span> price range and should <span class='emphasis'>include free parking</span>",
"The hotel should have <span class='emphasis'>a star of 3</span>",
"If there is no such hotel, how about one that is in the <span class='emphasis'>moderate</span> price range",
"Make sure you get <span class='emphasis'>postcode</span>, <span class='emphasis'>whether they have internet</span>, and <span class='emphasis'>phone number</span>",
"You are also looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>the cow pizza kitchen and bar</span>",
"Make sure you get <span class='emphasis'>address</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>hotel</span> by <span class='emphasis'>13:45</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"MUL0469.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>cambridge</span> and should <span class='emphasis'>leave after 13:45</span>",
"The train should go to <span class='emphasis'>birmingham new street</span> and should leave on <span class='emphasis'>thursday</span>",
"Make sure you get <span class='emphasis'>travel time</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>college</span>",
"Make sure you get <span class='emphasis'>address</span>"
],
"MUL1926.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>tuesday</span> and should depart from <span class='emphasis'>norwich</span>",
"The train should go to <span class='emphasis'>cambridge</span> and should <span class='emphasis'>arrive by 19:15</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>1 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>south</span>",
"Make sure you get <span class='emphasis'>entrance fee</span> and <span class='emphasis'>phone number</span>"
],
"PMUL1526.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>ely</span> and should <span class='emphasis'>leave after 09:00</span>",
"The train should leave on <span class='emphasis'>monday</span> and should depart from <span class='emphasis'>cambridge</span>",
"Make sure you get <span class='emphasis'>travel time</span>, <span class='emphasis'>arrival time</span>, and <span class='emphasis'>price</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should have <span class='emphasis'>a star of 4</span> and should be in the type of <span class='emphasis'>hotel</span>",
"The hotel should be in the <span class='emphasis'>expensive</span> price range and should <span class='emphasis'>include free wifi</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>7 people</span> and <span class='emphasis'>5 nights</span> starting from <span class='emphasis'>wednesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG0689.json": [
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should serve <span class='emphasis'>british</span> food and should be in the <span class='emphasis'>west</span>",
"Make sure you get <span class='emphasis'>phone number</span>, <span class='emphasis'>address</span>, and <span class='emphasis'>postcode</span>"
],
"PMUL4626.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>leave after 19:00</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should leave on <span class='emphasis'>tuesday</span> and should go to <span class='emphasis'>london kings cross</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>6 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>curry prince</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>the same group of people</span> at <span class='emphasis'>14:00</span> on <span class='emphasis'>the same day</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL2376.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>museum of archaelogy and anthropology</span>",
"Make sure you get <span class='emphasis'>attraction type</span>",
"You are also looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>expensive</span> price range and should be in the <span class='emphasis'>north</span>",
"The restaurant should serve <span class='emphasis'>european</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>2 people</span> at <span class='emphasis'>20:00</span> on <span class='emphasis'>sunday</span>",
"If the booking fails how about <span class='emphasis'>19:00</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG0263.json": [
"You are looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>birmingham new street</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should leave on <span class='emphasis'>friday</span> and should <span class='emphasis'>leave after 08:30</span>",
"Make sure you get <span class='emphasis'>travel time</span> and <span class='emphasis'>price</span>"
],
"MUL1350.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>east</span> and should be in the <span class='emphasis'>cheap</span> price range",
"The hotel should <span class='emphasis'>include free parking</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>8 people</span> and <span class='emphasis'>4 nights</span> starting from <span class='emphasis'>thursday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>same price range as the hotel</span> and should serve <span class='emphasis'>indian</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>the same group of people</span> at <span class='emphasis'>12:45</span> on <span class='emphasis'>the same day</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to make sure it arrives the restaurant <span class='emphasis'>by the booked time</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"MUL1799.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>arrive by 18:30</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should leave on <span class='emphasis'>tuesday</span> and should go to <span class='emphasis'>broxbourne</span>",
"Make sure you get <span class='emphasis'>train ID</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>south</span> and should be in the type of <span class='emphasis'>park</span>",
"Make sure you get <span class='emphasis'>phone number</span>, <span class='emphasis'>postcode</span>, and <span class='emphasis'>address</span>"
],
"MUL2405.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>prezzo</span>",
"Make sure you get <span class='emphasis'>address</span> and <span class='emphasis'>price range</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>address</span>"
],
"SNG0515.json": [
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>cheap</span> price range and should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>postcode</span>, <span class='emphasis'>address</span>, and <span class='emphasis'>phone number</span>"
],
"MUL2294.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>expensive</span> price range and should be in the type of <span class='emphasis'>hotel</span>",
"The hotel should <span class='emphasis'>include free wifi</span>",
"Make sure you get <span class='emphasis'>whether they have free parking</span> and <span class='emphasis'>postcode</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>saturday</span> and should go to <span class='emphasis'>london kings cross</span>",
"The train should <span class='emphasis'>leave after 18:30</span> and should depart from <span class='emphasis'>cambridge</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>1 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL1066.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>warkworth house</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>1 people</span> and <span class='emphasis'>3 nights</span> starting from <span class='emphasis'>tuesday</span>",
"If the booking fails how about <span class='emphasis'>2 nights</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>, <span class='emphasis'>attraction type</span>, and <span class='emphasis'>address</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>attraction</span> by <span class='emphasis'>02:45</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"SNG01386.json": [
"You are looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>a and b guest house</span>",
"Make sure you get <span class='emphasis'>address</span> and <span class='emphasis'>phone number</span>"
],
"MUL2290.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>thursday</span> and should <span class='emphasis'>leave after 12:15</span>",
"The train should depart from <span class='emphasis'>cambridge</span> and should go to <span class='emphasis'>peterborough</span>",
"Make sure you get <span class='emphasis'>price</span> and <span class='emphasis'>arrival time</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should have <span class='emphasis'>a star of 2</span> and should <span class='emphasis'>include free parking</span>",
"The hotel should be in the type of <span class='emphasis'>hotel</span>",
"Make sure you get <span class='emphasis'>postcode</span> and <span class='emphasis'>price range</span>"
],
"MUL2162.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>london kings cross</span> and should <span class='emphasis'>arrive by 16:00</span>",
"The train should leave on <span class='emphasis'>saturday</span> and should depart from <span class='emphasis'>cambridge</span>",
"Make sure you get <span class='emphasis'>price</span>, <span class='emphasis'>train ID</span>, and <span class='emphasis'>departure time</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should have <span class='emphasis'>a star of 3</span> and should be in the <span class='emphasis'>moderate</span> price range",
"The hotel should <span class='emphasis'>include free wifi</span> and should be in the type of <span class='emphasis'>guesthouse</span>",
"Make sure you get <span class='emphasis'>whether they have free parking</span>, <span class='emphasis'>address</span>, and <span class='emphasis'>phone number</span>"
],
"SNG0991.json": [
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should <span class='emphasis'>include free parking</span> and should be in the type of <span class='emphasis'>guesthouse</span>",
"The hotel should be in the <span class='emphasis'>expensive</span> price range and should <span class='emphasis'>include free wifi</span>",
"If there is no such hotel, how about one that is in the <span class='emphasis'>cheap</span> price range",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>8 people</span> and <span class='emphasis'>4 nights</span> starting from <span class='emphasis'>friday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL3596.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should have <span class='emphasis'>a star of 3</span> and should <span class='emphasis'>include free wifi</span>",
"The hotel should <span class='emphasis'>include free parking</span> and should be in the <span class='emphasis'>moderate</span> price range",
"Make sure you get <span class='emphasis'>phone number</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>sunday</span> and should go to <span class='emphasis'>kings lynn</span>",
"The train should depart from <span class='emphasis'>cambridge</span> and should <span class='emphasis'>leave after 10:00</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>4 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL0409.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>regency gallery</span>",
"Make sure you get <span class='emphasis'>area</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>cambridge</span> and should <span class='emphasis'>arrive by 09:15</span>",
"The train should leave on <span class='emphasis'>friday</span> and should depart from <span class='emphasis'>leicester</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>7 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL1192.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>cityroomz</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>7 people</span> and <span class='emphasis'>5 nights</span> starting from <span class='emphasis'>thursday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>scott polar museum</span>",
"Make sure you get <span class='emphasis'>attraction type</span>"
],
"MUL0845.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should be in the <span class='emphasis'>cheap</span> price range",
"The restaurant should serve <span class='emphasis'>singaporean</span> food",
"If there is no such restaurant, how about one that serves <span class='emphasis'>italian</span> food",
"Make sure you get <span class='emphasis'>postcode</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be <span class='emphasis'>in the same area as the restaurant</span>",
"Make sure you get <span class='emphasis'>attraction type</span> and <span class='emphasis'>postcode</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>restaurant</span> by <span class='emphasis'>22:15</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"PMUL2755.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should have <span class='emphasis'>a star of 4</span> and should be in the <span class='emphasis'>east</span>",
"The hotel should be in the type of <span class='emphasis'>guesthouse</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>8 people</span> and <span class='emphasis'>5 nights</span> starting from <span class='emphasis'>wednesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span> and should be in the type of <span class='emphasis'>museum</span>",
"Make sure you get <span class='emphasis'>postcode</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>attraction</span> by <span class='emphasis'>12:30</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"PMUL3126.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>arrive by 13:45</span> and should leave on <span class='emphasis'>tuesday</span>",
"The train should go to <span class='emphasis'>cambridge</span> and should depart from <span class='emphasis'>leicester</span>",
"Make sure you get <span class='emphasis'>departure time</span>, <span class='emphasis'>travel time</span>, and <span class='emphasis'>price</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>college</span> and should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>entrance fee</span> and <span class='emphasis'>phone number</span>"
],
"MUL1650.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should serve <span class='emphasis'>chinese</span> food and should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>price range</span>, <span class='emphasis'>phone number</span>, and <span class='emphasis'>address</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>peterborough</span> and should go to <span class='emphasis'>cambridge</span>",
"The train should leave on <span class='emphasis'>tuesday</span> and should <span class='emphasis'>leave after 15:15</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>2 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG0451.json": [
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should be in the <span class='emphasis'>moderate</span> price range",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>5 people</span> at <span class='emphasis'>13:45</span> on <span class='emphasis'>saturday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL3868.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>the fitzwilliam museum</span>",
"Make sure you get <span class='emphasis'>postcode</span>, <span class='emphasis'>entrance fee</span>, and <span class='emphasis'>phone number</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>cheap</span> price range and should be in the type of <span class='emphasis'>hotel</span>",
"The hotel should have <span class='emphasis'>a star of 3</span>",
"If there is no such hotel, how about one that is in the <span class='emphasis'>expensive</span> price range",
"Make sure you get <span class='emphasis'>whether they have free parking</span>, <span class='emphasis'>phone number</span>, and <span class='emphasis'>area</span>"
],
"MUL2177.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel <span class='emphasis'>doesn't need to include internet</span> and should be in the type of <span class='emphasis'>hotel</span>",
"The hotel should <span class='emphasis'>include free parking</span>",
"If there is no such hotel, how about one that has <span class='emphasis'>free wifi</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>4 people</span> and <span class='emphasis'>3 nights</span> starting from <span class='emphasis'>monday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>cambridge</span> and should leave on <span class='emphasis'>thursday</span>",
"The train should <span class='emphasis'>arrive by 12:45</span> and should go to <span class='emphasis'>birmingham new street</span>",
"Make sure you get <span class='emphasis'>price</span>"
],
"PMUL1276.json": [
"You are looking for information in Cambridge",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>east</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>sunday</span> and should go to <span class='emphasis'>bishops stortford</span>",
"The train should <span class='emphasis'>arrive by 15:00</span> and should depart from <span class='emphasis'>cambridge</span>",
"Make sure you get <span class='emphasis'>price</span> and <span class='emphasis'>train ID</span>"
],
"MUL0264.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>south</span> and should be in the <span class='emphasis'>expensive</span> price range",
"Make sure you get <span class='emphasis'>phone number</span> and <span class='emphasis'>food type</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>stansted airport</span> and should leave on <span class='emphasis'>thursday</span>",
"The train should go to <span class='emphasis'>cambridge</span> and should <span class='emphasis'>arrive by 10:15</span>",
"Make sure you get <span class='emphasis'>travel time</span>, <span class='emphasis'>price</span>, and <span class='emphasis'>departure time</span>"
],
"PMUL4134.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>queens' college</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>tuesday</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should go to <span class='emphasis'>leicester</span> and should <span class='emphasis'>leave after 09:45</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>1 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL2675.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>the cambridge belfry</span>",
"Make sure you get <span class='emphasis'>address</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>attraction type</span>, <span class='emphasis'>address</span>, and <span class='emphasis'>phone number</span>"
],
"PMUL1883.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>bishops stortford</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should <span class='emphasis'>leave after 17:00</span> and should leave on <span class='emphasis'>sunday</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>1 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>huntingdon marriott hotel</span>",
"Make sure you get <span class='emphasis'>whether they have free parking</span>"
],
"MUL1139.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should <span class='emphasis'>include free parking</span> and should be in the <span class='emphasis'>expensive</span> price range",
"The hotel should <span class='emphasis'>include free wifi</span> and should be in the type of <span class='emphasis'>hotel</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>8 people</span> and <span class='emphasis'>3 nights</span> starting from <span class='emphasis'>tuesday</span>",
"If the booking fails how about <span class='emphasis'>2 nights</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span> and should be in the type of <span class='emphasis'>college</span>",
"Make sure you get <span class='emphasis'>entrance fee</span> and <span class='emphasis'>postcode</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>attraction</span> by <span class='emphasis'>24:30</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"MUL1064.json": [
"You are planning your trip in Cambridge",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span> and should be in the type of <span class='emphasis'>entertainment</span>",
"If there is no such attraction, how about one that is in <span class='emphasis'>the type of college</span>",
"Make sure you get <span class='emphasis'>postcode</span> and <span class='emphasis'>entrance fee</span>",
"You are also looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>allenbell</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>4 people</span> and <span class='emphasis'>3 nights</span> starting from <span class='emphasis'>friday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL4643.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>north</span> and should be in the <span class='emphasis'>cheap</span> price range",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>5 people</span> at <span class='emphasis'>14:30</span> on <span class='emphasis'>wednesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should be <span class='emphasis'>in the same area as the restaurant</span> and should <span class='emphasis'>include free wifi</span>",
"The hotel should have <span class='emphasis'>a star of 2</span> and should be in the type of <span class='emphasis'>hotel</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>the same group of people</span> and <span class='emphasis'>2 nights</span> starting from <span class='emphasis'>the same day</span>",
"If the booking fails how about <span class='emphasis'>1 nights</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL3890.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>cambridge</span> and should go to <span class='emphasis'>kings lynn</span>",
"The train should leave on <span class='emphasis'>thursday</span> and should <span class='emphasis'>arrive by 14:00</span>",
"Make sure you get <span class='emphasis'>price</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should <span class='emphasis'>include free wifi</span> and should be in the <span class='emphasis'>moderate</span> price range",
"The hotel should have <span class='emphasis'>a star of 3</span>",
"Make sure you get <span class='emphasis'>hotel type</span> and <span class='emphasis'>area</span>"
],
"PMUL0286.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should <span class='emphasis'>include free wifi</span> and should have <span class='emphasis'>a star of 3</span>",
"The hotel should be in the type of <span class='emphasis'>hotel</span> and should be in the <span class='emphasis'>expensive</span> price range",
"Make sure you get <span class='emphasis'>address</span>, <span class='emphasis'>area</span>, and <span class='emphasis'>postcode</span>",
"You are also looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should serve <span class='emphasis'>indian</span> food",
"Make sure you get <span class='emphasis'>postcode</span> and <span class='emphasis'>phone number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>restaurant</span> by <span class='emphasis'>11:15</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"PMUL2124.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should serve <span class='emphasis'>northern european</span> food and should be in the <span class='emphasis'>moderate</span> price range",
"If there is no such restaurant, how about one that serves <span class='emphasis'>indian</span> food",
"Make sure you get <span class='emphasis'>postcode</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>, <span class='emphasis'>postcode</span>, and <span class='emphasis'>address</span>"
],
"PMUL0265.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should serve <span class='emphasis'>jamaican</span> food and should be in the <span class='emphasis'>centre</span>",
"If there is no such restaurant, how about one that serves <span class='emphasis'>indian</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>2 people</span> at <span class='emphasis'>14:30</span> on <span class='emphasis'>tuesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>autumn house</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>the same group of people</span> and <span class='emphasis'>2 nights</span> starting from <span class='emphasis'>the same day</span>",
"If the booking fails how about <span class='emphasis'>wednesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG0681.json": [
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>expensive</span> price range and should be in the <span class='emphasis'>west</span>",
"The restaurant should serve <span class='emphasis'>indian</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>1 people</span> at <span class='emphasis'>11:45</span> on <span class='emphasis'>monday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL1374.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>stevenage</span> and should <span class='emphasis'>leave after 09:45</span>",
"The train should leave on <span class='emphasis'>friday</span> and should go to <span class='emphasis'>cambridge</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>5 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span> and should be in the type of <span class='emphasis'>mutliple sports</span>",
"If there is no such attraction, how about one that is in <span class='emphasis'>the type of college</span>",
"Make sure you get <span class='emphasis'>entrance fee</span> and <span class='emphasis'>postcode</span>"
],
"SNG0085.json": [
"You want to book a <span class='emphasis'>taxi</span>. The taxi should go to <span class='emphasis'>mumford theatre</span> and should <span class='emphasis'>arrive by 09:00</span>",
"The taxi should depart from <span class='emphasis'>wagamama</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"SNG0898.json": [
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should <span class='emphasis'>include free wifi</span> and should be in the <span class='emphasis'>cheap</span> price range",
"The hotel should have <span class='emphasis'>a star of 3</span>",
"If there is no such hotel, how about one that is in the <span class='emphasis'>moderate</span> price range",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>2 people</span> and <span class='emphasis'>3 nights</span> starting from <span class='emphasis'>thursday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL0842.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>east</span> and should be in the <span class='emphasis'>moderate</span> price range",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>1 people</span> at <span class='emphasis'>16:15</span> on <span class='emphasis'>monday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be <span class='emphasis'>in the same area as the restaurant</span> and should be in the type of <span class='emphasis'>cinema</span>",
"If there is no such attraction, how about one that is in <span class='emphasis'>the type of mutliple sports</span>",
"Make sure you get <span class='emphasis'>phone number</span>"
],
"MUL1818.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>downing college</span>",
"Make sure you get <span class='emphasis'>area</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>cambridge</span> and should leave on <span class='emphasis'>sunday</span>",
"The train should depart from <span class='emphasis'>peterborough</span> and should <span class='emphasis'>arrive by 15:00</span>",
"Make sure you get <span class='emphasis'>price</span>, <span class='emphasis'>travel time</span>, and <span class='emphasis'>train ID</span>"
],
"SNG0601.json": [
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should serve <span class='emphasis'>indian</span> food and should be in the <span class='emphasis'>north</span>",
"Make sure you get <span class='emphasis'>address</span>"
],
"SNG02153.json": [
"You want to book a <span class='emphasis'>taxi</span>. The taxi should go to <span class='emphasis'>don pasquale pizzeria</span> and should depart from <span class='emphasis'>regency gallery</span>",
"The taxi should <span class='emphasis'>leave after 15:00</span>",
"Make sure you get <span class='emphasis'>car type</span> and <span class='emphasis'>contact number</span>"
],
"PMUL1316.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>the cambridge corn exchange</span>",
"Make sure you get <span class='emphasis'>attraction type</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>birmingham new street</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should leave on <span class='emphasis'>monday</span> and should <span class='emphasis'>arrive by 11:15</span>",
"Make sure you get <span class='emphasis'>travel time</span>, <span class='emphasis'>train ID</span>, and <span class='emphasis'>departure time</span>"
],
"MUL0937.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should serve <span class='emphasis'>chinese</span> food and should be in the <span class='emphasis'>expensive</span> price range",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>5 people</span> at <span class='emphasis'>15:30</span> on <span class='emphasis'>saturday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>, <span class='emphasis'>postcode</span>, and <span class='emphasis'>attraction type</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to make sure it arrives the restaurant <span class='emphasis'>by the booked time</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"PMUL3012.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>cambridge university botanic gardens</span>",
"Make sure you get <span class='emphasis'>attraction type</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>stevenage</span> and should <span class='emphasis'>leave after 09:30</span>",
"The train should depart from <span class='emphasis'>cambridge</span> and should leave on <span class='emphasis'>tuesday</span>",
"Make sure you get <span class='emphasis'>travel time</span>"
],
"PMUL2215.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span> and should be in the type of <span class='emphasis'>entertainment</span>",
"If there is no such attraction, how about one that is in <span class='emphasis'>the type of college</span>",
"Make sure you get <span class='emphasis'>address</span>, <span class='emphasis'>postcode</span>, and <span class='emphasis'>entrance fee</span>",
"You are also looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>cheap</span> price range and should serve <span class='emphasis'>asian oriental</span> food",
"The restaurant should be <span class='emphasis'>in the same area as the attraction</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>3 people</span> at <span class='emphasis'>19:00</span> on <span class='emphasis'>sunday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to make sure it arrives the restaurant <span class='emphasis'>by the booked time</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"SNG01270.json": [
"You want to book a <span class='emphasis'>taxi</span>. The taxi should depart from <span class='emphasis'>lan hong house</span> and should <span class='emphasis'>leave after 14:45</span>",
"The taxi should go to <span class='emphasis'>leicester train station</span>",
"Make sure you get <span class='emphasis'>car type</span> and <span class='emphasis'>contact number</span>"
],
"MUL2119.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should <span class='emphasis'>include free wifi</span> and should <span class='emphasis'>include free parking</span>",
"The hotel should be in the <span class='emphasis'>east</span> and should have <span class='emphasis'>a star of 4</span>",
"Make sure you get <span class='emphasis'>phone number</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>cambridge</span> and should leave on <span class='emphasis'>tuesday</span>",
"The train should depart from <span class='emphasis'>leicester</span> and should <span class='emphasis'>arrive by 20:45</span>",
"Make sure you get <span class='emphasis'>departure time</span> and <span class='emphasis'>price</span>"
],
"MUL2491.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>expensive</span> price range and should serve <span class='emphasis'>indian</span> food",
"The restaurant should be in the <span class='emphasis'>south</span>",
"Make sure you get <span class='emphasis'>address</span>, <span class='emphasis'>postcode</span>, and <span class='emphasis'>phone number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be <span class='emphasis'>in the same area as the restaurant</span>",
"Make sure you get <span class='emphasis'>entrance fee</span> and <span class='emphasis'>postcode</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>attraction</span> by <span class='emphasis'>10:15</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"PMUL2703.json": [
"You are planning your trip in Cambridge",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span> and should be in the type of <span class='emphasis'>college</span>",
"Make sure you get <span class='emphasis'>postcode</span>, <span class='emphasis'>address</span>, and <span class='emphasis'>entrance fee</span>",
"You are also looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>express by holiday inn cambridge</span>",
"Make sure you get <span class='emphasis'>star of the hotel</span> and <span class='emphasis'>hotel type</span>"
],
"SNG0892.json": [
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>moderate</span> price range and should have <span class='emphasis'>a star of 3</span>",
"The hotel should <span class='emphasis'>include free wifi</span> and should be in the type of <span class='emphasis'>hotel</span>",
"If there is no such hotel, how about one that is in <span class='emphasis'>the type of guesthouse</span>",
"Make sure you get <span class='emphasis'>phone number</span> and <span class='emphasis'>address</span>"
],
"PMUL4356.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>expensive</span> price range and should serve <span class='emphasis'>chinese</span> food",
"The restaurant should be in the <span class='emphasis'>south</span>",
"Make sure you get <span class='emphasis'>postcode</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>cambridge</span> and should leave on <span class='emphasis'>sunday</span>",
"The train should <span class='emphasis'>leave after 19:45</span> and should depart from <span class='emphasis'>leicester</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>5 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL3162.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should serve <span class='emphasis'>british</span> food and should be in the <span class='emphasis'>west</span>",
"Make sure you get <span class='emphasis'>phone number</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>arrive by 08:00</span> and should go to <span class='emphasis'>cambridge</span>",
"The train should depart from <span class='emphasis'>london liverpool street</span> and should leave on <span class='emphasis'>saturday</span>",
"Make sure you get <span class='emphasis'>train ID</span>"
],
"SNG01679.json": [
"You want to book a <span class='emphasis'>taxi</span>. The taxi should go to <span class='emphasis'>pipasha restaurant</span> and should <span class='emphasis'>leave after 01:45</span>",
"The taxi should depart from <span class='emphasis'>ballare</span>",
"Make sure you get <span class='emphasis'>car type</span> and <span class='emphasis'>contact number</span>"
],
"PMUL3494.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>arrive by 19:00</span> and should leave on <span class='emphasis'>monday</span>",
"The train should go to <span class='emphasis'>ely</span> and should depart from <span class='emphasis'>cambridge</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>8 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>west</span> and should be in the <span class='emphasis'>expensive</span> price range",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>the same group of people</span> at <span class='emphasis'>13:15</span> on <span class='emphasis'>the same day</span>",
"If the booking fails how about <span class='emphasis'>12:15</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG0006.json": [
"You want to book a <span class='emphasis'>taxi</span>. The taxi should depart from <span class='emphasis'>yu garden</span> and should <span class='emphasis'>arrive by 14:30</span>",
"The taxi should go to <span class='emphasis'>holy trinity church</span>",
"Make sure you get <span class='emphasis'>car type</span> and <span class='emphasis'>contact number</span>"
],
"MUL0831.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>king's college</span>",
"Make sure you get <span class='emphasis'>phone number</span>",
"You are also looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>expensive</span> price range and should be in the <span class='emphasis'>centre</span>",
"The restaurant should serve <span class='emphasis'>creative</span> food",
"If there is no such restaurant, how about one that serves <span class='emphasis'>indian</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>7 people</span> at <span class='emphasis'>14:15</span> on <span class='emphasis'>tuesday</span>",
"If the booking fails how about <span class='emphasis'>13:15</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG0466.json": [
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should be in the <span class='emphasis'>moderate</span> price range",
"The restaurant should serve <span class='emphasis'>lebanese</span> food",
"Make sure you get <span class='emphasis'>address</span>"
],
"PMUL2286.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should serve <span class='emphasis'>indian</span> food and should be in the <span class='emphasis'>expensive</span> price range",
"Make sure you get <span class='emphasis'>postcode</span>",
"You are also looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>cambridge arts theatre</span>",
"Make sure you get <span class='emphasis'>address</span> and <span class='emphasis'>attraction type</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>restaurant</span> by <span class='emphasis'>17:00</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"PMUL0745.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>moderate</span> price range and should serve <span class='emphasis'>italian</span> food",
"The restaurant should be in the <span class='emphasis'>south</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>7 people</span> at <span class='emphasis'>19:30</span> on <span class='emphasis'>friday</span>",
"If the booking fails how about <span class='emphasis'>18:30</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>arrive by 12:00</span> and should go to <span class='emphasis'>cambridge</span>",
"The train should depart from <span class='emphasis'>kings lynn</span> and should be on <span class='emphasis'>the same day as the restaurant booking</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>the same group of people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG0360.json": [
"You are looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>arrive by 13:30</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should go to <span class='emphasis'>ely</span> and should leave on <span class='emphasis'>sunday</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>8 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL2239.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>expensive</span> price range and should serve <span class='emphasis'>italian</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>4 people</span> at <span class='emphasis'>14:30</span> on <span class='emphasis'>friday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>college</span> and should be in the <span class='emphasis'>centre</span>",
"Make sure you get <span class='emphasis'>phone number</span> and <span class='emphasis'>postcode</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to make sure it arrives the restaurant <span class='emphasis'>by the booked time</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"SNG1048.json": [
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>expensive</span> price range and should <span class='emphasis'>include free parking</span>",
"The hotel should be in the type of <span class='emphasis'>guesthouse</span>",
"If there is no such hotel, how about one that is in the <span class='emphasis'>cheap</span> price range",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>5 people</span> and <span class='emphasis'>4 nights</span> starting from <span class='emphasis'>wednesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL4318.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>moderate</span> price range and should serve <span class='emphasis'>chinese</span> food",
"Make sure you get <span class='emphasis'>postcode</span> and <span class='emphasis'>address</span>",
"You are also looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>limehouse</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>5 people</span> and <span class='emphasis'>4 nights</span> starting from <span class='emphasis'>tuesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>hotel</span> by <span class='emphasis'>21:15</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"PMUL2497.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should serve <span class='emphasis'>modern european</span> food",
"The restaurant should be in the <span class='emphasis'>moderate</span> price range",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>7 people</span> at <span class='emphasis'>19:30</span> on <span class='emphasis'>wednesday</span>",
"If the booking fails how about <span class='emphasis'>friday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>entertainment</span> and should be <span class='emphasis'>in the same area as the restaurant</span>",
"If there is no such attraction, how about one that is in <span class='emphasis'>the type of boat</span>",
"Make sure you get <span class='emphasis'>phone number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to make sure it arrives the restaurant <span class='emphasis'>by the booked time</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"MUL1276.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should be in the <span class='emphasis'>cheap</span> price range",
"Make sure you get <span class='emphasis'>postcode</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should be <span class='emphasis'>in the same area as the restaurant</span> and should have <span class='emphasis'>a star of 4</span>",
"The hotel should be in the type of <span class='emphasis'>hotel</span>",
"Make sure you get <span class='emphasis'>phone number</span>"
],
"SNG1026.json": [
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>moderate</span> price range and should <span class='emphasis'>include free parking</span>",
"The hotel should <span class='emphasis'>include free wifi</span> and should have <span class='emphasis'>a star of 2</span>",
"Make sure you get <span class='emphasis'>postcode</span>, <span class='emphasis'>address</span>, and <span class='emphasis'>area</span>"
],
"MUL2347.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>expensive</span> price range and should be in the <span class='emphasis'>centre</span>",
"The restaurant should serve <span class='emphasis'>chinese</span> food",
"Make sure you get <span class='emphasis'>address</span>, <span class='emphasis'>phone number</span>, and <span class='emphasis'>postcode</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be <span class='emphasis'>in the same area as the restaurant</span> and should be in the type of <span class='emphasis'>college</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>, <span class='emphasis'>postcode</span>, and <span class='emphasis'>phone number</span>"
],
"PMUL4077.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>moderate</span> price range and should have <span class='emphasis'>a star of 4</span>",
"The hotel should be in the <span class='emphasis'>north</span>",
"Make sure you get <span class='emphasis'>postcode</span>, <span class='emphasis'>phone number</span>, and <span class='emphasis'>whether they have internet</span>",
"You are also looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>nandos city centre</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>6 people</span> at <span class='emphasis'>15:30</span> on <span class='emphasis'>sunday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to make sure it arrives the restaurant <span class='emphasis'>by the booked time</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"PMUL0457.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>particular hotel</span>. Its name is called <span class='emphasis'>a and b guest house</span>",
"Make sure you get <span class='emphasis'>whether they have free parking</span> and <span class='emphasis'>star of the hotel</span>",
"You are also looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>centre</span> and should serve <span class='emphasis'>steakhouse</span> food",
"The restaurant should be in the <span class='emphasis'>cheap</span> price range",
"If there is no such restaurant, how about one that serves <span class='emphasis'>spanish</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>3 people</span> at <span class='emphasis'>17:45</span> on <span class='emphasis'>tuesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL2116.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should <span class='emphasis'>include free wifi</span> and should be in the type of <span class='emphasis'>guesthouse</span>",
"The hotel should <span class='emphasis'>include free parking</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>8 people</span> and <span class='emphasis'>5 nights</span> starting from <span class='emphasis'>sunday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>leicester</span> and should <span class='emphasis'>arrive by 20:30</span>",
"The train should go to <span class='emphasis'>cambridge</span> and should be on <span class='emphasis'>the same day as the hotel booking</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>the same group of people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"PMUL1982.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>expensive</span> price range and should be in the <span class='emphasis'>east</span>",
"The hotel should be in the type of <span class='emphasis'>hotel</span> and should <span class='emphasis'>include free wifi</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>1 people</span> and <span class='emphasis'>2 nights</span> starting from <span class='emphasis'>monday</span>",
"If the booking fails how about <span class='emphasis'>1 nights</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>leave after 10:30</span> and should go to <span class='emphasis'>cambridge</span>",
"The train should be on <span class='emphasis'>the same day as the hotel booking</span> and should depart from <span class='emphasis'>bishops stortford</span>",
"Make sure you get <span class='emphasis'>price</span>"
],
"PMUL1091.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>tuesday</span> and should <span class='emphasis'>leave after 15:15</span>",
"The train should depart from <span class='emphasis'>cambridge</span> and should go to <span class='emphasis'>kings lynn</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>8 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span> and should be in the type of <span class='emphasis'>theatre</span>",
"Make sure you get <span class='emphasis'>address</span>, <span class='emphasis'>postcode</span>, and <span class='emphasis'>phone number</span>"
],
"MUL1228.json": [
"You are traveling to Cambridge and looking forward to try local restaurants",
"You are looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>peking restaurant</span>",
"Make sure you get <span class='emphasis'>food type</span> and <span class='emphasis'>address</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>centre</span> and should <span class='emphasis'>include free wifi</span>",
"The hotel should be in the type of <span class='emphasis'>hotel</span> and should be in the <span class='emphasis'>moderate</span> price range",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>1 people</span> and <span class='emphasis'>3 nights</span> starting from <span class='emphasis'>friday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to leave the <span class='emphasis'>restaurant</span> by <span class='emphasis'>21:30</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"PMUL1762.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should <span class='emphasis'>leave after 13:00</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should leave on <span class='emphasis'>thursday</span> and should go to <span class='emphasis'>broxbourne</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>1 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should have <span class='emphasis'>a star of 2</span> and should <span class='emphasis'>include free wifi</span>",
"The hotel should be in the <span class='emphasis'>north</span>",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>the same group of people</span> and <span class='emphasis'>5 nights</span> starting from <span class='emphasis'>saturday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL1746.json": [
"You are looking for information in Cambridge",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>centre</span> and should be in the type of <span class='emphasis'>museum</span>",
"Make sure you get <span class='emphasis'>address</span>, <span class='emphasis'>entrance fee</span>, and <span class='emphasis'>postcode</span>",
"You are also looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>thursday</span> and should go to <span class='emphasis'>norwich</span>",
"The train should <span class='emphasis'>arrive by 21:00</span> and should depart from <span class='emphasis'>cambridge</span>",
"Once you find the train you want to make a booking for <span class='emphasis'>2 people</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL0690.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should go to <span class='emphasis'>birmingham new street</span> and should depart from <span class='emphasis'>cambridge</span>",
"The train should <span class='emphasis'>arrive by 21:30</span> and should leave on <span class='emphasis'>sunday</span>",
"Make sure you get <span class='emphasis'>price</span> and <span class='emphasis'>train ID</span>",
"You are also looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>north</span> and should <span class='emphasis'>include free parking</span>",
"The hotel should <span class='emphasis'>include free wifi</span> and should have <span class='emphasis'>a star of 4</span>",
"Make sure you get <span class='emphasis'>hotel type</span>, <span class='emphasis'>price range</span>, and <span class='emphasis'>phone number</span>"
],
"MUL0896.json": [
"You are traveling to Cambridge and excited about seeing local tourist attractions",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>museum</span>",
"Make sure you get <span class='emphasis'>entrance fee</span> and <span class='emphasis'>phone number</span>",
"You are also looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>cheap</span> price range and should serve <span class='emphasis'>italian</span> food",
"The restaurant should be in the <span class='emphasis'>north</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>1 people</span> at <span class='emphasis'>18:15</span> on <span class='emphasis'>wednesday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG01940.json": [
"You want to book a <span class='emphasis'>taxi</span>. The taxi should go to <span class='emphasis'>michaelhouse cafe</span> and should <span class='emphasis'>arrive by 12:45</span>",
"The taxi should depart from <span class='emphasis'>williams art and antiques</span>",
"Make sure you get <span class='emphasis'>car type</span> and <span class='emphasis'>contact number</span>"
],
"SNG1070.json": [
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>east</span> and should be in the type of <span class='emphasis'>entertainment</span>",
"Make sure you get <span class='emphasis'>entrance fee</span>, <span class='emphasis'>postcode</span>, and <span class='emphasis'>address</span>"
],
"MUL2301.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>darrys cookhouse and wine shop</span>",
"Make sure you get <span class='emphasis'>food type</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>museum</span>",
"Make sure you get <span class='emphasis'>phone number</span>"
],
"PMUL4946.json": [
"You are planning your trip in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the type of <span class='emphasis'>hotel</span> and should be in the <span class='emphasis'>north</span>",
"The hotel should be in the <span class='emphasis'>moderate</span> price range",
"Make sure you get <span class='emphasis'>whether they have free parking</span>",
"You are also looking for a <span class='emphasis'>particular restaurant</span>. Its name is called <span class='emphasis'>the river bar steakhouse and grill</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>3 people</span> at <span class='emphasis'>16:30</span> on <span class='emphasis'>saturday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You also want to book a <span class='emphasis'>taxi</span> to commute between the two places",
"You want to make sure it arrives the restaurant <span class='emphasis'>by the booked time</span>",
"Make sure you get <span class='emphasis'>contact number</span> and <span class='emphasis'>car type</span>"
],
"SNG0471.json": [
"You are looking for a <span class='emphasis'>place to dine</span>. The restaurant should be in the <span class='emphasis'>south</span> and should serve <span class='emphasis'>eastern european</span> food",
"The restaurant should be in the <span class='emphasis'>expensive</span> price range",
"If there is no such restaurant, how about one that serves <span class='emphasis'>chinese</span> food",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>1 people</span> at <span class='emphasis'>11:45</span> on <span class='emphasis'>saturday</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"SNG01957.json": [
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>cheap</span> price range and should be in the <span class='emphasis'>north</span>",
"The hotel should be in the type of <span class='emphasis'>guesthouse</span> and should <span class='emphasis'>include free wifi</span>",
"Make sure you get <span class='emphasis'>star of the hotel</span> and <span class='emphasis'>postcode</span>"
],
"PMUL0089.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>place to stay</span>. The hotel should be in the <span class='emphasis'>east</span> and should be in the <span class='emphasis'>cheap</span> price range",
"The hotel should have <span class='emphasis'>a star of 2</span>",
"If there is no such hotel, how about one that is in the <span class='emphasis'>expensive</span> price range",
"Once you find the <span class='emphasis'>hotel</span> you want to book it for <span class='emphasis'>5 people</span> and <span class='emphasis'>3 nights</span> starting from <span class='emphasis'>thursday</span>",
"If the booking fails how about <span class='emphasis'>1 nights</span>",
"Make sure you get the <span class='emphasis'>reference number</span>",
"You are also looking for a <span class='emphasis'>restaurant</span>. The restaurant should serve <span class='emphasis'>chinese</span> food and should be in the <span class='emphasis'>same price range as the hotel</span>",
"Once you find the <span class='emphasis'>restaurant</span> you want to book a table for <span class='emphasis'>the same group of people</span> at <span class='emphasis'>19:45</span> on <span class='emphasis'>the same day</span>",
"If the booking fails how about <span class='emphasis'>18:45</span>",
"Make sure you get the <span class='emphasis'>reference number</span>"
],
"MUL0484.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should depart from <span class='emphasis'>norwich</span> and should go to <span class='emphasis'>cambridge</span>",
"The train should <span class='emphasis'>arrive by 18:00</span> and should leave on <span class='emphasis'>monday</span>",
"Make sure you get <span class='emphasis'>travel time</span>, <span class='emphasis'>price</span>, and <span class='emphasis'>departure time</span>",
"You are also looking for a <span class='emphasis'>particular attraction</span>. Its name is called <span class='emphasis'>cineworld cinema</span>",
"Make sure you get <span class='emphasis'>area</span>"
],
"PMUL3919.json": [
"You are planning your trip in Cambridge",
"You are looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the type of <span class='emphasis'>theatre</span>",
"Make sure you get <span class='emphasis'>area</span>",
"You are also looking for a <span class='emphasis'>restaurant</span>. The restaurant should be in the <span class='emphasis'>expensive</span> price range and should be in the <span class='emphasis'>south</span>",
"The restaurant should serve <span class='emphasis'>chinese</span> food",
"Make sure you get <span class='emphasis'>postcode</span>, <span class='emphasis'>phone number</span>, and <span class='emphasis'>address</span>"
],
"PMUL1180.json": [
"You are looking for information in Cambridge",
"You are looking for a <span class='emphasis'>train</span>. The train should leave on <span class='emphasis'>wednesday</span> and should <span class='emphasis'>arrive by 16:15</span>",
"The train should depart from <span class='emphasis'>leicester</span> and should go to <span class='emphasis'>cambridge</span>",
"Make sure you get <span class='emphasis'>travel time</span>, <span class='emphasis'>train ID</span>, and <span class='emphasis'>departure time</span>",
"You are also looking for <span class='emphasis'>places to go</span> in town. The attraction should be in the <span class='emphasis'>west</span> and should be in the type of <span class='emphasis'>college</span>",