-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlongposresults.txt
985 lines (985 loc) · 30.3 KB
/
longposresults.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
----------------------------------------------------------
411_West.txt: 1.0
We recommend: crab
We recommend: chicken marsala
artichoke dip[1.0, 11.0] : 11.0
carpaccio[1.0, 11.0] : 11.0
chicken marsala[3.0, 20.0] : 6.66666666667
crab[4.0, 29.0] : 7.25
fettuccine[2.0, 45.0] : 22.5
flank steak[1.0, 8.0] : 8.0
grilled shrimp[2.0, 4.0] : 2.0
hazelnut pesto[1.0, 15.0] : 15.0
pasta salad[1.0, 5.0] : 5.0
shrimp carbonara[1.0, -8.0] : -8.0
spaghetti marinara[1.0, 20.0] : 20.0
stella's insalate[1.0, 8.0] : 8.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
carni[3.0, 16.0] : 5.33333333333
filetti[1.0, 13.0] : 13.0
pizza bianca[5.0, 41.0] : 8.2
pizza margherita[7.0, 23.0] : 3.28571428571
pizza marinara[5.0, 50.0] : 10.0
pollo[1.0, 7.0] : 7.0
quatro formaggi[1.0, 13.0] : 13.0
sausage and peppers[1.0, 9.0] : 9.0
tartufo[10.0, 37.0] : 3.7
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
----------------------------------------------------------
----------------------------------------------------------
Al_Forno_Restaurant.txt: 1.0
We recommend: oysters
We recommend: grand cookie finale
beets and frites[2.0, 13.0] : 6.5
bruschetta[2.0, -5.0] : -2.5
caesar salad[3.0, 23.0] : 7.66666666667
cinnamon ice cream sandwich[2.0, 5.0] : 2.5
clams al forno[1.0, 2.0] : 2.0
fried calamari[1.0, -4.0] : -4.0
grand cookie finale[3.0, 35.0] : 11.6666666667
native caramelized pumpkin tart[1.0, 3.0] : 3.0
oysters[4.0, 2.0] : 0.5
pizza margarita[2.0, 8.0] : 4.0
rigatoni with veal bolognese[1.0, 9.0] : 9.0
sliced assorted salamis with spiced olives[1.0, 0.0] : 0.0
spicy clam roast with al forno mashed potatoes[1.0, 4.0] : 4.0
spicy pizza[2.0, 16.0] : 8.0
wood-grilled lamb rib chops[1.0, 8.0] : 8.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
----------------------------------------------------------
----------------------------------------------------------
Allegro_Pizza.txt: 1.0
allegro white[2.0, 4.0] : 2.0
bbq chicken pizza[1.0, 15.0] : 15.0
white pizza[2.0, 9.0] : 4.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
----------------------------------------------------------
----------------------------------------------------------
Amelias_Trattoria.txt: 1.0
We recommend: ravioli
We recommend: gnocchi
Stay away from: mussels
antipasto[3.0, 26.0] : 8.66666666667
arugula salad[1.0, 9.0] : 9.0
caesar salad[2.0, 26.0] : 13.0
calamari[4.0, 15.0] : 3.75
fish[5.0, 49.0] : 9.8
gnocchi[10.0, 101.0] : 10.1
greens salad[1.0, -10.0] : -10.0
linguine[1.0, 8.0] : 8.0
mussels[6.0, -11.0] : -1.83333333333
polenta[5.0, 45.0] : 9.0
ravioli[11.0, 45.0] : 4.09090909091
salmon[9.0, 53.0] : 5.88888888889
short rib bolognese[7.0, 46.0] : 6.57142857143
spaghetti[3.0, 13.0] : 4.33333333333
spinach salad[3.0, 26.0] : 8.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
caesar salad[1.0, 2.0] : 2.0
caprese[2.0, 2.0] : 1.0
chicken marcella[1.0, 15.0] : 15.0
chicken milanese[1.0, 9.0] : 9.0
chicken parmesan[4.0, 46.0] : 11.5
chicken pesto[3.0, 39.0] : 13.0
chopped salad[2.0, 21.0] : 10.5
gnocchi[21.0, 135.0] : 6.42857142857
hamburger[1.0, 9.0] : 9.0
linguine[2.0, 16.0] : 8.0
meatball[3.0, 30.0] : 10.0
mushroom[3.0, 2.0] : 0.666666666667
penne[4.0, 58.0] : 14.5
philly cheese steak[1.0, 1.0] : 1.0
pizza[8.0, 70.0] : 8.75
ravioli[23.0, 164.0] : 7.13043478261
rigatoni[3.0, 10.0] : 3.33333333333
soup[3.0, 24.0] : 8.0
spaghetti marinara[2.0, 12.0] : 6.0
spaghetti meatball[1.0, 11.0] : 11.0
tuna[4.0, 4.0] : 1.0
turkey[3.0, 17.0] : 5.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
We recommend: caesar salad
ahi tuna salad[1.0, 2.0] : 2.0
caesar salad[7.0, 3.0] : 0.428571428571
crab cakes[6.0, 76.0] : 12.6666666667
cucumber salad[1.0, 21.0] : 21.0
focaccia babbo[1.0, 9.0] : 9.0
goat cheese salad[2.0, 21.0] : 10.5
gorgonzola pear salad[1.0, 5.0] : 5.0
lamb chops[2.0, 22.0] : 11.0
margherita[1.0, 8.0] : 8.0
mushroom ragout[1.0, 3.0] : 3.0
new york steak[1.0, 5.0] : 5.0
peperonata[1.0, 3.0] : 3.0
pizza babbo[2.0, -6.0] : -3.0
polenta[2.0, 20.0] : 10.0
prawn salad[5.0, 65.0] : 13.0
red snapper[1.0, 8.0] : 8.0
salmon[15.0, 95.0] : 6.33333333333
sea bass[3.0, 35.0] : 11.6666666667
seafood in puff pastry[2.0, 19.0] : 9.5
vegetable soup[2.0, 24.0] : 12.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, 16.0] : 8.0
artichoke hearts[9.0, 38.0] : 4.22222222222
bacaro burger[67.0, 547.0] : 8.16417910448
bacaro ice cream[1.0, -5.0] : -5.0
bacon and brie[9.0, 86.0] : 9.55555555556
bone marrow[15.0, 53.0] : 3.53333333333
brown butter cookie dough[3.0, 10.0] : 3.33333333333
bruschette[21.0, 141.0] : 6.71428571429
burrata di stefano[2.0, 9.0] : 4.5
caprese salad[6.0, 59.0] : 9.83333333333
chicken breast[13.0, -2.0] : -0.153846153846
lamb burger[5.0, 35.0] : 7.0
lamb stuffed eggplant[4.0, 32.0] : 8.0
mac and cheese[16.0, 69.0] : 4.3125
margherita[14.0, 38.0] : 2.71428571429
nutella panino[6.0, 41.0] : 6.83333333333
panini[45.0, 395.0] : 8.77777777778
petite fillet[2.0, -14.0] : -7.0
pig ears[6.0, 18.0] : 3.0
poached shrimp[10.0, 42.0] : 4.2
polenta[22.0, 117.0] : 5.31818181818
rainbow beets[4.0, 34.0] : 8.5
roasted garlic[32.0, 252.0] : 7.875
scallops[95.0, 816.0] : 8.58947368421
white pizza[13.0, 73.0] : 5.61538461538
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, 5.0] : 5.0
bolognese[4.0, -17.0] : -4.25
calamari[8.0, 53.0] : 6.625
caprese[1.0, 3.0] : 3.0
fettucine[1.0, 6.0] : 6.0
gnocchi[4.0, 47.0] : 11.75
insalata romana[3.0, 13.0] : 4.33333333333
integrale[1.0, 9.0] : 9.0
margherita pizza[1.0, 7.0] : 7.0
panna cotta[1.0, 9.0] : 9.0
polpette[1.0, 10.0] : 10.0
prosciutto pizza[2.0, 24.0] : 12.0
tiramisu[3.0, 37.0] : 12.3333333333
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, 33.0] : 11.0
baked rigatoni[2.0, 11.0] : 5.5
baked ziti[1.0, -5.0] : -5.0
bruschetta[3.0, 20.0] : 6.66666666667
caesar salad[1.0, 6.0] : 6.0
cheesecake[1.0, 10.0] : 10.0
chicken limone[1.0, 12.0] : 12.0
chicken marsala[1.0, 6.0] : 6.0
chopped antipasto salad[1.0, 14.0] : 14.0
fettuccine alfredo[1.0, -9.0] : -9.0
garlic bread[3.0, 3.0] : 1.0
lasagna[4.0, 13.0] : 3.25
linguine frutti di mare[1.0, 10.0] : 10.0
margherita[1.0, 23.0] : 23.0
penne arrabbiata[1.0, 10.0] : 10.0
penne basilica[1.0, -9.0] : -9.0
penne san remo[1.0, 13.0] : 13.0
pepperoni[3.0, 53.0] : 17.6666666667
prosciutto stuffed chicken[1.0, 12.0] : 12.0
saltimbocca[3.0, 13.0] : 4.33333333333
spaghetti with meat sauce[1.0, 12.0] : 12.0
spaghetti with meatballs[1.0, 9.0] : 9.0
spicy chicken rigatoni[1.0, 12.0] : 12.0
tiramisu[6.0, 29.0] : 4.83333333333
veggie[2.0, 12.0] : 6.0
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.875
We recommend: gelato
We recommend: tiramisu
affettati misti[2.0, 18.0] : 9.0
fettuccine al sugo di carni miste[1.0, 14.0] : 14.0
gelato[7.0, 34.0] : 4.85714285714
insalata bufala[2.0, 11.0] : 5.5
minestrone[1.0, 7.0] : 7.0
polpettine di anatra e tacchino[1.0, 0.0] : 0.0
tagliata di bue salutare[1.0, 1.0] : 1.0
tartufo italiano al cioccolato[1.0, 2.0] : 2.0
tiramisu[6.0, 18.0] : 3.0
tortelloni bufalina[1.0, -8.0] : -8.0
tortiglioni del buon gustaio[1.0, 0.0] : 0.0
PRECISION: 0.95
RECALL: 0.904761904762
NEG PRECISION: 0.5
NEG RECALL: 0.666666666667
__________________________
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.730769230769
We recommend: crawfish ravioli
We recommend: lasagna
calamari[1.0, 1.0] : 1.0
cheese ravioli[1.0, 16.0] : 16.0
chicken braciolentini[2.0, 22.0] : 11.0
crawfish ravioli[4.0, 8.0] : 2.0
gnocchi[1.0, 4.0] : 4.0
house salad[2.0, 12.0] : 6.0
lasagna[3.0, 21.0] : 7.0
linguine diavolo[1.0, 21.0] : 21.0
mussels[3.0, 10.0] : 3.33333333333
parmesan[3.0, 15.0] : 5.0
spaghetti[3.0, 2.0] : 0.666666666667
tortellini genovese[1.0, 17.0] : 17.0
wild mushroom and walnut tortellini[1.0, 9.0] : 9.0
PRECISION: 0.857142857143
RECALL: 0.818181818182
NEG PRECISION: 0.2
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, 12.0] : 12.0
cappuccino[1.0, 27.0] : 27.0
carrot cake[4.0, 39.0] : 9.75
coq au vin[4.0, -30.0] : -7.5
dolce limon[1.0, 3.0] : 3.0
fruit tart[4.0, 63.0] : 15.75
mango mousse[1.0, 8.0] : 8.0
marble melody[1.0, 6.0] : 6.0
strawberry fresca[2.0, 23.0] : 11.5
tiramisu[8.0, 79.0] : 9.875
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
antipasto[1.0, 13.0] : 13.0
bruschetta[1.0, 13.0] : 13.0
bucatini[1.0, 8.0] : 8.0
penne[2.0, 14.0] : 7.0
polenta[9.0, 29.0] : 3.22222222222
potato gnocchi[1.0, 1.0] : 1.0
pumpkin ravioli[7.0, 65.0] : 9.28571428571
risotto[7.0, 28.0] : 4.0
spinach and ricotta ravioli[3.0, 23.0] : 7.66666666667
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.756756756757
We recommend: gnocchi
We recommend: calamari
Stay away from: orecchiette
calamari[8.0, 72.0] : 9.0
fettuccine[1.0, 4.0] : 4.0
gnocchi[8.0, 79.0] : 9.875
linguine[3.0, 29.0] : 9.66666666667
margherita pizza[1.0, -2.0] : -2.0
minestrone[1.0, 3.0] : 3.0
orecchiette[3.0, -1.0] : -0.333333333333
pappardelle[2.0, 36.0] : 18.0
penne[1.0, 0.0] : 0.0
pollo[1.0, 0.0] : 0.0
ravioli con caprino[1.0, 7.0] : 7.0
ravioli con salsa di noci[1.0, 7.0] : 7.0
risotto[6.0, 45.0] : 7.5
PRECISION: 0.84375
RECALL: 0.870967741935
NEG PRECISION: 0.2
NEG RECALL: 0.166666666667
__________________________
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, 12.0] : 12.0
focaccia completa[1.0, -7.0] : -7.0
gnocchi al gorgonzola[1.0, 4.0] : 4.0
margherita[3.0, 19.0] : 6.33333333333
napoletana[1.0, 3.0] : 3.0
norcina[1.0, 9.0] : 9.0
positano[1.0, 19.0] : 19.0
rigatoni alla norcina[1.0, 9.0] : 9.0
tagliatelle trilussa[2.0, 10.0] : 5.0
tortellini pinturicchio[1.0, 14.0] : 14.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, 14.0] : 7.0
filet mignon[2.0, -11.0] : -5.5
tiramisu[4.0, 36.0] : 9.0
white sauce with peas[1.0, 7.0] : 7.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.92
We recommend: spaghetti
We recommend: gnocchi
apple tart[2.0, 13.0] : 6.5
beet salad[2.0, 10.0] : 5.0
braised short ribs[2.0, 7.0] : 3.5
broccoli rabe[4.0, 9.0] : 2.25
burrata[3.0, 40.0] : 13.3333333333
crab cake[1.0, 14.0] : 14.0
farmstead cheeses[1.0, 5.0] : 5.0
fusilli[2.0, 12.0] : 6.0
gnocchi[6.0, 20.0] : 3.33333333333
mussels[4.0, 33.0] : 8.25
octopus[1.0, 13.0] : 13.0
orecchiette[1.0, 3.0] : 3.0
potato puree[1.0, 3.0] : 3.0
ricotta ravioli[2.0, 38.0] : 19.0
roasted veal meatballs[1.0, 6.0] : 6.0
salmon[4.0, 49.0] : 12.25
salt cod & potato[1.0, 4.0] : 4.0
spaghetti[7.0, 61.0] : 8.71428571429
tilapia[3.0, 15.0] : 5.0
tiramisu[2.0, 17.0] : 8.5
PRECISION: 0.955555555556
RECALL: 0.955555555556
NEG PRECISION: 0.6
NEG RECALL: 0.6
__________________________
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, 30.0] : 15.0
celina[2.0, 14.0] : 7.0
gnocchi[2.0, -1.0] : -0.5
herbed sausage and artichoke hearts[1.0, 4.0] : 4.0
ravioli[3.0, -10.0] : -3.33333333333
veal sausage and brie[1.0, 10.0] : 10.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, 48.0] : 5.33333333333
crab cake[1.0, -8.0] : -8.0
greek chicken[1.0, 11.0] : 11.0
greek salad[1.0, -4.0] : -4.0
mezze sampler[1.0, -11.0] : -11.0
octopus[5.0, 26.0] : 5.2
orecchiette[1.0, 6.0] : 6.0
paella[10.0, 21.0] : 2.1
pork saltimbocca[1.0, -2.0] : -2.0
ricotta gnocchi[1.0, 13.0] : 13.0
risotto[3.0, -21.0] : -7.0
salmon[4.0, 16.0] : 4.0
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, 11.0] : 11.0
caprese[5.0, 54.0] : 10.8
carpaccio[10.0, 52.0] : 5.2
cheese[8.0, 96.0] : 12.0
duck confit[2.0, -10.0] : -5.0
filet[1.0, 11.0] : 11.0
flat bread[2.0, 25.0] : 12.5
gnocchi[4.0, 9.0] : 2.25
halibut[2.0, 21.0] : 10.5
mushroom risotto[10.0, 82.0] : 8.2
mussels[11.0, -24.0] : -2.18181818182
pacci pup[1.0, 24.0] : 24.0
polenta[1.0, 6.0] : 6.0
sauces[1.0, 11.0] : 11.0
scallops[8.0, 78.0] : 9.75
tiramisu[3.0, 25.0] : 8.33333333333
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
beef lasagna[10.0, 76.0] : 7.6
bruschetta[19.0, 113.0] : 5.94736842105
calamari[14.0, 151.0] : 10.7857142857
carciofi e pollo[5.0, 54.0] : 10.8
cheese ravioli[6.0, 18.0] : 3.0
cheesecake[6.0, 40.0] : 6.66666666667
chicken breast[5.0, 29.0] : 5.8
chicken marsala[9.0, 83.0] : 9.22222222222
chicken parmigiana[3.0, 1.0] : 0.333333333333
chicken picatta[2.0, 17.0] : 8.5
crab cakes[7.0, 63.0] : 9.0
di casa[1.0, 1.0] : 1.0
eggplant parmigiana[1.0, 0.0] : 0.0
gamberetto[2.0, 31.0] : 15.5
garlic bread[14.0, 99.0] : 7.07142857143
garlic fries[4.0, 22.0] : 5.5
gnocchi sausage[10.0, 31.0] : 3.1
gorgonzola salad[1.0, 16.0] : 16.0
ice cream[1.0, 18.0] : 18.0
marco pollo[3.0, 40.0] : 13.3333333333
melanzane[8.0, 42.0] : 5.25
penne bolognese[4.0, 39.0] : 9.75
rustica[5.0, 49.0] : 9.8
salmon[19.0, 72.0] : 3.78947368421
tiramisu[35.0, 343.0] : 9.8
tortellini primavera[1.0, 24.0] : 24.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, 8.0] : 4.0
caesar[6.0, -4.0] : -0.666666666667
gnocchi[11.0, 80.0] : 7.27272727273
margherita pizza[1.0, 5.0] : 5.0
polenta[6.0, 57.0] : 9.5
risotto[5.0, 66.0] : 13.2
tiramisu[1.0, 4.0] : 4.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: 0.993006993007
We recommend: garlic bread
We recommend: mussels
Stay away from: broccoli rabe
artichoke[12.0, 30.0] : 2.5
broccoli rabe[12.0, -1.0] : -0.0833333333333
fettucine ai funghi[1.0, 25.0] : 25.0
garlic bread[18.0, 136.0] : 7.55555555556
grilled eggplant[2.0, -5.0] : -2.5
insalata caprese[1.0, 9.0] : 9.0
insalata pisticci[1.0, 2.0] : 2.0
maltagliati with ricotta[2.0, 9.0] : 4.5
meatballs[15.0, 91.0] : 6.06666666667
michael's pasta[5.0, 35.0] : 7.0
minestrone[2.0, 15.0] : 7.5
mussels[15.0, 180.0] : 12.0
orecchiette broccoli rabe[5.0, 15.0] : 3.0
penne pisticci[9.0, 100.0] : 11.1111111111
polenta[10.0, 97.0] : 9.7
portobello mushroom[2.0, 11.0] : 5.5
prosciutto e spinaci[4.0, 23.0] : 5.75
ravioli[13.0, 88.0] : 6.76923076923
rosemary potatoes[1.0, 25.0] : 25.0
salmon[9.0, 29.0] : 3.22222222222
skirt steak[1.0, 10.0] : 10.0
vegetable ceci[1.0, 5.0] : 5.0
whole wheat penne[2.0, -5.0] : -2.5
PRECISION: 1.0
RECALL: 0.99173553719
NEG PRECISION: 0.95652173913
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, 9.0] : 9.0
caesar salad[1.0, -6.0] : -6.0
caprese salad[2.0, -5.0] : -2.5
carpaccio[3.0, 12.0] : 4.0
chocolate souffle[1.0, 16.0] : 16.0
gnocchi[3.0, 37.0] : 12.3333333333
lasagna[6.0, 32.0] : 5.33333333333
margherita pizza[1.0, 6.0] : 6.0
minestrone soup[1.0, 6.0] : 6.0
salmone[1.0, 12.0] : 12.0
spaghetti carbonara[1.0, 7.0] : 7.0
spaghetti con polpette[1.0, 5.0] : 5.0
strawberry shortcake[3.0, 30.0] : 10.0
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: caprese
Stay away from: cheeses
arugula[19.0, 133.0] : 7.0
caprese[3.0, -3.0] : -1.0
casarecci alla arrabiata[3.0, 30.0] : 10.0
cheeses[3.0, -5.0] : -1.66666666667
funghi pizza[2.0, 41.0] : 20.5
garlic spinach[2.0, 1.0] : 0.5
margherita pizza[4.0, 41.0] : 10.25
panna cotta[1.0, -6.0] : -6.0
polenta[7.0, 61.0] : 8.71428571429
rigatoni[2.0, -10.0] : -5.0
risotto[13.0, 36.0] : 2.76923076923
sagra pizza[4.0, 11.0] : 2.75
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, 9.0] : 3.0
gnocchi[10.0, 26.0] : 2.6
linguini[6.0, 41.0] : 6.83333333333
mozzarella[17.0, 153.0] : 9.0
orecchiette[2.0, -3.0] : -1.5
penne melanzane[1.0, 13.0] : 13.0
pollo agrodolce[1.0, 12.0] : 12.0
pork chop milanese[2.0, 15.0] : 7.5
tilapia[1.0, 13.0] : 13.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
We recommend: margherita
Stay away from: polenta
calamari[2.0, 4.0] : 2.0
campione[2.0, 9.0] : 4.5
filetto[1.0, 3.0] : 3.0
margherita[3.0, 10.0] : 3.33333333333
napoli[1.0, -1.0] : -1.0
octopus[1.0, 2.0] : 2.0
ortolana[2.0, 2.0] : 1.0
polenta[3.0, -2.0] : -0.666666666667
risotto[4.0, 25.0] : 6.25
salmon[2.0, 14.0] : 7.0
PRECISION: 0.823529411765
RECALL: 0.823529411765
NEG PRECISION: 0.25
NEG RECALL: 0.25
__________________________
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, 22.0] : 11.0
calamari[4.0, 14.0] : 3.5
capellini[1.0, 15.0] : 15.0
gnocchi[8.0, 23.0] : 2.875
linguini[8.0, 69.0] : 8.625
ravioli[17.0, 172.0] : 10.1176470588
tortelloni[4.0, 27.0] : 6.75
zuppa di funghi[1.0, 7.0] : 7.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, 10.0] : 3.33333333333
calamari[7.0, 47.0] : 6.71428571429
cappellini[3.0, -10.0] : -3.33333333333
carpaccio[1.0, 2.0] : 2.0
filet mignon[2.0, 33.0] : 16.5
insalata casa cuneo[1.0, 7.0] : 7.0
linguine[4.0, 64.0] : 16.0
minestrone[2.0, 27.0] : 13.5
new york strip[1.0, 9.0] : 9.0
orecchiette[5.0, 18.0] : 3.6
osso buco[2.0, 23.0] : 11.5
pappardelle[2.0, -10.0] : -5.0
pesce bianco[2.0, 11.0] : 5.5
prosciutto e burrata[1.0, -9.0] : -9.0
ravioli[5.0, 42.0] : 8.4
risotto[6.0, 63.0] : 10.5
salmone alla griglia[1.0, 4.0] : 4.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, 4.0] : 4.0
agnello[1.0, 4.0] : 4.0
agnolotti[5.0, 52.0] : 10.4
anatra[1.0, -1.0] : -1.0
bietole[1.0, 18.0] : 18.0
bistecca alla pizzaiola[1.0, 12.0] : 12.0
bruschetta[5.0, 19.0] : 3.8
calamari[17.0, 106.0] : 6.23529411765
caprese[8.0, 77.0] : 9.625
cesare[1.0, 10.0] : 10.0
cozze[1.0, 13.0] : 13.0
farfalle[2.0, 11.0] : 5.5
funghi[1.0, 12.0] : 12.0
gnocchi[5.0, 28.0] : 5.6
insalata verde[1.0, 6.0] : 6.0
lasagna matta[1.0, 3.0] : 3.0
linguine[2.0, 23.0] : 11.5
mezzalune[1.0, 12.0] : 12.0
ossobuco[1.0, 26.0] : 26.0
pappardelle[3.0, 24.0] : 8.0
penne[2.0, 33.0] : 16.5
pesce[1.0, 1.0] : 1.0
polipo[1.0, 5.0] : 5.0
prosciutto[4.0, 37.0] : 9.25
quattro formaggi[1.0, -22.0] : -22.0
risotto frutti di mare[3.0, 26.0] : 8.66666666667
salsiccia[1.0, 11.0] : 11.0
spaghetti casalinga[2.0, 0.0] : 0.0
zuppa di mare[2.0, 21.0] : 10.5
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, 19.0] : 6.33333333333
caesar salad[3.0, 21.0] : 7.0
calamari[3.0, 7.0] : 2.33333333333
capretta pizza[1.0, 3.0] : 3.0
chicken cannelloni[1.0, -4.0] : -4.0
chicken marsala[1.0, 17.0] : 17.0
chicken parmigiana[2.0, 0.0] : 0.0
chicken parmigiana sandwich[1.0, 11.0] : 11.0
chinese chicken salad[3.0, 32.0] : 10.6666666667
chopped salad[2.0, -1.0] : -0.5
cobb salad[1.0, -12.0] : -12.0
combo pizza[1.0, 12.0] : 12.0
eggplant parmigiana[1.0, 11.0] : 11.0
eggplant ravioli parmigiana[3.0, 29.0] : 9.66666666667
farfalle pesto[7.0, 47.0] : 6.71428571429
greek salad[1.0, 14.0] : 14.0
linguini artichini[4.0, 40.0] : 10.0
linguini seafood[1.0, 10.0] : 10.0
meat lasagna[1.0, 13.0] : 13.0
penne puttanesca[1.0, 8.0] : 8.0
penne vodka[5.0, 53.0] : 10.6
penne vodka with chicken[1.0, 22.0] : 22.0
salad pizza[3.0, 36.0] : 12.0
shrimp scampi[1.0, 13.0] : 13.0
steak sandwich[1.0, 3.0] : 3.0
turkey sandwich[2.0, 19.0] : 9.5
vegetarian pizza[1.0, 12.0] : 12.0
vegetarian sandwich[1.0, 20.0] : 20.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, 5.0] : 5.0
ceviche[1.0, 11.0] : 11.0
pecan crusted salmon[1.0, 18.0] : 18.0
rack of lamb[1.0, 9.0] : 9.0
skirt steak[1.0, -8.0] : -8.0
spinach and artichoke dip[1.0, 9.0] : 9.0
stuffed shrimp[2.0, 6.0] : 3.0
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.802887420387
Average Pecision: 0.892726365427
Average Recall: 0.873468754026
Average Neg Precision: 0.338541666667
Average Neg Recall: 0.393650793651
Average MCC: 0.24787401786
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