-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsfres.json
12993 lines (12993 loc) · 495 KB
/
sfres.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
[
{
"doc_id": 0,
"source": "confirm(area=dont_care)",
"reference": "Please confirm that you do not care what area the restaurant is located .",
"system_output": "Do you not to restaurant restaurants that are ?",
"scores": {
"informativeness": 1.0,
"naturalness": 1.0,
"overall": 1.0
}
},
{
"doc_id": 1,
"source": "confirm(area='financial district')",
"reference": "You are looking near the financial district , right ?",
"system_output": "You would like to search financial district ?",
"scores": {
"informativeness": 5.0,
"naturalness": 3.0,
"overall": 4.0
}
},
{
"doc_id": 2,
"source": "confirm(area='little russia')",
"reference": "You are looking in the little russia area correct ?",
"system_output": "You would like to search little russia ?",
"scores": {
"informativeness": 4.0,
"naturalness": 4.0,
"overall": 4.5
}
},
{
"doc_id": 3,
"source": "confirm(food='comfort food')",
"reference": "Just to double check , you would like a restaurant that serves comfort food ?",
"system_output": "You want a comfort food restaurant right ?",
"scores": {
"informativeness": 4.5,
"naturalness": 4.5,
"overall": 4.5
}
},
{
"doc_id": 4,
"source": "confirm(good_for_meal=dont_care)",
"reference": "Can I confirm you do not care what type of meal it is ?",
"system_output": "I am sorry just to confirm you are looking for a restaurant good for any meal ?",
"scores": {
"informativeness": 3.0,
"naturalness": 5.0,
"overall": 3.0
}
},
{
"doc_id": 5,
"source": "confirm(kids_allowed=dont_care)",
"reference": "Ok , you want a restaurant and you do not care whether it allows kid -s ?",
"system_output": "Let me confirm that you do not care if children are allowed at the restaurant ?",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 6,
"source": "confirm(kids_allowed=no)",
"reference": "Please confirm you do not want a child friendly restaurant .",
"system_output": "Can I confirm that you are looking for a restaurant that does not allow kids ?",
"scores": {
"informativeness": 6.0,
"naturalness": 4.0,
"overall": 3.0
}
},
{
"doc_id": 7,
"source": "confirm(kids_allowed=yes)",
"reference": "Please confirm , you want a restaurant that allows child -s ?",
"system_output": "Would you confirm that you would like to bring your child ?",
"scores": {
"informativeness": 4.0,
"naturalness": 5.0,
"overall": 6.0
}
},
{
"doc_id": 8,
"source": "confirm(near='inner richmond')",
"reference": "Can I confirm you are looking for a restaurant near inner richmond ?",
"system_output": "Can I confirm that you are looking for a restaurant near inner richmond ?",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 9,
"source": "confirm(near='potrero hill')",
"reference": "Can I confirm if you are looking for a restaurant near potrero hill ?",
"system_output": "Can I confirm that you are looking for a restaurant near potrero hill ?",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 10,
"source": "confirm(price_range=cheap)",
"reference": "Can I confirm you are looking for a cheap restaurant ?",
"system_output": "So you want a cheap place to eat ?",
"scores": {
"informativeness": 4.5,
"naturalness": 5.0,
"overall": 3.5
}
},
{
"doc_id": 11,
"source": "confirm(price_range=dont_care)",
"reference": "May I confirm that the price range does not matter ?",
"system_output": "Can I confirm that you do not care about the price range ?",
"scores": {
"informativeness": 5.0,
"naturalness": 4.0,
"overall": 4.0
}
},
{
"doc_id": 12,
"source": "confirm(price_range=expensive)",
"reference": "Can I confirm you would like to find an expensive restaurant ?",
"system_output": "So you want a expensive place to eat ?",
"scores": {
"informativeness": 2.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 13,
"source": "inform(name='a 16',food=pizza)",
"reference": "A 16 is a pizza restaurant .",
"system_output": "There is a pizza restaurant called a 16 .",
"scores": {
"informativeness": 5.0,
"naturalness": 5.5,
"overall": 6.0
}
},
{
"doc_id": 14,
"source": "inform(name='a 16',price_range=moderate,kids_allowed=no)",
"reference": "The restaurant a 16 has a moderate price range and does not allow kid -s",
"system_output": "A 16 , is moderately prices and does not allow children .",
"scores": {
"informativeness": 6.0,
"naturalness": 4.5,
"overall": 4.5
}
},
{
"doc_id": 15,
"source": "inform(name='a 16',type=restaurant)",
"reference": "A 16 is the name of the restaurant .",
"system_output": "The name of the restaurant is a 16 .",
"scores": {
"informativeness": 5.5,
"naturalness": 6.0,
"overall": 5.0
}
},
{
"doc_id": 16,
"source": "inform(name='alamo square seafood grill',address='803 fillmore street')",
"reference": "The address for alamo square seafood grill is 803 fillmore street .",
"system_output": "Alamo square seafood grill 's address is 803 fillmore street .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 17,
"source": "inform(name='alamo square seafood grill',food='sea food')",
"reference": "Alamo square seafood grill serves sea food .",
"system_output": "There is a sea food restaurant called alamo square seafood grill .",
"scores": {
"informativeness": 5.5,
"naturalness": 5.5,
"overall": 5.5
}
},
{
"doc_id": 18,
"source": "inform(name='alamo square seafood grill',near='alamo square',kids_allowed=no,good_for_meal=dinner)",
"reference": "Alamo square seafood grill is near alamo square , good for dinner and child -s are not allowed .",
"system_output": "Alamo square seafood grill , is near alamo square , does not allow kids for dinner .",
"scores": {
"informativeness": 5.5,
"naturalness": 4.0,
"overall": 4.0
}
},
{
"doc_id": 19,
"source": "inform(name='a la turca restaurant',near=tenderloin)",
"reference": "A la turca restaurant is near tenderloin .",
"system_output": "A la turca restaurant , is near the tenderloin .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 4.5
}
},
{
"doc_id": 20,
"source": "inform(name='a la turca restaurant',price_range=cheap)",
"reference": "A la turca restaurant is in the cheap price range .",
"system_output": "A la turca restaurant , is cheap .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 5.0
}
},
{
"doc_id": 21,
"source": "inform(name='alborz persian cuisine',food=persian,good_for_meal=dinner)",
"reference": "Alborz persian cuisine is a nice restaurant serving persian food good for dinner .",
"system_output": "Alborz persian cuisine , is a good restaurant that serves persian food , especially for dinner .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 22,
"source": "inform(name='alborz persian cuisine',price='between 9 and 13 dollar')",
"reference": "The price of alborz persian cuisine is between 9 and 13 dollar .",
"system_output": "The price is between 9 and 13 dollar at alborz persian cuisine .",
"scores": {
"informativeness": 6.0,
"naturalness": 4.5,
"overall": 4.0
}
},
{
"doc_id": 23,
"source": "inform(name='alborz persian cuisine',price_range=moderate)",
"reference": "Alborz persian cuisine has a moderate price range .",
"system_output": "Alborz persian cuisine , is moderate .",
"scores": {
"informativeness": 5.0,
"naturalness": 3.5,
"overall": 4.5
}
},
{
"doc_id": 24,
"source": "inform(name='alborz persian cuisine',price_range=moderate,food=persian)",
"reference": "Alborz persian cuisine serving good persian food is a moderate priced restaurant .",
"system_output": "Alborz persian cuisine serves persian food at a moderate price range .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 25,
"source": "inform(name='alborz persian cuisine',type=restaurant)",
"reference": "Alborz persian cuisine is good restaurant .",
"system_output": "The name of the restaurant is alborz persian cuisine .",
"scores": {
"informativeness": 5.0,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 26,
"source": "inform(name='amber india',food=indian)",
"reference": "Amber india restaurant serves indian food .",
"system_output": "There is a indian restaurant called amber india .",
"scores": {
"informativeness": 5.5,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 27,
"source": "inform(name='amber india',kids_allowed=no,food=indpak)",
"reference": "Amber india serves indpak food and kid -s are not allowed .",
"system_output": "Amber india , is a nice restaurant that serves indpak food and does not allow children .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 28,
"source": "inform(name='amber india',phone='4157770500',postcode='94103')",
"reference": "Amber india 's phone number is 4157770500. their postcode is 94103 .",
"system_output": "The phone number for amber india is 4157770500 , and the postcode is 94103 .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 5.0
}
},
{
"doc_id": 29,
"source": "inform(name='ananda fuara',food=vegetarian)",
"reference": "Ananda fuara is the restaurant serves vegetarian .",
"system_output": "There is a vegetarian restaurant called ananda fuara .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 30,
"source": "inform(name='angkor borei restaurant',area='hayes valley or bernal heights',phone='4155508417')",
"reference": "The name is angkor borei restaurant , the area is hayes valley or bernal heights , and the phone number is 4155508417",
"system_output": "Angkor borei restaurant , is in the hayes valley or bernal heights call 4155508417 .",
"scores": {
"informativeness": 5.0,
"naturalness": 6.0,
"overall": 5.0
}
},
{
"doc_id": 31,
"source": "inform(name='angkor borei restaurant',good_for_meal=dinner,area='bernal heights',price_range=cheap)",
"reference": "I would suggest angkor borei restaurant as a good restaurant for dinner in bernal heights for cheap food .",
"system_output": "Angkor borei restaurant , is good dinner choice for your cheap range in bernal heights .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 32,
"source": "inform(name='angkor borei restaurant',good_for_meal=dinner,near='bernal heights',price_range=cheap)",
"reference": "The angkor borei restaurant offers cheap dinner -s near to bernal heights .",
"system_output": "Angkor borei restaurant , is near bernal heights , the is good for dinner , and it is in the cheap price range .",
"scores": {
"informativeness": 5.0,
"naturalness": 2.5,
"overall": 1.5
}
},
{
"doc_id": 33,
"source": "inform(name='angkor borei restaurant',type=restaurant)",
"reference": "I would recommend angkor borei restaurant , a nice restaurant",
"system_output": "The name of the restaurant is angkor borei restaurant .",
"scores": {
"informativeness": 5.5,
"naturalness": 5.5,
"overall": 5.5
}
},
{
"doc_id": 34,
"source": "inform(name='aperto restaurant',kids_allowed=yes)",
"reference": "Aperto restaurant does allow kid -s .",
"system_output": "Aperto restaurant allows children .",
"scores": {
"informativeness": 5.0,
"naturalness": 5.5,
"overall": 6.0
}
},
{
"doc_id": 35,
"source": "inform(name='aperto restaurant',kids_allowed=yes,price_range=moderate,near='potrero hill')",
"reference": "Aperto restaurant is a moderate -ly priced restaurant that allows kid -s near the potrero hill area .",
"system_output": "Aperto restaurant , is near potrero hill , , is moderate range and allows children .",
"scores": {
"informativeness": 5.0,
"naturalness": 5.0,
"overall": 3.0
}
},
{
"doc_id": 36,
"source": "inform(name='aperto restaurant',near='potrero hill')",
"reference": "Do you want to try aperto restaurant near potrero hill ?",
"system_output": "Aperto restaurant , is near the potrero hill .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 5.0
}
},
{
"doc_id": 37,
"source": "inform(name='aperto restaurant',near='potrero hill',price_range=moderate)",
"reference": "Aperto restaurant is near potrero hill and is moderate -ly priced .",
"system_output": "Aperto restaurant near potrero hill offers moderate food .",
"scores": {
"informativeness": 5.0,
"naturalness": 3.5,
"overall": 4.0
}
},
{
"doc_id": 38,
"source": "inform(name='aperto restaurant',price='22 euro',phone='4152521625')",
"reference": "The phone number for aperto restaurant is 4152521625. the price is 22 euro .",
"system_output": "Aperto restaurant 's prices range 22 euro their phone number is 4152521625 .",
"scores": {
"informativeness": 5.5,
"naturalness": 5.0,
"overall": 4.5
}
},
{
"doc_id": 39,
"source": "inform(name='aperto restaurant',price_range=moderate)",
"reference": "The aperto restaurant has a moderate price range .",
"system_output": "Aperto restaurant , is moderate .",
"scores": {
"informativeness": 3.0,
"naturalness": 3.0,
"overall": 2.5
}
},
{
"doc_id": 40,
"source": "inform(name='aperto restaurant',type=restaurant)",
"reference": "The restaurant is named aperto restaurant .",
"system_output": "The name of the restaurant is aperto restaurant .",
"scores": {
"informativeness": 5.5,
"naturalness": 4.5,
"overall": 5.5
}
},
{
"doc_id": 41,
"source": "inform(name='arabian nights restaurant',address='2345 mission street')",
"reference": "The address to the arabian nights restaurant is 2345 mission street .",
"system_output": "Arabian nights restaurant 's address is 2345 mission street .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 5.0
}
},
{
"doc_id": 42,
"source": "inform(name='arabian nights restaurant',address='2345 mission street',phone='4156481444')",
"reference": "Arabian nights restaurant is located at 2345 mission street and can be reached by phone at 4156481444 .",
"system_output": "Arabian nights restaurant 's address is 2345 mission street , and its phone number is 4156481444 .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 43,
"source": "inform(name='arabian nights restaurant',area='hayes valley or noma')",
"reference": "Arabian nights restaurant is in the hayes valley or noma",
"system_output": "Arabian nights restaurant , is in the are of hayes valley or noma .",
"scores": {
"informativeness": 1.0,
"naturalness": 1.0,
"overall": 1.0
}
},
{
"doc_id": 44,
"source": "inform(name='arabian nights restaurant',area='hayes valley or noma',address='2345 mission street',phone='4156481444')",
"reference": "Arabian nights restaurant is in hayes valley or noma at 2345 mission street , you can call at 4156481444 .",
"system_output": "Arabian nights restaurant has 2 locations in hayes valley or noma , the address is 2345 mission street , and the phone number is 4156481444 .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 5.5
}
},
{
"doc_id": 45,
"source": "inform(name='arabian nights restaurant',food=arabian)",
"reference": "Arabian nights restaurant serves arabian",
"system_output": "There is a arabian restaurant called arabian nights restaurant .",
"scores": {
"informativeness": 4.5,
"naturalness": 5.5,
"overall": 5.0
}
},
{
"doc_id": 46,
"source": "inform(name='arabian nights restaurant',food=arabian,good_for_meal=dinner)",
"reference": "Arabian nights restaurant serves arabian and is good for dinner .",
"system_output": "Arabian nights restaurant , is a good restaurant that serves arabian food , especially for dinner .",
"scores": {
"informativeness": 6.0,
"naturalness": 4.5,
"overall": 4.5
}
},
{
"doc_id": 47,
"source": "inform(name='arabian nights restaurant',food=lebanese)",
"reference": "Arabian nights restaurant is a nice restaurant that serves lebanese food .",
"system_output": "There is a lebanese restaurant called arabian nights restaurant .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 5.0
}
},
{
"doc_id": 48,
"source": "inform(name='arabian nights restaurant',phone='4156481444')",
"reference": "Arabian nights restaurant 's phone number is 4156481444",
"system_output": "The phone number for arabian nights restaurant is 4156481444 .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 49,
"source": "inform(name='arabian nights restaurant',price_range='moderate',area='hayes valley or noma')",
"reference": "Arabian nights restaurant has moderate price -s and is in hayes valley or noma .",
"system_output": "Arabian nights restaurant , is in the hayes valley or noma area with a moderate price range .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 50,
"source": "inform(name='arabian nights restaurant',type=restaurant)",
"reference": "The restaurant is called arabian nights restaurant .",
"system_output": "The name of the restaurant is arabian nights restaurant .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.0,
"overall": 5.0
}
},
{
"doc_id": 51,
"source": "inform(name='assab eritrean restaurant',address='2845 geary blvd')",
"reference": "The address for assab eritrean restaurant is 2845 geary blvd .",
"system_output": "Assab eritrean restaurant 's address is 2845 geary blvd .",
"scores": {
"informativeness": 5.5,
"naturalness": 5.0,
"overall": 5.5
}
},
{
"doc_id": 52,
"source": "inform(name='assab eritrean restaurant',good_for_meal=dinner)",
"reference": "Assab eritrean restaurant serves dinner .",
"system_output": "Assab eritrean restaurant , is good for dinner .",
"scores": {
"informativeness": 4.5,
"naturalness": 4.0,
"overall": 4.0
}
},
{
"doc_id": 53,
"source": "inform(name='assab eritrean restaurant',phone='4154417083')",
"reference": "The phone number for assab eritrean restaurant is 4154417083 .",
"system_output": "The phone number for assab eritrean restaurant is 4154417083 .",
"scores": {
"informativeness": 5.5,
"naturalness": 4.5,
"overall": 5.0
}
},
{
"doc_id": 54,
"source": "inform(name='assab eritrean restaurant',postcode='94118')",
"reference": "Assab eritrean restaurant postcode is 94118",
"system_output": "The postcode of assab eritrean restaurant is 94118 .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 55,
"source": "inform(name='assab eritrean restaurant',price='between 7 and 11 euro')",
"reference": "Assab eritrean restaurant meal -s cost between 7 and 11 euro .",
"system_output": "The price is between 7 and 11 euro at assab eritrean restaurant .",
"scores": {
"informativeness": 5.5,
"naturalness": 4.0,
"overall": 5.5
}
},
{
"doc_id": 56,
"source": "inform(name='assab eritrean restaurant',price_range=cheap,address='2845 geary blvd')",
"reference": "Assab eritrean restaurant is cheap and the address is 2845 geary blvd .",
"system_output": "Assab eritrean restaurant , is at 2845 geary blvd and has a cheap price range .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.0,
"overall": 3.0
}
},
{
"doc_id": 57,
"source": "inform(name='assab eritrean restaurant',price_range=cheap,near='laurel heights')",
"reference": "Assab eritrean restaurant is a cheap restaurant near laurel heights",
"system_output": "Assab eritrean restaurant near laurel heights offers cheap food .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 58,
"source": "inform(name='atelier crenn',address='3127 fillmore street')",
"reference": "Atelier crenn is at 3127 fillmore street .",
"system_output": "Atelier crenn 's address is 3127 fillmore street .",
"scores": {
"informativeness": 5.5,
"naturalness": 4.5,
"overall": 5.5
}
},
{
"doc_id": 59,
"source": "inform(name='atelier crenn',price_range=expensive)",
"reference": "Atelier crenn is an expensive restaurant .",
"system_output": "Atelier crenn , is expensive .",
"scores": {
"informativeness": 4.0,
"naturalness": 4.5,
"overall": 3.0
}
},
{
"doc_id": 60,
"source": "inform(name='atelier crenn',type=restaurant)",
"reference": "Atelier crenn is a type of restaurant .",
"system_output": "The name of the restaurant is atelier crenn .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 4.5
}
},
{
"doc_id": 61,
"source": "inform(name='aux delices restaurant',address='2327 polk street')",
"reference": "Aux delices restaurant -s is located at 2327 polk street",
"system_output": "Aux delices restaurant 's address is 2327 polk street .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 5.5
}
},
{
"doc_id": 62,
"source": "inform(name='aux delices restaurant',food=vietnamese,near='russian hill')",
"reference": "There is a place called aux delices restaurant that serves vietnamese food near russian hill",
"system_output": "Aux delices restaurant near russian hill serves vietnamese .",
"scores": {
"informativeness": 5.0,
"naturalness": 5.0,
"overall": 5.0
}
},
{
"doc_id": 63,
"source": "inform(name='aux delices restaurant',kids_allowed=yes)",
"reference": "Aux delices restaurant allows kid -s",
"system_output": "Aux delices restaurant allows children .",
"scores": {
"informativeness": 5.0,
"naturalness": 4.0,
"overall": 5.0
}
},
{
"doc_id": 64,
"source": "inform(name='bar crudo',address='655 divisadero street')",
"reference": "Bar crudo is at 655 divisadero street",
"system_output": "Bar crudo 's address is 655 divisadero street .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 65,
"source": "inform(name='bar crudo',food='raw food')",
"reference": "Bar crudo serves raw food .",
"system_output": "There is a raw food restaurant called bar crudo .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 66,
"source": "inform(name='bar crudo',phone='4154090679')",
"reference": "Bar crudo 's phone number is 4154090679 .",
"system_output": "The phone number for bar crudo is 4154090679 .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 67,
"source": "inform(name='bar crudo',price_range=moderate)",
"reference": "Bar crudo price range is moderate",
"system_output": "Bar crudo , is moderate .",
"scores": {
"informativeness": 2.5,
"naturalness": 2.5,
"overall": 3.5
}
},
{
"doc_id": 68,
"source": "inform(name='beijing restaurant',address='1801 alemany blvd')",
"reference": "The address for beijing restaurant is 1801 alemany blvd .",
"system_output": "Beijing restaurant 's address is 1801 alemany blvd .",
"scores": {
"informativeness": 5.5,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 69,
"source": "inform(name='beijing restaurant',food=chinese)",
"reference": "Beijing restaurant is serving chinese food",
"system_output": "There is a chinese restaurant called beijing restaurant .",
"scores": {
"informativeness": 4.0,
"naturalness": 5.0,
"overall": 3.5
}
},
{
"doc_id": 70,
"source": "inform(name='beijing restaurant',near='mission terrace')",
"reference": "The beijing restaurant is near to the mission terrace .",
"system_output": "Beijing restaurant , is near the mission terrace .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.0,
"overall": 5.0
}
},
{
"doc_id": 71,
"source": "inform(name='beijing restaurant',near='mission terrace or outer mission')",
"reference": "Beijing restaurant is near mission terrace or outer mission",
"system_output": "Beijing restaurant , is near the mission terrace or outer mission .",
"scores": {
"informativeness": 5.0,
"naturalness": 5.0,
"overall": 5.0
}
},
{
"doc_id": 72,
"source": "inform(name='beijing restaurant',near='outer mission',price_range=cheap)",
"reference": "Beijing restaurant is a nice restaurant near outer mission , with cheap price -s .",
"system_output": "Beijing restaurant near outer mission offers cheap food .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 5.0
}
},
{
"doc_id": 73,
"source": "inform(name='beijing restaurant',phone='4153338182')",
"reference": "The phone number for beijing restaurant is 4153338182 .",
"system_output": "The phone number for beijing restaurant is 4153338182 .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 74,
"source": "inform(name='beijing restaurant',price_range=cheap,near='outer mission')",
"reference": "Beijing restaurant is in the cheap price range near outer mission .",
"system_output": "Beijing restaurant near outer mission offers cheap food .",
"scores": {
"informativeness": 5.5,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 75,
"source": "inform(name='beijing restaurant',type=restaurant)",
"reference": "The beijing restaurant is a nice restaurant",
"system_output": "The name of the restaurant is beijing restaurant .",
"scores": {
"informativeness": 5.5,
"naturalness": 4.0,
"overall": 3.5
}
},
{
"doc_id": 76,
"source": "inform(name=benu,address='22 hawthorne street')",
"reference": "Benu is at 22 hawthorne street",
"system_output": "Benu 's address is 22 hawthorne street .",
"scores": {
"informativeness": 5.5,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 77,
"source": "inform(name=benu,address='22 hawthorne street',postcode='94105')",
"reference": "Benu 's address is 22 hawthorne street . It is postcode is 94105 .",
"system_output": "Benu , is located at 22 hawthorne street , 94105 .",
"scores": {
"informativeness": 6.0,
"naturalness": 6.0,
"overall": 6.0
}
},
{
"doc_id": 78,
"source": "inform(name='benu',area='hayes valley or financial district south')",
"reference": "Benu is located in the area of hayes valley or financial district south",
"system_output": "Benu , is in the are of hayes valley or financial district south .",
"scores": {
"informativeness": 3.5,
"naturalness": 3.5,
"overall": 3.0
}
},
{
"doc_id": 79,
"source": "inform(name=benu,food=asian,kids_allowed=no)",
"reference": "Benu is a nice restaurant that serves asian food and does not allow child -s .",
"system_output": "Benu , is a nice restaurant that serves asian food and does not allow children .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.5,
"overall": 6.0
}
},
{
"doc_id": 80,
"source": "inform(name=benu,phone='4156854860')",
"reference": "The phone number for benu is 4156854860 .",
"system_output": "The phone number for benu is 4156854860 .",
"scores": {
"informativeness": 5.5,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 81,
"source": "inform(name=benu,price_range=expensive,near='financial district',food=asian)",
"reference": "Benu has an expensive price range . It is close to the financial district and serves asian food",
"system_output": "Benu , is near financial district , it serves asian and is expensively priced .",
"scores": {
"informativeness": 6.0,
"naturalness": 3.0,
"overall": 2.0
}
},
{
"doc_id": 82,
"source": "inform(name=benu,type=restaurant)",
"reference": "Benu is a nice restaurant",
"system_output": "The name of the restaurant is benu .",
"scores": {
"informativeness": 5.5,
"naturalness": 6.0,
"overall": 5.5
}
},
{
"doc_id": 83,
"source": "inform(name=betelnut,area='cow hollow',kids_allowed=no,price_range=expensive)",
"reference": "Betelnut is an expensive restaurant that does not allow kid -s in the cow hollow area .",
"system_output": "Betelnut , is in the cow hollow area is it do not allow kids expensive .",
"scores": {
"informativeness": 3.0,
"naturalness": 1.0,
"overall": 1.0
}
},
{
"doc_id": 84,
"source": "inform(name=betelnut,food=malaysian)",
"reference": "There is a malaysian restaurant called betelnut .",
"system_output": "There is a malaysian restaurant called betelnut .",
"scores": {
"informativeness": 5.0,
"naturalness": 5.5,
"overall": 5.0
}
},
{
"doc_id": 85,
"source": "inform(name='betelnut',near='marina cow hollow',area='cow hollow or hayes valley',phone='4159298855')",
"reference": "Betelnut is near the marina cow hollow and in the cow hollow or hayes valley area . The phone number is 4159298855 .",
"system_output": "Betelnut , is near marina cow hollow , , the , the , the , the , the , the , the , the , the , the , the , the , the , the and .",
"scores": {
"informativeness": 1.0,
"naturalness": 1.0,
"overall": 1.0
}
},
{
"doc_id": 86,
"source": "inform(name='borobudur restaurant',address='700 post street',phone='4157751512')",
"reference": "Borobudur restaurant is located at 700 post street . Its phone number is 4157751512",
"system_output": "Borobudur restaurant 's address is 700 post street , and its phone number is 4157751512 .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.0,
"overall": 5.5
}
},
{
"doc_id": 87,
"source": "inform(name='borobudur restaurant',food=indonesian)",
"reference": "Borobudur restaurant serves indonesian food .",
"system_output": "There is a indonesian restaurant called borobudur restaurant .",
"scores": {
"informativeness": 4.5,
"naturalness": 4.0,
"overall": 4.0
}
},
{
"doc_id": 88,
"source": "inform(name='borobudur restaurant',type=restaurant)",
"reference": "Borobudur restaurant is a nice restaurant",
"system_output": "The name of the restaurant is borobudur restaurant .",
"scores": {
"informativeness": 4.5,
"naturalness": 4.0,
"overall": 5.0
}
},
{
"doc_id": 89,
"source": "inform(name='bund shanghai restaurant',address='640 jackson street')",
"reference": "Bund shanghai restaurant 's address is 640 jackson street .",
"system_output": "Bund shanghai restaurant 's address is 640 jackson street .",
"scores": {
"informativeness": 6.0,
"naturalness": 5.0,
"overall": 5.0
}
},
{
"doc_id": 90,
"source": "inform(name='bund shanghai restaurant',food=shanghainese)",
"reference": "Bund shanghai restaurant serves shanghainese food .",
"system_output": "There is a shanghainese restaurant called bund shanghai restaurant .",
"scores": {
"informativeness": 6.0,
"naturalness": 4.0,
"overall": 4.5