-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquality_normal4.txt
990 lines (990 loc) · 30.3 KB
/
quality_normal4.txt
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
----------------------------------------------------------
411_West.txt: 1.0
We recommend: crab
We recommend: chicken marsala
artichoke dip[1.0, 7.0] : 7.0
carpaccio[1.0, 14.0] : 14.0
chicken marsala[3.0, 25.0] : 8.33333333333
crab[4.0, 23.0] : 5.75
fettuccine[2.0, 19.0] : 9.5
flank steak[1.0, 6.0] : 6.0
grilled shrimp[2.0, 7.0] : 3.5
hazelnut pesto[1.0, 6.0] : 6.0
pasta salad[1.0, 7.0] : 7.0
shrimp carbonara[1.0, -9.0] : -9.0
spaghetti marinara[1.0, 16.0] : 16.0
stella's insalate[1.0, 9.0] : 9.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.842105263158
Baseline Precision: 0.888888888889
Baseline Recall: 0.941176470588
Baseline Negative Precision: 0.0
Baseline Negative Recall: 0.0
----------------------------------------------------------
----------------------------------------------------------
800_Degrees_Neapolitan_Pizzeria.txt: 1.0
We recommend: tartufo
We recommend: pizza margherita
capricciosa[3.0, 12.0] : 4.0
carni[10.0, 63.0] : 6.3
filetti[2.0, 13.0] : 6.5
napoletana[2.0, 19.0] : 9.5
piccante[7.0, 45.0] : 6.42857142857
pizza bianca[21.0, 120.0] : 5.71428571429
pizza margherita[22.0, 125.0] : 5.68181818182
pizza marinara[8.0, 59.0] : 7.375
pollo[3.0, 19.0] : 6.33333333333
quatro formaggi[1.0, 4.0] : 4.0
sausage and peppers[6.0, 38.0] : 6.33333333333
tartufo[37.0, 211.0] : 5.7027027027
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.885245901639
Baseline Precision: 0.929824561404
Baseline Recall: 0.946428571429
Baseline Negative Precision: 0.25
Baseline Negative Recall: 0.2
----------------------------------------------------------
----------------------------------------------------------
Allegro_Pizza.txt: 1.0
allegro white[2.0, 3.0] : 1.5
bbq chicken pizza[1.0, 9.0] : 9.0
white pizza[2.0, 21.0] : 10.5
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 0
NEG RECALL: 0
__________________________
Baseline Percentage: 0.8
Baseline Precision: 1.0
Baseline Recall: 0.8
Baseline Negative Precision: 0.0
Baseline Negative Recall: 0
----------------------------------------------------------
----------------------------------------------------------
Al_Forno_Restaurant.txt: 1.0
We recommend: oysters
We recommend: grand cookie finale
beets and frites[2.0, 9.0] : 4.5
bruschetta[2.0, 1.0] : 0.5
caesar salad[3.0, 18.0] : 6.0
cinnamon ice cream sandwich[2.0, 13.0] : 6.5
clams al forno[1.0, 6.0] : 6.0
fried calamari[1.0, -2.0] : -2.0
grand cookie finale[3.0, 19.0] : 6.33333333333
native caramelized pumpkin tart[1.0, 1.0] : 1.0
oysters[4.0, 6.0] : 1.5
pizza margarita[2.0, 9.0] : 4.5
rigatoni with veal bolognese[1.0, 7.0] : 7.0
sliced assorted salamis with spiced olives[1.0, 4.0] : 4.0
spicy clam roast with al forno mashed potatoes[1.0, 3.0] : 3.0
spicy pizza[2.0, 10.0] : 5.0
wood-grilled lamb rib chops[1.0, 6.0] : 6.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.851851851852
Baseline Precision: 0.846153846154
Baseline Recall: 1.0
Baseline Negative Precision: 1.0
Baseline Negative Recall: 0.2
----------------------------------------------------------
----------------------------------------------------------
Amelias_Trattoria.txt: 1.0
We recommend: ravioli
We recommend: gnocchi
Stay away from: mussels
antipasto[3.0, 17.0] : 5.66666666667
arugula salad[1.0, 2.0] : 2.0
caesar salad[2.0, 20.0] : 10.0
calamari[4.0, 8.0] : 2.0
fish[5.0, 43.0] : 8.6
gnocchi[10.0, 63.0] : 6.3
greens salad[1.0, -13.0] : -13.0
linguine[1.0, 1.0] : 1.0
mussels[6.0, -10.0] : -1.66666666667
polenta[5.0, 51.0] : 10.2
ravioli[11.0, 30.0] : 2.72727272727
salmon[9.0, 43.0] : 4.77777777778
short rib bolognese[7.0, 39.0] : 5.57142857143
spaghetti[3.0, 5.0] : 1.66666666667
spinach salad[3.0, 8.0] : 2.66666666667
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.802816901408
Baseline Precision: 0.879310344828
Baseline Recall: 0.879310344828
Baseline Negative Precision: 0.461538461538
Baseline Negative Recall: 0.461538461538
----------------------------------------------------------
----------------------------------------------------------
Angelinos_Cafe.txt: 1.0
We recommend: ravioli
We recommend: gnocchi
Stay away from: mushroom
caesar salad[1.0, 0.0] : 0.0
caprese[2.0, 2.0] : 1.0
chicken marcella[1.0, 9.0] : 9.0
chicken milanese[1.0, 5.0] : 5.0
chicken parmesan[4.0, 26.0] : 6.5
chicken pesto[3.0, 21.0] : 7.0
chopped salad[2.0, 12.0] : 6.0
gnocchi[21.0, 80.0] : 3.80952380952
hamburger[1.0, 1.0] : 1.0
linguine[2.0, 11.0] : 5.5
meatball[3.0, 20.0] : 6.66666666667
mushroom[3.0, -5.0] : -1.66666666667
penne[4.0, 26.0] : 6.5
philly cheese steak[1.0, 2.0] : 2.0
pizza[8.0, 68.0] : 8.5
ravioli[23.0, 106.0] : 4.60869565217
rigatoni[3.0, 1.0] : 0.333333333333
soup[3.0, 18.0] : 6.0
spaghetti marinara[2.0, 9.0] : 4.5
spaghetti meatball[1.0, 3.0] : 3.0
tuna[4.0, 5.0] : 1.25
turkey[3.0, 11.0] : 3.66666666667
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.84375
Baseline Precision: 0.916666666667
Baseline Recall: 0.905882352941
Baseline Negative Precision: 0.333333333333
Baseline Negative Recall: 0.363636363636
----------------------------------------------------------
----------------------------------------------------------
Babbos_Original_Mediterranean_Bistro.txt: 1.0
We recommend: salmon
Stay away from: caesar salad
ahi tuna salad[1.0, 11.0] : 11.0
caesar salad[7.0, -2.0] : -0.285714285714
crab cakes[6.0, 74.0] : 12.3333333333
cucumber salad[1.0, 17.0] : 17.0
focaccia babbo[1.0, 6.0] : 6.0
goat cheese salad[2.0, 12.0] : 6.0
gorgonzola pear salad[1.0, 8.0] : 8.0
lamb chops[2.0, 9.0] : 4.5
margherita[1.0, 7.0] : 7.0
mushroom ragout[1.0, 10.0] : 10.0
new york steak[1.0, 5.0] : 5.0
peperonata[1.0, 8.0] : 8.0
pizza babbo[2.0, -6.0] : -3.0
polenta[2.0, 16.0] : 8.0
prawn salad[5.0, 41.0] : 8.2
red snapper[1.0, 12.0] : 12.0
salmon[15.0, 90.0] : 6.0
sea bass[3.0, 29.0] : 9.66666666667
seafood in puff pastry[2.0, 18.0] : 9.0
vegetable soup[2.0, 14.0] : 7.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.701754385965
Baseline Precision: 0.90243902439
Baseline Recall: 0.74
Baseline Negative Precision: 0.1875
Baseline Negative Recall: 0.428571428571
----------------------------------------------------------
----------------------------------------------------------
Bacaro_LA.txt: 1.0
We recommend: scallops
We recommend: bacaro burger
Stay away from: chicken breast
"noa's" cauliflower[2.0, 17.0] : 8.5
artichoke hearts[9.0, 36.0] : 4.0
bacaro burger[67.0, 534.0] : 7.97014925373
bacaro ice cream[1.0, -9.0] : -9.0
bacon and brie[9.0, 70.0] : 7.77777777778
bone marrow[15.0, 25.0] : 1.66666666667
brown butter cookie dough[3.0, 10.0] : 3.33333333333
bruschette[21.0, 94.0] : 4.47619047619
burrata di stefano[2.0, 12.0] : 6.0
caprese salad[6.0, 42.0] : 7.0
chicken breast[13.0, -2.0] : -0.153846153846
lamb burger[5.0, 25.0] : 5.0
lamb stuffed eggplant[4.0, 33.0] : 8.25
mac and cheese[16.0, 41.0] : 2.5625
margherita[14.0, 17.0] : 1.21428571429
nutella panino[6.0, 33.0] : 5.5
panini[45.0, 306.0] : 6.8
petite fillet[2.0, -13.0] : -6.5
pig ears[6.0, 23.0] : 3.83333333333
poached shrimp[10.0, 58.0] : 5.8
polenta[22.0, 77.0] : 3.5
rainbow beets[4.0, 30.0] : 7.5
roasted garlic[32.0, 223.0] : 6.96875
scallops[95.0, 693.0] : 7.29473684211
white pizza[13.0, 52.0] : 4.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.872037914692
Baseline Precision: 0.891089108911
Baseline Recall: 0.972972972973
Baseline Negative Precision: 0.444444444444
Baseline Negative Recall: 0.153846153846
----------------------------------------------------------
----------------------------------------------------------
Bettolona.txt: 1.0
We recommend: calamari
We recommend: gnocchi
Stay away from: bolognese
affumicata pizza[1.0, 4.0] : 4.0
bolognese[4.0, -18.0] : -4.5
calamari[8.0, 33.0] : 4.125
caprese[1.0, 2.0] : 2.0
fettucine[1.0, 2.0] : 2.0
gnocchi[4.0, 43.0] : 10.75
insalata romana[3.0, 9.0] : 3.0
integrale[1.0, 7.0] : 7.0
margherita pizza[1.0, 10.0] : 10.0
panna cotta[1.0, 16.0] : 16.0
polpette[1.0, 1.0] : 1.0
prosciutto pizza[2.0, 19.0] : 9.5
tiramisu[3.0, 23.0] : 7.66666666667
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.741935483871
Baseline Precision: 0.954545454545
Baseline Recall: 0.75
Baseline Negative Precision: 0.222222222222
Baseline Negative Recall: 0.666666666667
----------------------------------------------------------
----------------------------------------------------------
Buca_di_Beppo.txt: 1.0
We recommend: tiramisu
We recommend: lasagna
apple gorgonzola salad[3.0, 26.0] : 8.66666666667
baked rigatoni[2.0, 12.0] : 6.0
baked ziti[1.0, -5.0] : -5.0
bruschetta[3.0, 5.0] : 1.66666666667
caesar salad[1.0, 5.0] : 5.0
cheesecake[1.0, 3.0] : 3.0
chicken limone[1.0, 11.0] : 11.0
chicken marsala[1.0, 2.0] : 2.0
chopped antipasto salad[1.0, 17.0] : 17.0
fettuccine alfredo[1.0, -11.0] : -11.0
garlic bread[3.0, 4.0] : 1.33333333333
lasagna[4.0, 11.0] : 2.75
linguine frutti di mare[1.0, 2.0] : 2.0
margherita[1.0, 12.0] : 12.0
penne arrabbiata[1.0, 12.0] : 12.0
penne basilica[1.0, -8.0] : -8.0
penne san remo[1.0, 2.0] : 2.0
pepperoni[3.0, 30.0] : 10.0
prosciutto stuffed chicken[1.0, 1.0] : 1.0
saltimbocca[3.0, 1.0] : 0.333333333333
spaghetti with meat sauce[1.0, 3.0] : 3.0
spaghetti with meatballs[1.0, 8.0] : 8.0
spicy chicken rigatoni[1.0, 6.0] : 6.0
tiramisu[6.0, 18.0] : 3.0
veggie[2.0, 5.0] : 2.5
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.733333333333
Baseline Precision: 0.852941176471
Baseline Recall: 0.805555555556
Baseline Negative Precision: 0.363636363636
Baseline Negative Recall: 0.444444444444
----------------------------------------------------------
----------------------------------------------------------
Buona_Tavola.txt: 0.75
We recommend: gelato
We recommend: tiramisu
affettati misti[2.0, 17.0] : 8.5
fettuccine al sugo di carni miste[1.0, 3.0] : 3.0
gelato[7.0, 39.0] : 5.57142857143
insalata bufala[2.0, 5.0] : 2.5
minestrone[1.0, -7.0] : -7.0
polpettine di anatra e tacchino[1.0, 2.0] : 2.0
tagliata di bue salutare[1.0, 1.0] : 1.0
tartufo italiano al cioccolato[1.0, 2.0] : 2.0
tiramisu[6.0, 27.0] : 4.5
tortelloni bufalina[1.0, 3.0] : 3.0
tortiglioni del buon gustaio[1.0, 0.0] : 0.0
PRECISION: 0.857142857143
RECALL: 0.857142857143
NEG PRECISION: 0.0
NEG RECALL: 0.0
__________________________
Baseline Percentage: 0.875
Baseline Precision: 0.875
Baseline Recall: 1.0
Baseline Negative Precision: 0
Baseline Negative Recall: 0
----------------------------------------------------------
----------------------------------------------------------
DAmicos_Italian_Market_Cafe.txt: 0.692307692308
We recommend: crawfish ravioli
We recommend: lasagna
calamari[1.0, 1.0] : 1.0
cheese ravioli[1.0, 5.0] : 5.0
chicken braciolentini[2.0, 14.0] : 7.0
crawfish ravioli[4.0, 6.0] : 1.5
gnocchi[1.0, 10.0] : 10.0
house salad[2.0, 1.0] : 0.5
lasagna[3.0, 21.0] : 7.0
linguine diavolo[1.0, 17.0] : 17.0
mussels[3.0, 9.0] : 3.0
parmesan[3.0, 16.0] : 5.33333333333
spaghetti[3.0, 2.0] : 0.666666666667
tortellini genovese[1.0, 4.0] : 4.0
wild mushroom and walnut tortellini[1.0, 1.0] : 1.0
PRECISION: 0.85
RECALL: 0.772727272727
NEG PRECISION: 0.166666666667
NEG RECALL: 0.25
__________________________
Baseline Percentage: 0.807692307692
Baseline Precision: 0.84
Baseline Recall: 0.954545454545
Baseline Negative Precision: 0.0
Baseline Negative Recall: 0.0
----------------------------------------------------------
----------------------------------------------------------
Dolce_Cafe_&_Bakery.txt: 1.0
We recommend: tiramisu
We recommend: fruit tart
Stay away from: coq au vin
bruschetta[1.0, 5.0] : 5.0
cappuccino[1.0, 16.0] : 16.0
carrot cake[4.0, 33.0] : 8.25
coq au vin[4.0, -23.0] : -5.75
dolce limon[1.0, 6.0] : 6.0
fruit tart[4.0, 35.0] : 8.75
mango mousse[1.0, 13.0] : 13.0
marble melody[1.0, 6.0] : 6.0
strawberry fresca[2.0, 20.0] : 10.0
tiramisu[8.0, 44.0] : 5.5
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.888888888889
Baseline Precision: 1.0
Baseline Recall: 0.869565217391
Baseline Negative Precision: 0.571428571429
Baseline Negative Recall: 1.0
----------------------------------------------------------
----------------------------------------------------------
Girasole_Restaurant.txt: 1.0
We recommend: polenta
We recommend: pumpkin ravioli
Stay away from: risotto
antipasto[1.0, 6.0] : 6.0
bruschetta[1.0, 6.0] : 6.0
bucatini[1.0, 7.0] : 7.0
penne[2.0, 9.0] : 4.5
polenta[9.0, 2.0] : 0.222222222222
potato gnocchi[1.0, 1.0] : 1.0
pumpkin ravioli[7.0, 59.0] : 8.42857142857
risotto[7.0, -3.0] : -0.428571428571
spinach and ricotta ravioli[3.0, 19.0] : 6.33333333333
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.875
Baseline Precision: 0.866666666667
Baseline Recall: 1.0
Baseline Negative Precision: 1.0
Baseline Negative Recall: 0.333333333333
----------------------------------------------------------
----------------------------------------------------------
Gratzi.txt: 0.810810810811
We recommend: gnocchi
We recommend: calamari
calamari[8.0, 41.0] : 5.125
fettuccine[1.0, 0.0] : 0.0
gnocchi[8.0, 55.0] : 6.875
linguine[3.0, 2.0] : 0.666666666667
margherita pizza[1.0, -1.0] : -1.0
minestrone[1.0, 9.0] : 9.0
orecchiette[3.0, 7.0] : 2.33333333333
pappardelle[2.0, 29.0] : 14.5
penne[1.0, 0.0] : 0.0
pollo[1.0, 0.0] : 0.0
ravioli con caprino[1.0, 11.0] : 11.0
ravioli con salsa di noci[1.0, 7.0] : 7.0
risotto[6.0, 43.0] : 7.16666666667
PRECISION: 0.9
RECALL: 0.870967741935
NEG PRECISION: 0.428571428571
NEG RECALL: 0.5
__________________________
Baseline Percentage: 0.72972972973
Baseline Precision: 0.888888888889
Baseline Recall: 0.774193548387
Baseline Negative Precision: 0.3
Baseline Negative Recall: 0.5
----------------------------------------------------------
----------------------------------------------------------
La_Parolaccia_Osteria_Italiana.txt: 1.0
We recommend: margherita
barese[1.0, 7.0] : 7.0
focaccia completa[1.0, -8.0] : -8.0
gnocchi al gorgonzola[1.0, 4.0] : 4.0
margherita[3.0, 12.0] : 4.0
napoletana[1.0, 5.0] : 5.0
norcina[1.0, 6.0] : 6.0
positano[1.0, 13.0] : 13.0
rigatoni alla norcina[1.0, 6.0] : 6.0
tagliatelle trilussa[2.0, 16.0] : 8.0
tortellini pinturicchio[1.0, 9.0] : 9.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.923076923077
Baseline Precision: 1.0
Baseline Recall: 0.916666666667
Baseline Negative Precision: 0.5
Baseline Negative Recall: 1.0
----------------------------------------------------------
----------------------------------------------------------
La_Piccoletta.txt: 1.0
We recommend: tiramisu
aromi[2.0, 12.0] : 6.0
filet mignon[2.0, -17.0] : -8.5
tiramisu[4.0, 34.0] : 8.5
white sauce with peas[1.0, 6.0] : 6.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.888888888889
Baseline Precision: 1.0
Baseline Recall: 0.857142857143
Baseline Negative Precision: 0.666666666667
Baseline Negative Recall: 1.0
----------------------------------------------------------
----------------------------------------------------------
Lido.txt: 0.86
We recommend: spaghetti
We recommend: gnocchi
apple tart[2.0, 8.0] : 4.0
beet salad[2.0, 11.0] : 5.5
braised short ribs[2.0, 0.0] : 0.0
broccoli rabe[4.0, 11.0] : 2.75
burrata[3.0, 25.0] : 8.33333333333
crab cake[1.0, 15.0] : 15.0
farmstead cheeses[1.0, 4.0] : 4.0
fusilli[2.0, 25.0] : 12.5
gnocchi[6.0, 23.0] : 3.83333333333
mussels[4.0, 21.0] : 5.25
octopus[1.0, 19.0] : 19.0
orecchiette[1.0, 2.0] : 2.0
potato puree[1.0, 6.0] : 6.0
ricotta ravioli[2.0, 34.0] : 17.0
roasted veal meatballs[1.0, 4.0] : 4.0
salmon[4.0, 57.0] : 14.25
salt cod & potato[1.0, 1.0] : 1.0
spaghetti[7.0, 47.0] : 6.71428571429
tilapia[3.0, 17.0] : 5.66666666667
tiramisu[2.0, 13.0] : 6.5
PRECISION: 0.931818181818
RECALL: 0.911111111111
NEG PRECISION: 0.333333333333
NEG RECALL: 0.4
__________________________
Baseline Percentage: 0.9
Baseline Precision: 0.954545454545
Baseline Recall: 0.933333333333
Baseline Negative Precision: 0.5
Baseline Negative Recall: 0.6
----------------------------------------------------------
----------------------------------------------------------
Mama_Palmas_Gourmet_Pizza.txt: 1.0
Stay away from: ravioli
cajun shrimp[2.0, 18.0] : 9.0
celina[2.0, 21.0] : 10.5
gnocchi[2.0, -2.0] : -1.0
herbed sausage and artichoke hearts[1.0, 4.0] : 4.0
ravioli[3.0, -9.0] : -3.0
veal sausage and brie[1.0, 8.0] : 8.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.818181818182
Baseline Precision: 1.0
Baseline Recall: 0.75
Baseline Negative Precision: 0.6
Baseline Negative Recall: 1.0
----------------------------------------------------------
----------------------------------------------------------
Mediterra_Restaurant.txt: 1.0
We recommend: paella
We recommend: calamari
Stay away from: risotto
calamari[9.0, 26.0] : 2.88888888889
crab cake[1.0, -4.0] : -4.0
greek chicken[1.0, 10.0] : 10.0
greek salad[1.0, -1.0] : -1.0
mezze sampler[1.0, -4.0] : -4.0
octopus[5.0, 12.0] : 2.4
orecchiette[1.0, 7.0] : 7.0
paella[10.0, 31.0] : 3.1
pork saltimbocca[1.0, -2.0] : -2.0
ricotta gnocchi[1.0, 11.0] : 11.0
risotto[3.0, -5.0] : -1.66666666667
salmon[4.0, 14.0] : 3.5
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.763157894737
Baseline Precision: 0.71875
Baseline Recall: 1.0
Baseline Negative Precision: 1.0
Baseline Negative Recall: 0.4
----------------------------------------------------------
----------------------------------------------------------
Pacci_Ristorante.txt: 1.0
We recommend: mushroom risotto
Stay away from: mussels
calamari[1.0, 1.0] : 1.0
caprese[5.0, 50.0] : 10.0
carpaccio[10.0, 51.0] : 5.1
cheese[8.0, 61.0] : 7.625
duck confit[2.0, -2.0] : -1.0
filet[1.0, 6.0] : 6.0
flat bread[2.0, 18.0] : 9.0
gnocchi[4.0, 3.0] : 0.75
halibut[2.0, 15.0] : 7.5
mushroom risotto[10.0, 85.0] : 8.5
mussels[11.0, -19.0] : -1.72727272727
pacci pup[1.0, 15.0] : 15.0
polenta[1.0, 6.0] : 6.0
sauces[1.0, 3.0] : 3.0
scallops[8.0, 69.0] : 8.625
tiramisu[3.0, 20.0] : 6.66666666667
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.871428571429
Baseline Precision: 0.869565217391
Baseline Recall: 1.0
Baseline Negative Precision: 1.0
Baseline Negative Recall: 0.1
----------------------------------------------------------
----------------------------------------------------------
Pasta_Bene.txt: 0.820512820513
We recommend: tiramisu
We recommend: bruschetta
Stay away from: chicken parmigiana
beef lasagna[10.0, 46.0] : 4.6
bruschetta[19.0, 77.0] : 4.05263157895
calamari[14.0, 90.0] : 6.42857142857
carciofi e pollo[5.0, 21.0] : 4.2
cheese ravioli[6.0, 21.0] : 3.5
cheesecake[6.0, 30.0] : 5.0
chicken breast[5.0, 26.0] : 5.2
chicken marsala[9.0, 54.0] : 6.0
chicken parmigiana[3.0, -3.0] : -1.0
chicken picatta[2.0, 13.0] : 6.5
crab cakes[7.0, 30.0] : 4.28571428571
di casa[1.0, 1.0] : 1.0
eggplant parmigiana[1.0, 0.0] : 0.0
gamberetto[2.0, 13.0] : 6.5
garlic bread[14.0, 69.0] : 4.92857142857
garlic fries[4.0, 14.0] : 3.5
gnocchi sausage[10.0, 36.0] : 3.6
gorgonzola salad[1.0, 13.0] : 13.0
ice cream[1.0, 14.0] : 14.0
marco pollo[3.0, 28.0] : 9.33333333333
melanzane[8.0, 43.0] : 5.375
penne bolognese[4.0, 33.0] : 8.25
rustica[5.0, 41.0] : 8.2
salmon[19.0, 57.0] : 3.0
tiramisu[35.0, 191.0] : 5.45714285714
tortellini primavera[1.0, 14.0] : 14.0
PRECISION: 0.926380368098
RECALL: 0.867816091954
NEG PRECISION: 0.28125
NEG RECALL: 0.428571428571
__________________________
Baseline Percentage: 0.897435897436
Baseline Precision: 0.901041666667
Baseline Recall: 0.994252873563
Baseline Negative Precision: 0.666666666667
Baseline Negative Recall: 0.0952380952381
----------------------------------------------------------
----------------------------------------------------------
Piatti_Ristorante_&_Bar.txt: 1.0
We recommend: gnocchi
We recommend: polenta
Stay away from: caesar
bruschetta[2.0, 9.0] : 4.5
caesar[6.0, -15.0] : -2.5
gnocchi[11.0, 41.0] : 3.72727272727
margherita pizza[1.0, 6.0] : 6.0
polenta[6.0, 45.0] : 7.5
risotto[5.0, 49.0] : 9.8
tiramisu[1.0, 17.0] : 17.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.75
Baseline Precision: 0.8
Baseline Recall: 0.923076923077
Baseline Negative Precision: 0.0
Baseline Negative Recall: 0.0
----------------------------------------------------------
----------------------------------------------------------
Pisticci.txt: 1.0
We recommend: garlic bread
We recommend: mussels
Stay away from: broccoli rabe
artichoke[12.0, 27.0] : 2.25
broccoli rabe[12.0, -2.0] : -0.166666666667
fettucine ai funghi[1.0, 18.0] : 18.0
garlic bread[18.0, 82.0] : 4.55555555556
grilled eggplant[2.0, -10.0] : -5.0
insalata caprese[1.0, 6.0] : 6.0
insalata pisticci[1.0, 2.0] : 2.0
maltagliati with ricotta[2.0, 3.0] : 1.5
meatballs[15.0, 66.0] : 4.4
michael's pasta[5.0, 24.0] : 4.8
minestrone[2.0, 11.0] : 5.5
mussels[15.0, 148.0] : 9.86666666667
orecchiette broccoli rabe[5.0, 13.0] : 2.6
penne pisticci[9.0, 60.0] : 6.66666666667
polenta[10.0, 90.0] : 9.0
portobello mushroom[2.0, 11.0] : 5.5
prosciutto e spinaci[4.0, 25.0] : 6.25
ravioli[13.0, 73.0] : 5.61538461538
rosemary potatoes[1.0, 19.0] : 19.0
salmon[9.0, 34.0] : 3.77777777778
skirt steak[1.0, 12.0] : 12.0
vegetable ceci[1.0, 7.0] : 7.0
whole wheat penne[2.0, -11.0] : -5.5
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.832167832168
Baseline Precision: 0.859259259259
Baseline Recall: 0.95867768595
Baseline Negative Precision: 0.375
Baseline Negative Recall: 0.136363636364
----------------------------------------------------------
----------------------------------------------------------
Prego.txt: 1.0
We recommend: lasagna
We recommend: gnocchi
branzino[1.0, 8.0] : 8.0
caesar salad[1.0, -9.0] : -9.0
caprese salad[2.0, 0.0] : 0.0
carpaccio[3.0, 4.0] : 1.33333333333
chocolate souffle[1.0, 11.0] : 11.0
gnocchi[3.0, 31.0] : 10.3333333333
lasagna[6.0, 35.0] : 5.83333333333
margherita pizza[1.0, 15.0] : 15.0
minestrone soup[1.0, 3.0] : 3.0
salmone[1.0, 7.0] : 7.0
spaghetti carbonara[1.0, 8.0] : 8.0
spaghetti con polpette[1.0, 3.0] : 3.0
strawberry shortcake[3.0, 17.0] : 5.66666666667
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.68
Baseline Precision: 0.882352941176
Baseline Recall: 0.714285714286
Baseline Negative Precision: 0.25
Baseline Negative Recall: 0.5
----------------------------------------------------------
----------------------------------------------------------
Sagra.txt: 1.0
We recommend: arugula
We recommend: risotto
Stay away from: sagra pizza
Stay away from: caprese
arugula[19.0, 114.0] : 6.0
caprese[3.0, -2.0] : -0.666666666667
casarecci alla arrabiata[3.0, 18.0] : 6.0
cheeses[3.0, 14.0] : 4.66666666667
funghi pizza[2.0, 37.0] : 18.5
garlic spinach[2.0, -5.0] : -2.5
margherita pizza[4.0, 26.0] : 6.5
panna cotta[1.0, -5.0] : -5.0
polenta[7.0, 54.0] : 7.71428571429
rigatoni[2.0, -9.0] : -4.5
risotto[13.0, 34.0] : 2.61538461538
sagra pizza[4.0, -6.0] : -1.5
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.730158730159
Baseline Precision: 0.8125
Baseline Recall: 0.829787234043
Baseline Negative Precision: 0.466666666667
Baseline Negative Recall: 0.4375
----------------------------------------------------------
----------------------------------------------------------
Salento.txt: 1.0
We recommend: mozzarella
We recommend: gnocchi
arugula salad[3.0, 16.0] : 5.33333333333
caesar salad[3.0, 3.0] : 1.0
gnocchi[10.0, 33.0] : 3.3
linguini[6.0, 19.0] : 3.16666666667
mozzarella[17.0, 111.0] : 6.52941176471
orecchiette[2.0, -5.0] : -2.5
penne melanzane[1.0, 10.0] : 10.0
pollo agrodolce[1.0, 8.0] : 8.0
pork chop milanese[2.0, 12.0] : 6.0
tilapia[1.0, 9.0] : 9.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.934782608696
Baseline Precision: 0.951219512195
Baseline Recall: 0.975
Baseline Negative Precision: 0.8
Baseline Negative Recall: 0.666666666667
----------------------------------------------------------
----------------------------------------------------------
Sezz_Medi.txt: 0.714285714286
We recommend: risotto
Stay away from: margherita
Stay away from: polenta
calamari[2.0, 5.0] : 2.5
campione[2.0, 14.0] : 7.0
filetto[1.0, 5.0] : 5.0
margherita[3.0, -1.0] : -0.333333333333
napoli[1.0, 0.0] : 0.0
octopus[1.0, 2.0] : 2.0
ortolana[2.0, -12.0] : -6.0
polenta[3.0, -4.0] : -1.33333333333
risotto[4.0, 30.0] : 7.5
salmon[2.0, 16.0] : 8.0
PRECISION: 0.866666666667
RECALL: 0.764705882353
NEG PRECISION: 0.333333333333
NEG RECALL: 0.5
__________________________
Baseline Percentage: 0.904761904762
Baseline Precision: 0.941176470588
Baseline Recall: 0.941176470588
Baseline Negative Precision: 0.75
Baseline Negative Recall: 0.75
----------------------------------------------------------
----------------------------------------------------------
Tanino_Restaurant.txt: 1.0
We recommend: ravioli
We recommend: linguini
burrata caprese[2.0, 14.0] : 7.0
calamari[4.0, 13.0] : 3.25
capellini[1.0, 8.0] : 8.0
gnocchi[8.0, 9.0] : 1.125
linguini[8.0, 55.0] : 6.875
ravioli[17.0, 109.0] : 6.41176470588
tortelloni[4.0, 20.0] : 5.0
zuppa di funghi[1.0, 6.0] : 6.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.888888888889
Baseline Precision: 0.904761904762
Baseline Recall: 0.974358974359
Baseline Negative Precision: 0.666666666667
Baseline Negative Recall: 0.333333333333
----------------------------------------------------------
----------------------------------------------------------
Tutti_Mangia_Italian_Grill.txt: 1.0
We recommend: calamari
We recommend: risotto
Stay away from: cappellini
bruschetta[3.0, 8.0] : 2.66666666667
calamari[7.0, 47.0] : 6.71428571429
cappellini[3.0, -2.0] : -0.666666666667
carpaccio[1.0, 2.0] : 2.0
filet mignon[2.0, 24.0] : 12.0
insalata casa cuneo[1.0, 4.0] : 4.0
linguine[4.0, 33.0] : 8.25
minestrone[2.0, 27.0] : 13.5
new york strip[1.0, 14.0] : 14.0
orecchiette[5.0, 19.0] : 3.8
osso buco[2.0, 15.0] : 7.5
pappardelle[2.0, -9.0] : -4.5
pesce bianco[2.0, 10.0] : 5.0
prosciutto e burrata[1.0, -8.0] : -8.0
ravioli[5.0, 46.0] : 9.2
risotto[6.0, 54.0] : 9.0
salmone alla griglia[1.0, 7.0] : 7.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.8125
Baseline Precision: 0.840909090909
Baseline Recall: 0.948717948718
Baseline Negative Precision: 0.5
Baseline Negative Recall: 0.222222222222
----------------------------------------------------------
----------------------------------------------------------
Veni_Vidi_Vici.txt: 1.0
We recommend: calamari
We recommend: caprese
affettati e formaggi[1.0, 9.0] : 9.0
agnello[1.0, 15.0] : 15.0
agnolotti[5.0, 45.0] : 9.0
anatra[1.0, -4.0] : -4.0
bietole[1.0, 3.0] : 3.0
bistecca alla pizzaiola[1.0, 10.0] : 10.0
bruschetta[5.0, 18.0] : 3.6
calamari[17.0, 76.0] : 4.47058823529
caprese[8.0, 68.0] : 8.5
cesare[1.0, 10.0] : 10.0
cozze[1.0, 3.0] : 3.0
farfalle[2.0, 14.0] : 7.0
funghi[1.0, 9.0] : 9.0
gnocchi[5.0, 22.0] : 4.4
insalata verde[1.0, 3.0] : 3.0
lasagna matta[1.0, 3.0] : 3.0
linguine[2.0, 25.0] : 12.5
mezzalune[1.0, 4.0] : 4.0
ossobuco[1.0, 20.0] : 20.0
pappardelle[3.0, 12.0] : 4.0
penne[2.0, 25.0] : 12.5
pesce[1.0, 2.0] : 2.0
polipo[1.0, 6.0] : 6.0
prosciutto[4.0, 25.0] : 6.25
quattro formaggi[1.0, -11.0] : -11.0
risotto frutti di mare[3.0, 22.0] : 7.33333333333
salsiccia[1.0, 10.0] : 10.0
spaghetti casalinga[2.0, 4.0] : 2.0
zuppa di mare[2.0, 10.0] : 5.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.855263157895
Baseline Precision: 0.878378378378
Baseline Recall: 0.970149253731
Baseline Negative Precision: 0.0
Baseline Negative Recall: 0.0
----------------------------------------------------------
----------------------------------------------------------
Viztango_Cafe.txt: 1.0
We recommend: farfalle pesto
We recommend: penne vodka
angel hair sebastian[3.0, 10.0] : 3.33333333333
caesar salad[3.0, 30.0] : 10.0
calamari[3.0, 2.0] : 0.666666666667
capretta pizza[1.0, 3.0] : 3.0
chicken cannelloni[1.0, -4.0] : -4.0
chicken marsala[1.0, 7.0] : 7.0
chicken parmigiana[2.0, 0.0] : 0.0
chicken parmigiana sandwich[1.0, 6.0] : 6.0
chinese chicken salad[3.0, 24.0] : 8.0
chopped salad[2.0, -5.0] : -2.5
cobb salad[1.0, -7.0] : -7.0
combo pizza[1.0, 4.0] : 4.0
eggplant parmigiana[1.0, 6.0] : 6.0
eggplant ravioli parmigiana[3.0, 20.0] : 6.66666666667
farfalle pesto[7.0, 34.0] : 4.85714285714
greek salad[1.0, 10.0] : 10.0
linguini artichini[4.0, 23.0] : 5.75
linguini seafood[1.0, 6.0] : 6.0
meat lasagna[1.0, 5.0] : 5.0
penne puttanesca[1.0, 5.0] : 5.0
penne vodka[5.0, 38.0] : 7.6
penne vodka with chicken[1.0, 16.0] : 16.0
salad pizza[3.0, 32.0] : 10.6666666667
shrimp scampi[1.0, 11.0] : 11.0
steak sandwich[1.0, 2.0] : 2.0
turkey sandwich[2.0, 11.0] : 5.5
vegetarian pizza[1.0, 8.0] : 8.0
vegetarian sandwich[1.0, 8.0] : 8.0
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.928571428571
Baseline Precision: 0.96
Baseline Recall: 0.96
Baseline Negative Precision: 0.666666666667
Baseline Negative Recall: 0.666666666667
----------------------------------------------------------
----------------------------------------------------------
Voza.txt: 1.0
baked red snapper with mango salsa[1.0, 4.0] : 4.0
ceviche[1.0, 6.0] : 6.0
pecan crusted salmon[1.0, 12.0] : 12.0
rack of lamb[1.0, 6.0] : 6.0
skirt steak[1.0, -5.0] : -5.0
spinach and artichoke dip[1.0, 10.0] : 10.0
stuffed shrimp[2.0, 7.0] : 3.5
PRECISION: 1.0
RECALL: 1.0
NEG PRECISION: 1.0
NEG RECALL: 1.0
__________________________
Baseline Percentage: 0.875
Baseline Precision: 1.0
Baseline Recall: 0.857142857143
Baseline Negative Precision: 0.5
Baseline Negative Recall: 1.0
----------------------------------------------------------
Average Percentage: 0.774652839653
Average Pecision: 0.888668012288
Average Recall: 0.840745159537
Average Neg Precision: 0.257192460317
Average Neg Recall: 0.346428571429
Average MCC: 0.165184264583
Average Baseline Percentage: 0.852436639937
Average Baseline Pecision: 0.900108746782
Average Baseline Recall: 0.932916946736
Average Baseline Neg Precision: 0.369444444444
Average Baseline Neg Recall: 0.324206349206
Average Baseline MCC: 0.258540014985