-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRestaurants_Test_Data_phaseB.xml
More file actions
7374 lines (7374 loc) · 307 KB
/
Restaurants_Test_Data_phaseB.xml
File metadata and controls
7374 lines (7374 loc) · 307 KB
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<sentences>
<sentence id="32897564#894393#2">
<text>The bread is top notch as well.</text>
<aspectTerms>
<aspectTerm term="bread" from="4" to="9"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="33070600#670328#0">
<text>I have to say they have one of the fastest delivery times in the city.</text>
<aspectTerms>
<aspectTerm term="delivery times" from="43" to="57"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="33070600#670328#2">
<text>Food is always fresh and hot- ready to eat!</text>
<aspectTerms>
<aspectTerm term="Food" from="0" to="4"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="36244464#949326#5">
<text>Did I mention that the coffee is OUTSTANDING?</text>
<aspectTerms>
<aspectTerm term="coffee" from="23" to="29"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32894246#870052#0">
<text>Certainly not the best sushi in New York, however, it is always fresh, and the place is very clean, sterile.</text>
<aspectTerms>
<aspectTerm term="sushi" from="23" to="28"/>
<aspectTerm term="place" from="79" to="84"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="32894246#870052#1">
<text>I trust the people at Go Sushi, it never disappoints.</text>
<aspectTerms>
<aspectTerm term="people" from="12" to="18"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="32894246#870052#2">
<text>Straight-forward, no surprises, very decent Japanese food.</text>
<aspectTerms>
<aspectTerm term="Japanese food" from="44" to="57"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35390182#756337#4">
<text>BEST spicy tuna roll, great asian salad.</text>
<aspectTerms>
<aspectTerm term="asian salad" from="28" to="39"/>
<aspectTerm term="spicy tuna roll" from="5" to="20"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35390182#756337#5">
<text>Try the rose roll (not on menu).</text>
<aspectTerms>
<aspectTerm term="rose roll" from="8" to="17"/>
<aspectTerm term="menu" from="26" to="30"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11447227#436718#3">
<text>I love the drinks, esp lychee martini, and the food is also VERY good.</text>
<aspectTerms>
<aspectTerm term="drinks" from="11" to="17"/>
<aspectTerm term="lychee martini" from="23" to="37"/>
<aspectTerm term="food" from="47" to="51"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="33071731#1007204#3">
<text>In fact, this was not a Nicoise salad and was barely eatable.</text>
<aspectTerms>
<aspectTerm term="Nicoise salad" from="24" to="37"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="33085939#758010#0">
<text>While there's a decent menu, it shouldn't take ten minutes to get your drinks and 45 for a dessert pizza.</text>
<aspectTerms>
<aspectTerm term="menu" from="23" to="27"/>
<aspectTerm term="drinks" from="71" to="77"/>
<aspectTerm term="dessert pizza" from="91" to="104"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="11313431#524365#3">
<text>Once we sailed, the top-notch food and live entertainment sold us on a unforgettable evening.</text>
<aspectTerms>
<aspectTerm term="food" from="30" to="34"/>
<aspectTerm term="live entertainment" from="39" to="57"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="11359717#1138929#1">
<text>Our waiter was horrible; so rude and disinterested.</text>
<aspectTerms>
<aspectTerm term="waiter" from="4" to="10"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="11359717#1138929#3">
<text>The sangria's - watered down.</text>
<aspectTerms>
<aspectTerm term="sangria" from="4" to="11"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11359717#1138929#4">
<text>menu - uneventful, small.</text>
<aspectTerms>
<aspectTerm term="menu" from="0" to="4"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11313439#692431#0">
<text>Anytime and everytime I find myself in the neighborhood I will go to Sushi Rose for fresh sushi and great portions all at a reasonable price.</text>
<aspectTerms>
<aspectTerm term="sushi" from="90" to="95"/>
<aspectTerm term="portions" from="106" to="114"/>
<aspectTerm term="price" from="135" to="140"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="price"/>
</aspectCategories>
</sentence>
<sentence id="11351513#832512#0">
<text>Great food but the service was dreadful!</text>
<aspectTerms>
<aspectTerm term="food" from="6" to="10"/>
<aspectTerm term="service" from="19" to="26"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="35390148#588852#2">
<text>The portions of the food that came out were mediocre.</text>
<aspectTerms>
<aspectTerm term="portions of the food" from="4" to="24"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11351513#832512#1">
<text>the two waitress's looked like they had been sucking on lemons.</text>
<aspectTerms>
<aspectTerm term="waitress's" from="8" to="18"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="11313431#524365#2">
<text>From the beginning, we were met by friendly staff memebers, and the convienent parking at Chelsea Piers made it easy for us to get to the boat.</text>
<aspectTerms>
<aspectTerm term="staff memebers" from="44" to="58"/>
<aspectTerm term="parking" from="79" to="86"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="35196520#758440#4">
<text>We enjoyed ourselves thoroughly and will be going back for the desserts ....</text>
<aspectTerms>
<aspectTerm term="desserts" from="63" to="71"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="35196527#481646#2">
<text>Desserts are almost incredible: my personal favorite is their Tart of the Day.</text>
<aspectTerms>
<aspectTerm term="Desserts" from="0" to="8"/>
<aspectTerm term="Tart of the Day" from="62" to="77"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35668126#536759#0">
<text>I am surprised at the lower reviews because it is definitely better than other places I have tried with higher ratings.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="35668126#536759#1">
<text>Maybe the secret was that we went on a Sunday night and everything was great.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="35668126#536759#2">
<text>The food was extremely tasty, creatively presented and the wine excellent.</text>
<aspectTerms>
<aspectTerm term="food" from="4" to="8"/>
<aspectTerm term="wine" from="59" to="63"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="33070286#1133164#0">
<text>WE ENDED UP IN LITTLE ITALY IN LATE AFTERNOON.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="33070286#1133164#4">
<text>WE WERE PLEASANTLY SURPRISED WITH OUR CHOICE.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="33070286#1133164#6">
<text>THE LASAGNA WAS PROBABLY THE BEST I HAVE TASTED.</text>
<aspectTerms>
<aspectTerm term="LASAGNA" from="4" to="11"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32894336#662479#0">
<text>Harumi Sushi has the freshest and most delicious array of sushi in NYC.</text>
<aspectTerms>
<aspectTerm term="array of sushi" from="49" to="63"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32894336#662479#1">
<text>I highly recommend it for not just its superb cuisine, but also for its friendly owners and staff.</text>
<aspectTerms>
<aspectTerm term="cuisine" from="46" to="53"/>
<aspectTerm term="owners" from="81" to="87"/>
<aspectTerm term="staff" from="92" to="97"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="32892130#435512#0">
<text>If you're craving some serious indian food and desire a cozy ambiance, this is quite and exquisite choice.</text>
<aspectTerms>
<aspectTerm term="indian food" from="31" to="42"/>
<aspectTerm term="ambiance" from="61" to="69"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="32892130#435512#4">
<text>I definitely enjoyed the food as well.</text>
<aspectTerms>
<aspectTerm term="food" from="25" to="29"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32894791#1611374#0">
<text>have always had a great time here.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="11432316#715219#2">
<text>It was pleasantly uncrowded, the service was delightful, the garden adorable, the food (from appetizers to entrees) was delectable.</text>
<aspectTerms>
<aspectTerm term="service" from="33" to="40"/>
<aspectTerm term="garden" from="61" to="67"/>
<aspectTerm term="food" from="82" to="86"/>
<aspectTerm term="appetizers" from="93" to="103"/>
<aspectTerm term="entrees" from="107" to="114"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="ambience"/>
<aspectCategory category="service"/>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="33085669#409731#13">
<text>You will be very happy with the experience.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="11351354#412616#0">
<text>The food is surprisingly good, and the decor is nice.</text>
<aspectTerms>
<aspectTerm term="food" from="4" to="8"/>
<aspectTerm term="decor" from="39" to="44"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="35714274#1076679#0">
<text>How pretentious and inappropriate for MJ Grill to claim that it provides power lunch and dinners!</text>
<aspectTerms>
<aspectTerm term="lunch" from="79" to="84"/>
<aspectTerm term="dinners" from="89" to="96"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35714274#1076679#5">
<text>Two wasted steaks -- what a crime!</text>
<aspectTerms>
<aspectTerm term="steaks" from="11" to="17"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35720486#684689#4">
<text>The staff should be a bit more friendly.</text>
<aspectTerms>
<aspectTerm term="staff" from="4" to="9"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="33507331#1177339#2">
<text>I absolutely suggest this place.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="33064346#1483297#0">
<text>I think the meatball parm is good.</text>
<aspectTerms>
<aspectTerm term="meatball parm" from="12" to="25"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11417054#1062693#2">
<text>If you want good tasting, well seasoned latin food eat at Cabana and you can't go wrong.</text>
<aspectTerms>
<aspectTerm term="latin food" from="40" to="50"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="13383936#420974#4">
<text>Definitely try the taglierini with truffles - it was incredible.</text>
<aspectTerms>
<aspectTerm term="taglierini with truffles" from="19" to="43"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="13383936#420974#5">
<text>Also, the staff is very attentive and really personable.</text>
<aspectTerms>
<aspectTerm term="staff" from="10" to="15"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="13383936#420974#6">
<text>Overall, this is a great new restaurant that has been consistently good every time I have been.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="36244423#1058258#2">
<text>The gnocchi literally melts in your mouth!</text>
<aspectTerms>
<aspectTerm term="gnocchi" from="4" to="11"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11559272#409013#0">
<text>Had a great experience at Trio ... staff was pleasant; food was tasty and large in portion size - I would highly recommend the portobello/gorgonzola/sausage appetizer and the lobster risotto.</text>
<aspectTerms>
<aspectTerm term="staff" from="35" to="40"/>
<aspectTerm term="food" from="55" to="59"/>
<aspectTerm term="portion size" from="83" to="95"/>
<aspectTerm term="portobello/gorgonzola/sausage appetizer" from="127" to="166"/>
<aspectTerm term="lobster risotto" from="175" to="190"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="36244784#0#3">
<text>Entrees include classics like lasagna, fettuccine Alfredo and chicken parmigiana.</text>
<aspectTerms>
<aspectTerm term="Entrees" from="0" to="7"/>
<aspectTerm term="lasagna" from="30" to="37"/>
<aspectTerm term="fettuccine Alfredo" from="39" to="57"/>
<aspectTerm term="chicken parmigiana" from="62" to="80"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32938222#1552119#2">
<text>The food is good, the teriyaki I recommend.</text>
<aspectTerms>
<aspectTerm term="food" from="4" to="8"/>
<aspectTerm term="teriyaki" from="22" to="30"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11546184#1465600#0">
<text>Meal was very expensive for what you get.</text>
<aspectTerms>
<aspectTerm term="Meal" from="0" to="4"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="price"/>
</aspectCategories>
</sentence>
<sentence id="32895093#418997#3">
<text>Try the Peanut Butter Sorbet and the pizza with soy cheese!</text>
<aspectTerms>
<aspectTerm term="Peanut Butter Sorbet" from="8" to="28"/>
<aspectTerm term="pizza with soy cheese" from="37" to="58"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32406302#615620#2">
<text>Good food at the right price, what more can you ask for.</text>
<aspectTerms>
<aspectTerm term="food" from="5" to="9"/>
<aspectTerm term="price" from="23" to="28"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="price"/>
</aspectCategories>
</sentence>
<sentence id="35390182#756337#1">
<text>We love it, and took buses and cabs to get there.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="11302356#1455624#2">
<text>If you' re in New York, you do not want to miss this place.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="11302356#1455624#1">
<text>The food is top notch, the service is attentive, and the atmosphere is great.</text>
<aspectTerms>
<aspectTerm term="food" from="4" to="8"/>
<aspectTerm term="service" from="27" to="34"/>
<aspectTerm term="atmosphere" from="57" to="67"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="service"/>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="11302356#1455624#0">
<text>I've been coming here on and off for the past five years and I have to say that La Lanterna has never, ever dissapointed me.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="11302355#533813#0">
<text>Great food, great waitstaff, great atmosphere, and best of all GREAT beer!</text>
<aspectTerms>
<aspectTerm term="food" from="6" to="10"/>
<aspectTerm term="waitstaff" from="18" to="27"/>
<aspectTerm term="atmosphere" from="35" to="45"/>
<aspectTerm term="beer" from="69" to="73"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="service"/>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="35698351#821341#0">
<text>this is still one of my most favorite restaurants in the area the food is inexpensive but very good (kimono shrimp special was excellent) and has a great atmosphere.</text>
<aspectTerms>
<aspectTerm term="food" from="66" to="70"/>
<aspectTerm term="kimono shrimp special" from="101" to="122"/>
<aspectTerm term="atmosphere" from="154" to="164"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="price"/>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="11351664#1238806#0">
<text>My husband and I moved to Nolita 6 years ago and for as long as we have lived here, Peasant has been our favorite!</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="33070305#1312437#6">
<text>The whole experience was satisfying.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="33070305#1312437#1">
<text>However, it was worth the visit.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="33070305#1312437#2">
<text>The menu is interesting and quite reasonably priced.</text>
<aspectTerms>
<aspectTerm term="menu" from="4" to="8"/>
<aspectTerm term="priced" from="45" to="51"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="price"/>
</aspectCategories>
</sentence>
<sentence id="33070305#1312437#3">
<text>The food was delicious and clearly fresh ingredients were used.</text>
<aspectTerms>
<aspectTerm term="food" from="4" to="8"/>
<aspectTerm term="ingredients" from="41" to="52"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11610073#973003#3">
<text>This made it obvious that the food wasn't cooked fresh; it was obviously made before hand and then reheated.</text>
<aspectTerms>
<aspectTerm term="food" from="30" to="34"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11464789#378665#0">
<text>Appetizer are excellent here; you can make a great (and inexpensive) meal out of them.</text>
<aspectTerms>
<aspectTerm term="Appetizer" from="0" to="9"/>
<aspectTerm term="meal" from="69" to="73"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="price"/>
</aspectCategories>
</sentence>
<sentence id="11464789#378665#1">
<text>The spicy mussels are a highlight.</text>
<aspectTerms>
<aspectTerm term="spicy mussels" from="4" to="17"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32899282#556036#2">
<text>Also get the Onion Rings -- best we've ever had.</text>
<aspectTerms>
<aspectTerm term="Onion Rings" from="13" to="24"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11351587#1488758#8">
<text>Would not return for the amount we paid.</text>
<aspectCategories>
<aspectCategory category="price"/>
</aspectCategories>
</sentence>
<sentence id="11351587#1488758#2">
<text>However, being foodies, we were utterly disappointed with the food.</text>
<aspectTerms>
<aspectTerm term="food" from="62" to="66"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11359656#1716239#1">
<text>Huge portions, great and attentive service, and pretty good prices.</text>
<aspectTerms>
<aspectTerm term="portions" from="5" to="13"/>
<aspectTerm term="service" from="35" to="42"/>
<aspectTerm term="prices" from="60" to="66"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="service"/>
<aspectCategory category="price"/>
</aspectCategories>
</sentence>
<sentence id="11359797#469087#7">
<text>I was highly disappointed by their service and food.</text>
<aspectTerms>
<aspectTerm term="service" from="35" to="42"/>
<aspectTerm term="food" from="47" to="51"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11359797#469087#6">
<text>I complained to the waiter and then to the manager, but the intensity of rudeness from them just went up.</text>
<aspectTerms>
<aspectTerm term="waiter" from="20" to="26"/>
<aspectTerm term="manager" from="43" to="50"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="32938828#1194079#1">
<text>The food is great and the milkshakes are even better!</text>
<aspectTerms>
<aspectTerm term="food" from="4" to="8"/>
<aspectTerm term="milkshakes" from="26" to="36"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11349445#757796#5">
<text>Stay away if you're claustrophobic</text>
<aspectCategories>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="11349445#757796#0">
<text>If you're in the 'hood, definitely stop in.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="11349445#757796#1">
<text>the mushroom barley soup is amazing.</text>
<aspectTerms>
<aspectTerm term="mushroom barley soup" from="4" to="24"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11602699#875811#0">
<text>On the recommendation of a friend, I checked out Arezzo with my wife.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="11602699#875811#1">
<text>I'm glad I did as the food was very good and the staff was friendly, courteous and efficient.</text>
<aspectTerms>
<aspectTerm term="food" from="22" to="26"/>
<aspectTerm term="staff" from="49" to="54"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="11313316#1234433#2">
<text>Their duck here is also absolutely delicious.</text>
<aspectTerms>
<aspectTerm term="duck" from="6" to="10"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11313316#1234433#0">
<text>This is definitely one of the places that I have continued to come back to over the years.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="11351762#644011#1">
<text>While it was large and a bit noisy, the drinks were fantastic, and the food was superb.</text>
<aspectTerms>
<aspectTerm term="drinks" from="40" to="46"/>
<aspectTerm term="food" from="71" to="75"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="ambience"/>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35719198#0#5">
<text>One caveat: Some of the curried casseroles can be a trifle harsh.</text>
<aspectTerms>
<aspectTerm term="curried casseroles" from="24" to="42"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35158451#1089920#3">
<text>I wasn't impressed and it wasn't SPICEY????</text>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="33070461#1496736#1">
<text>The food was almost always EXCELLENT.</text>
<aspectTerms>
<aspectTerm term="food" from="4" to="8"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32882616#562969#4">
<text>I was pleasently surprised at the taste.</text>
<aspectTerms>
<aspectTerm term="taste" from="34" to="39"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="33070309#423221#1">
<text>A nice space, as long as it doesn't get too crowded and a singleminded devotion to its chosen cuisine make Mare a great choice for seafood lovers.</text>
<aspectTerms>
<aspectTerm term="seafood" from="131" to="138"/>
<aspectTerm term="space" from="7" to="12"/>
<aspectTerm term="cuisine" from="94" to="101"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="ambience"/>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32882616#562969#3">
<text>I never had an orange donut before so I gave it a shot.</text>
<aspectTerms>
<aspectTerm term="orange donut" from="15" to="27"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35171678#484493#3">
<text>they really provide a relaxing, laid-back atmosphere.</text>
<aspectTerms>
<aspectTerm term="atmosphere" from="42" to="52"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="32945645#1528063#2">
<text>This particular location certainly uses substandard meats.</text>
<aspectTerms>
<aspectTerm term="meats" from="52" to="57"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32895093#418997#0">
<text>I stumbled upon this resteraunt on my way home from the subway.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="11546184#1465600#4">
<text>The Management was less than accomodating.</text>
<aspectTerms>
<aspectTerm term="Management" from="4" to="14"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="13383936#420974#2">
<text>The ambience is also more laid-back and relaxed.</text>
<aspectTerms>
<aspectTerm term="ambience" from="4" to="12"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="35692932#1064131#3">
<text>the teas are great and all the sweets are homemade.</text>
<aspectTerms>
<aspectTerm term="teas" from="4" to="8"/>
<aspectTerm term="sweets" from="31" to="37"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11488685#420977#1">
<text>mojitos and the service are the best part in there</text>
<aspectTerms>
<aspectTerm term="mojitos" from="0" to="7"/>
<aspectTerm term="service" from="16" to="23"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="35397104#0#3">
<text>Sandwiches, burgers and salads, like the lemon-dressed cobb, are classic successes.</text>
<aspectTerms>
<aspectTerm term="Sandwiches" from="0" to="10"/>
<aspectTerm term="burgers" from="12" to="19"/>
<aspectTerm term="salads" from="24" to="30"/>
<aspectTerm term="lemon-dressed cobb" from="41" to="59"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35820984#608922#0">
<text>this restaurant is absolutely beautiful.</text>
<aspectCategories>
<aspectCategory category="anecdotes/miscellaneous"/>
</aspectCategories>
</sentence>
<sentence id="35820984#608922#1">
<text>The design is very intimate and romantic.</text>
<aspectTerms>
<aspectTerm term="design" from="4" to="10"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="35820984#608922#2">
<text>The food was wonderful and imaginative.</text>
<aspectTerms>
<aspectTerm term="food" from="4" to="8"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="35820984#608922#3">
<text>The staff is very sharp and they look good too.</text>
<aspectTerms>
<aspectTerm term="staff" from="4" to="9"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="36245348#821441#2">
<text>The worst though was the taste.</text>
<aspectTerms>
<aspectTerm term="taste" from="25" to="30"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="36245348#821441#3">
<text>They were dry, stale and pretty flavorless.</text>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11432442#650772#5">
<text>The fajita we tried was tasteless and burned and the mole sauce was way too sweet.</text>
<aspectTerms>
<aspectTerm term="fajita" from="4" to="10"/>
<aspectTerm term="mole sauce" from="53" to="63"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="11432442#650772#6">
<text>Stay with the roasted chickens and you'll be fine.</text>
<aspectTerms>
<aspectTerm term="roasted chickens" from="14" to="30"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32944693#1193404#4">
<text>The atmosphere is warm, comfortable, artsy and sexy.</text>
<aspectTerms>
<aspectTerm term="atmosphere" from="4" to="14"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="ambience"/>
</aspectCategories>
</sentence>
<sentence id="32944693#1193404#1">
<text>The food is great (big selection, reasonable prices) and the drinks are really good.</text>
<aspectTerms>
<aspectTerm term="food" from="4" to="8"/>
<aspectTerm term="selection" from="23" to="32"/>
<aspectTerm term="prices" from="45" to="51"/>
<aspectTerm term="drinks" from="61" to="67"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
<aspectCategory category="price"/>
</aspectCategories>
</sentence>
<sentence id="35693214#539116#1">
<text>The steak melted in my mouth.</text>
<aspectTerms>
<aspectTerm term="steak" from="4" to="9"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="food"/>
</aspectCategories>
</sentence>
<sentence id="32950007#1320096#3">
<text>The food did take a few extra minutes to come, but the cute waiters' jokes and friendliness made up for it.</text>
<aspectTerms>
<aspectTerm term="waiters" from="60" to="67"/>
<aspectTerm term="food" from="4" to="8"/>
</aspectTerms>
<aspectCategories>
<aspectCategory category="service"/>
</aspectCategories>
</sentence>
<sentence id="35938288#666236#2">
<text>Most importantly, it is reasonably priced.</text>