File size: 65,047 Bytes
d763dd0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
love [B-ASP]al di la[E-ASP] $LABEL$ Positive
i recommend this [B-ASP]place[E-ASP] to everyone . $LABEL$ Positive
great [B-ASP]food[E-ASP] . $LABEL$ Positive
the [B-ASP]pastas[E-ASP] are incredible , the risottos ( particularly the sepia ) are fantastic and the braised rabbit is amazing . $LABEL$ Positive
the pastas are incredible , the [B-ASP]risottos[E-ASP] ( particularly the sepia ) are fantastic and the braised rabbit is amazing . $LABEL$ Positive
the pastas are incredible , the risottos ( particularly the [B-ASP]sepia[E-ASP] ) are fantastic and the braised rabbit is amazing . $LABEL$ Positive
the pastas are incredible , the risottos ( particularly the sepia ) are fantastic and the [B-ASP]braised rabbit[E-ASP] is amazing . $LABEL$ Positive
the [B-ASP]food[E-ASP] here was mediocre at best . $LABEL$ Negative
it was totally overpriced- [B-ASP]fish and chips[E-ASP] was about $ 15 .... $LABEL$ Negative
tasty [B-ASP]dog[E-ASP] ! $LABEL$ Positive
an awesome organic [B-ASP]dog[E-ASP] , and a conscious eco friendly establishment . $LABEL$ Positive
an awesome organic dog , and a conscious eco friendly [B-ASP]establishment[E-ASP] . $LABEL$ Positive
the [B-ASP]cypriot restaurant[E-ASP] has a lot going for it . $LABEL$ Positive
but the best [B-ASP]pork souvlaki[E-ASP] i ever had is the main thing . $LABEL$ Positive
super yummy [B-ASP]pizza[E-ASP] ! $LABEL$ Positive
i was visiting new york city with a friend and we discovered this really warm and inviting [B-ASP]restaurant[E-ASP] . $LABEL$ Positive
i looove their [B-ASP]eggplant pizza[E-ASP] , as well as their pastas ! $LABEL$ Positive
i looove their eggplant pizza , as well as their [B-ASP]pastas[E-ASP] ! $LABEL$ Positive
we had [B-ASP]half / half pizza[E-ASP] , mine was eggplant and my friend had the buffalo and it was sooo huge for a small size pizza ! $LABEL$ Positive
excellent [B-ASP]food[E-ASP] , although the interior could use some help . $LABEL$ Positive
excellent food , although the [B-ASP]interior[E-ASP] could use some help . $LABEL$ Negative
the [B-ASP]space[E-ASP] kind of feels like an alice in wonderland setting , without it trying to be that . $LABEL$ Negative
i paid just about $ 60 for a good [B-ASP]meal[E-ASP] , though :) $LABEL$ Positive
great [B-ASP]sake[E-ASP] ! $LABEL$ Positive
reliable , fresh [B-ASP]sushi[E-ASP] $LABEL$ Positive
the [B-ASP]sashimi[E-ASP] is always fresh and the rolls are innovative and delicious . $LABEL$ Positive
the sashimi is always fresh and the [B-ASP]rolls[E-ASP] are innovative and delicious . $LABEL$ Positive
have never had a problem with [B-ASP]service[E-ASP] save a missing rice once . $LABEL$ Positive
[B-ASP]delivery[E-ASP] can be spot on or lacking depending on the weather and the day of the week . $LABEL$ Negative
[B-ASP]delivery guy[E-ASP] sometimes get upset if you do n't tip more than 10 % . $LABEL$ Negative
best . [B-ASP]sushi[E-ASP] . ever . $LABEL$ Positive
this place has ruined me for neighborhood [B-ASP]sushi[E-ASP] . $LABEL$ Positive
excellent [B-ASP]sashimi[E-ASP] , and the millennium roll is beyond delicious . $LABEL$ Positive
excellent sashimi , and the [B-ASP]millennium roll[E-ASP] is beyond delicious . $LABEL$ Positive
the [B-ASP]place[E-ASP] is a bit hidden away , but once you get there , it 's all worth it . $LABEL$ Neutral
not only is the [B-ASP]food[E-ASP] $LABEL$ Positive
the [B-ASP]waiter[E-ASP] was attentive , the food was delicious and the views of the city were great . $LABEL$ Positive
the waiter was attentive , the [B-ASP]food[E-ASP] was delicious and the views of the city were great . $LABEL$ Positive
the waiter was attentive , the food was delicious and the [B-ASP]views of the city[E-ASP] were great . $LABEL$ Positive
great [B-ASP]place[E-ASP] to relax and enjoy your dinner $LABEL$ Positive
there is something about their [B-ASP]atmosphere[E-ASP] that makes me come back nearly every week . $LABEL$ Positive
[B-ASP]place[E-ASP] is open till late , no dress code . $LABEL$ Positive
good [B-ASP]food[E-ASP] : my favorite is the sea$t$ spaghetti . $LABEL$ Positive
good food : my favorite is the [B-ASP]seafood spaghetti[E-ASP] . $LABEL$ Positive
excellent [B-ASP]food[E-ASP] for great prices $LABEL$ Positive
the [B-ASP]wait staff[E-ASP] is very courteous and accomodating . $LABEL$ Positive
the [B-ASP]space[E-ASP] is limited so be prepared to wait up to 45 minutes - 1 hour , but be richly rewarded when you savor the delicious indo - chinese food . $LABEL$ Neutral
the space is limited so be prepared to wait up to 45 minutes - 1 hour , but be richly rewarded when you savor the delicious [B-ASP]indo - chinese food[E-ASP] . $LABEL$ Positive
my favorite [B-ASP]place[E-ASP] lol $LABEL$ Positive
i love their [B-ASP]chicken pasta[E-ASP] ca nt remember the name but is sooo good $LABEL$ Positive
i m not necessarily fanatical about this [B-ASP]place[E-ASP] , but it was a fun time for low pirces . $LABEL$ Positive
[B-ASP]lobster[E-ASP] was good , nothing spectacular . $LABEL$ Neutral
its just a fun place to go , not a five star [B-ASP]restaraunt[E-ASP] . $LABEL$ Neutral
i think the [B-ASP]pizza[E-ASP] is so overrated and was under cooked . $LABEL$ Negative
had no flavor and the [B-ASP]staff[E-ASP] is rude and not attentive . $LABEL$ Negative
i love this [B-ASP]place[E-ASP] $LABEL$ Positive
the [B-ASP]service[E-ASP] was quick and friendly . $LABEL$ Positive
i thought the [B-ASP]restaurant[E-ASP] was nice and clean . $LABEL$ Positive
i ordered the [B-ASP]vitello alla marsala[E-ASP] and i was pretty impressed . $LABEL$ Positive
the [B-ASP]veal[E-ASP] and the mushrooms were cooked perfectly . $LABEL$ Positive
the veal and the [B-ASP]mushrooms[E-ASP] were cooked perfectly . $LABEL$ Positive
the [B-ASP]potato balls[E-ASP] were not dry at all ... in fact it was buttery . $LABEL$ Positive
worst [B-ASP]place[E-ASP] on smith street in brooklyn $LABEL$ Negative
very immature [B-ASP]bartender[E-ASP] , did nt know how to make specific drinks , service was so slowwwww , the food was not fresh or warm , waitresses were busy flirting with men at the bar and were nt very attentive to all the customers . $LABEL$ Negative
very immature bartender , did nt know how to make specific drinks , [B-ASP]service[E-ASP] was so slowwwww , the food was not fresh or warm , waitresses were busy flirting with men at the bar and were nt very attentive to all the customers . $LABEL$ Negative
very immature bartender , did nt know how to make specific drinks , service was so slowwwww , the [B-ASP]food[E-ASP] was not fresh or warm , waitresses were busy flirting with men at the bar and were nt very attentive to all the customers . $LABEL$ Negative
very immature bartender , did nt know how to make specific drinks , service was so slowwwww , the food was not fresh or warm , [B-ASP]waitresses[E-ASP] were busy flirting with men at the bar and were nt very attentive to all the customers . $LABEL$ Negative
i would never recommend this [B-ASP]place[E-ASP] to anybody even for a casual dinner . $LABEL$ Negative
the [B-ASP]food[E-ASP] is always fresh ... $LABEL$ Positive
overpriced [B-ASP]japanese food[E-ASP] with mediocre service $LABEL$ Negative
overpriced japanese food with mediocre [B-ASP]service[E-ASP] $LABEL$ Neutral
[B-ASP]chicken teriyaki[E-ASP] had tomato or pimentos on top ? ? $LABEL$ Negative
[B-ASP]food[E-ASP] was luke warm . $LABEL$ Negative
the [B-ASP]waitress[E-ASP] was not attentive at all . $LABEL$ Negative
i was looking for banana tempura for [B-ASP]dessert[E-ASP] and they do nt have . $LABEL$ Negative
not because you are " [B-ASP]the four seasons[E-ASP] " ... – you are allowed to charge an arm and a leg for a romatic dinner . $LABEL$ Negative
the [B-ASP]food[E-ASP] was excellent as well as service , however , i left the four seasons very dissappointed . $LABEL$ Positive
the food was excellent as well as [B-ASP]service[E-ASP] , however , i left the four seasons very dissappointed . $LABEL$ Positive
the food was excellent as well as service , however , i left [B-ASP]the four seasons[E-ASP] very dissappointed . $LABEL$ Negative
i do not think [B-ASP]dinner[E-ASP] in manhattan should cost $ 400.00 where i am not swept off my feet . $LABEL$ Negative
[B-ASP]red dragon roll[E-ASP] - my favorite thing to eat , of any food group - hands down $LABEL$ Positive
just go to [B-ASP]yamato[E-ASP] and order the red dragon roll . $LABEL$ Positive
just go to yamato and order the [B-ASP]red dragon roll[E-ASP] . $LABEL$ Positive
the [B-ASP]seafood dynamite[E-ASP] is also otherworldly . $LABEL$ Positive
favorite [B-ASP]sushi[E-ASP] in nyc $LABEL$ Positive
an unpretentious [B-ASP]spot[E-ASP] in park slope , the sushi is consistently good , the service is pleasant , effective and unassuming . $LABEL$ Positive
an unpretentious spot in park slope , the [B-ASP]sushi[E-ASP] is consistently good , the service is pleasant , effective and unassuming . $LABEL$ Positive
an unpretentious spot in park slope , the sushi is consistently good , the [B-ASP]service[E-ASP] is pleasant , effective and unassuming . $LABEL$ Positive
in the summer months , the [B-ASP]back garden area[E-ASP] is really nice . $LABEL$ Positive
the [B-ASP]rolls[E-ASP] are creative and i have yet to find another sushi place that serves up more inventive yet delicious japanese food . $LABEL$ Positive
the rolls are creative and i have yet to find another sushi place that serves up more inventive yet delicious [B-ASP]japanese food[E-ASP] . $LABEL$ Positive
the [B-ASP]dancing , white river and millenium rolls[E-ASP] are musts . $LABEL$ Positive
i can eat here every day of the week really lol love this [B-ASP]place[E-ASP] ... ) $LABEL$ Positive
gross [B-ASP]food[E-ASP] – wow- $LABEL$ Negative
i ca n't remember the last time i had such gross [B-ASP]food[E-ASP] in new york . $LABEL$ Negative
my [B-ASP]quesadilla[E-ASP] tasted like it had been made by a three - year old with no sense of proportion or flavor . $LABEL$ Negative
and $ 11 for a plate of bland [B-ASP]guacamole[E-ASP] ? $LABEL$ Negative
do n't get me started on the [B-ASP]margaritas[E-ASP] , either . $LABEL$ Negative
oh , and i never write reviews -- i just was so moved by how bad this [B-ASP]place[E-ASP] was , i felt it was my duty to spread the word . $LABEL$ Negative
great [B-ASP]indian food[E-ASP] ! $LABEL$ Positive
the [B-ASP]food[E-ASP] was good , the place was clean and affordable . $LABEL$ Positive
the food was good , the [B-ASP]place[E-ASP] was clean and affordable . $LABEL$ Positive
i noticed alot of indian people eatting there which is a great sign for an [B-ASP]indian place[E-ASP] ! $LABEL$ Positive
this is one of my favorite spot , very relaxing the [B-ASP]food[E-ASP] is great all the times , celebrated my engagement and my wedding here , it was very well organized . $LABEL$ Positive
the [B-ASP]staff[E-ASP] is very good . $LABEL$ Positive
love their [B-ASP]drink menu[E-ASP] . $LABEL$ Positive
i highly recommend this beautiful [B-ASP]place[E-ASP] . $LABEL$ Positive
we were offered water for the table but were not told the [B-ASP]voss bottles of water[E-ASP] were $ 8 a piece . $LABEL$ Negative
[B-ASP]food[E-ASP] was ok . $LABEL$ Neutral
nice [B-ASP]view of river and nyc[E-ASP] . $LABEL$ Positive
great [B-ASP]survice[E-ASP] $LABEL$ Positive
a beautifully designed dreamy [B-ASP]egyptian restaurant[E-ASP] that gets sceney at night . $LABEL$ Positive
watch the talented belly dancers as you enjoy delicious [B-ASP]baba ganoush[E-ASP] that 's more lemony than smoky . $LABEL$ Positive
watch the talented [B-ASP]belly dancers[E-ASP] as you enjoy delicious baba ganoush that 's more lemony than smoky . $LABEL$ Positive
oh , and there 's [B-ASP]hookah[E-ASP] . $LABEL$ Positive
[B-ASP]raymond[E-ASP] the bartender rocks ! $LABEL$ Positive
[B-ASP]pacifico[E-ASP] is a great place to casually hang out . $LABEL$ Positive
the [B-ASP]drinks[E-ASP] are great , especially when made by raymond . $LABEL$ Positive
the drinks are great , especially when made by [B-ASP]raymond[E-ASP] . $LABEL$ Positive
the [B-ASP]omlette for brunch[E-ASP] is great ... $LABEL$ Positive
the [B-ASP]spinach[E-ASP] is fresh , definately not frozen ... $LABEL$ Positive
[B-ASP]quacamole[E-ASP] at pacifico is yummy , as are the wings with chimmichuri . $LABEL$ Positive
quacamole at pacifico is yummy , as are the [B-ASP]wings with chimmichuri[E-ASP] . $LABEL$ Positive
a weakness is the [B-ASP]chicken in the salads[E-ASP] . $LABEL$ Negative
also , i personally was n't a fan of the [B-ASP]portobello and asparagus mole[E-ASP] . $LABEL$ Negative
overall , decent [B-ASP]food[E-ASP] at a good price , with friendly people . $LABEL$ Neutral
overall , decent food at a good price , with friendly [B-ASP]people[E-ASP] . $LABEL$ Positive
best [B-ASP]indian restaurant[E-ASP] in the city $LABEL$ Positive
[B-ASP]decor[E-ASP] needs to be upgraded but the food is amazing ! $LABEL$ Negative
decor needs to be upgraded but the [B-ASP]food[E-ASP] is amazing ! $LABEL$ Positive
this small astoria souvlaki spot makes what many consider the best [B-ASP]gyros[E-ASP] in new york . $LABEL$ Positive
what really makes it shine is the [B-ASP]food[E-ASP] , which is aggressively seasoned with cyrpriot spices , and all made in - house ( even the gyro meat and sausages ) , and made of much higher quality ingredients that might otherwise be expected . $LABEL$ Positive
what really makes it shine is the food , which is aggressively seasoned with cyrpriot spices , and all made in - house ( even the [B-ASP]gyro meat[E-ASP] and sausages ) , and made of much higher quality ingredients that might otherwise be expected . $LABEL$ Positive
what really makes it shine is the food , which is aggressively seasoned with cyrpriot spices , and all made in - house ( even the gyro meat and [B-ASP]sausages[E-ASP] ) , and made of much higher quality ingredients that might otherwise be expected . $LABEL$ Positive
what really makes it shine is the food , which is aggressively seasoned with cyrpriot spices , and all made in - house ( even the gyro meat and sausages ) , and made of much higher quality [B-ASP]ingredients[E-ASP] that might otherwise be expected . $LABEL$ Positive
all the various [B-ASP]greek and cypriot dishes[E-ASP] are excellent , but the gyro is the reason to come -- if you do n't eat one your trip was wasted . $LABEL$ Positive
all the various greek and cypriot dishes are excellent , but the [B-ASP]gyro[E-ASP] is the reason to come -- if you do n't eat one your trip was wasted . $LABEL$ Positive
best [B-ASP]restaurant[E-ASP] in brooklyn $LABEL$ Positive
great [B-ASP]food[E-ASP] , amazing service , this place is a class act . $LABEL$ Positive
great food , amazing [B-ASP]service[E-ASP] , this place is a class act . $LABEL$ Positive
great food , amazing service , this [B-ASP]place[E-ASP] is a class act . $LABEL$ Positive
the [B-ASP]veal[E-ASP] was incredible last night . $LABEL$ Positive
this [B-ASP]place[E-ASP] is a must visit ! $LABEL$ Positive
most of the [B-ASP]booths[E-ASP] allow you to sit next to eachother without looking like ' that ' couple . $LABEL$ Positive
the [B-ASP]food[E-ASP] is all shared so we get to order together and eat together . $LABEL$ Positive
i 've enjoyed 99 % of the [B-ASP]dishes[E-ASP] we 've ordered with the only exceptions being the occasional too - authentic - for - me dish ( i 'm a daring eater but not that daring ) . $LABEL$ Positive
i 've enjoyed 99 % of the [B-ASP]dish[E-ASP] es we 've ordered with the only exceptions being the occasional too - authentic - for - me dish ( i 'm a daring eater but not that daring ) . $LABEL$ Negative
my daughter 's wedding reception at [B-ASP]water 's edge[E-ASP] received the highest compliments from our guests . $LABEL$ Positive
everyone raved about the [B-ASP]atmosphere[E-ASP] ( elegant rooms and absolutely incomparable views ) and the fabulous food ! $LABEL$ Positive
everyone raved about the atmosphere ( elegant [B-ASP]rooms[E-ASP] and absolutely incomparable views ) and the fabulous food ! $LABEL$ Positive
everyone raved about the atmosphere ( elegant rooms and absolutely incomparable [B-ASP]views[E-ASP] ) and the fabulous food ! $LABEL$ Positive
everyone raved about the atmosphere ( elegant rooms and absolutely incomparable views ) and the fabulous [B-ASP]food[E-ASP] ! $LABEL$ Positive
[B-ASP]service[E-ASP] was wonderful ; $LABEL$ Positive
[B-ASP]paul[E-ASP] , the maitre d ' , was totally professional and always on top of things . $LABEL$ Positive
thank you everyone at [B-ASP]water 's edge[E-ASP] . $LABEL$ Positive
[B-ASP]service[E-ASP] ok but unfriendly , filthy bathroom . $LABEL$ Negative
service ok but unfriendly , filthy [B-ASP]bathroom[E-ASP] . $LABEL$ Negative
the high prices you 're going to pay is for the [B-ASP]view[E-ASP] not for the food . $LABEL$ Neutral
the high prices you 're going to pay is for the view not for the [B-ASP]food[E-ASP] . $LABEL$ Negative
the [B-ASP]bar drinks[E-ASP] were eh , ok to say the least . $LABEL$ Negative
the [B-ASP]stuff tilapia[E-ASP] was horrid ... tasted like cardboard . $LABEL$ Negative
we thought the [B-ASP]dessert[E-ASP] would be better , wrong ! $LABEL$ Negative
oh speaking of bathroom , the [B-ASP]mens bathroom[E-ASP] was disgusting . $LABEL$ Negative
the [B-ASP]wine list[E-ASP] was extensive - though the staff did not seem knowledgeable about wine pairings . $LABEL$ Positive
the wine list was extensive - though the [B-ASP]staff[E-ASP] did not seem knowledgeable about wine pairings . $LABEL$ Negative
the [B-ASP]bread[E-ASP] we received was horrible - rock hard and cold - and the " free " appetizer of olives was disappointing . $LABEL$ Negative
the bread we received was horrible - rock hard and cold - and the " free " [B-ASP]appetizer of olives[E-ASP] was disappointing . $LABEL$ Negative
however , our [B-ASP]main course[E-ASP] was wonderful . $LABEL$ Positive
i had [B-ASP]fish[E-ASP] and my husband had the filet - both of which exceeded our expectations . $LABEL$ Positive
i had fish and my husband had the [B-ASP]filet[E-ASP] - both of which exceeded our expectations . $LABEL$ Positive
the dessert ( we had a [B-ASP]pear torte[E-ASP] ) was good - but , once again , the staff was unable to provide appropriate drink suggestions . $LABEL$ Positive
the dessert ( we had a pear torte ) was good - but , once again , the [B-ASP]staff[E-ASP] was unable to provide appropriate drink suggestions . $LABEL$ Negative
when we inquired about ports - the [B-ASP]waitress[E-ASP] listed off several but did not know taste variations or cost . $LABEL$ Negative
not what i would expect for the price and prestige of this [B-ASP]location[E-ASP] . $LABEL$ Neutral
all in all , i would return - as it was a beautiful [B-ASP]restaurant[E-ASP] - but i hope the staff pays more attention to the little details in the future . $LABEL$ Positive
all in all , i would return - as it was a beautiful restaurant - but i hope the [B-ASP]staff[E-ASP] pays more attention to the little details in the future . $LABEL$ Negative
short and sweet – [B-ASP]seating[E-ASP] is great : it 's romantic , cozy and private . $LABEL$ Positive
the [B-ASP]boths[E-ASP] are not as small as some of the reviews make them out to look they 're perfect for 2 people . $LABEL$ Positive
the [B-ASP]service[E-ASP] was extremely fast and attentive(thanks to the service button on your table ) but i barely understood 1 word when the waiter took our order . $LABEL$ Positive
the service was extremely fast and attentive(thanks to the [B-ASP]service button[E-ASP] on your table ) but i barely understood 1 word when the waiter took our order . $LABEL$ Positive
the service was extremely fast and attentive(thanks to the service button on your table ) but i barely understood 1 word when the [B-ASP]waiter[E-ASP] took our order . $LABEL$ Negative
the [B-ASP]food[E-ASP] was ok and fair nothing to go crazy . $LABEL$ Neutral
over all the [B-ASP]looks[E-ASP] of the place exceeds the actual meals . $LABEL$ Positive
over all the looks of the place exceeds the actual [B-ASP]meals[E-ASP] . $LABEL$ Negative
so what you really end up paying for is the [B-ASP]restaurant[E-ASP] not the food . $LABEL$ Negative
so what you really end up paying for is the restaurant not the [B-ASP]food[E-ASP] . $LABEL$ Negative
subtle [B-ASP]food[E-ASP] and service $LABEL$ Positive
subtle food and [B-ASP]service[E-ASP] $LABEL$ Positive
noodle pudding is exactly the type of [B-ASP]service[E-ASP] and food i enjoy . $LABEL$ Positive
noodle pudding is exactly the type of service and [B-ASP]food[E-ASP] i enjoy . $LABEL$ Positive
servers are all different , [B-ASP]greg[E-ASP] is my favorite . $LABEL$ Positive
sometimes tables do n't understand his sense of humor but it 's refreshing to have a [B-ASP]server[E-ASP] who has personality , professionalism , and respects the privacy of your dinner . $LABEL$ Positive
this is the first place i 've been that a [B-ASP]runner[E-ASP] remembers my order ... hope he likes his job because i have half a mind to steal him for my restaurant . $LABEL$ Positive
prices are fair across the board for both [B-ASP]food[E-ASP] and bev . $LABEL$ Positive
prices are fair across the board for both food and [B-ASP]bev[E-ASP] . $LABEL$ Positive
i go out to eat and like my courses , [B-ASP]servers[E-ASP] are patient and never rush courses or force another drink . $LABEL$ Positive
amazing fresh [B-ASP]dogs[E-ASP] but best of all endless toppings ! ! ! $LABEL$ Positive
amazing fresh dogs but best of all endless [B-ASP]toppings[E-ASP] ! ! ! $LABEL$ Positive
this place had all the [B-ASP]trimmings[E-ASP] and i mean all . $LABEL$ Positive
amazing fun for hot dog lovers of all ages please do yourself a favor and check this [B-ASP]place[E-ASP] out ! ! ! ! $LABEL$ Positive
amazing fun for [B-ASP]hot dog[E-ASP] lovers of all ages please do yourself a favor and check this place out ! ! ! ! $LABEL$ Positive
stepping into [B-ASP]casa la femme[E-ASP] last night was a true experience unlike any other in new york ! $LABEL$ Positive
highly impressed from the [B-ASP]decor[E-ASP] to the food to the hospitality to the great night i had ! $LABEL$ Positive
highly impressed from the decor to the [B-ASP]food[E-ASP] to the hospitality to the great night i had ! $LABEL$ Positive
the have a great [B-ASP]cocktail with citrus vodka and lemon and lime juice and mint leaves[E-ASP] that is to die for ! $LABEL$ Positive
[B-ASP]food[E-ASP] took some time to prepare , all worth waiting for . $LABEL$ Positive
we were drawn into the [B-ASP]belly dancing show[E-ASP] that captivated the crowd . $LABEL$ Positive
i never write on these sites but this [B-ASP]restaurant[E-ASP] is def worth commending ! $LABEL$ Positive
maggot in the [B-ASP]food[E-ASP] ! $LABEL$ Negative
the [B-ASP]menu[E-ASP] looked great , and the waiter was very nice , but when the food came , it was average . $LABEL$ Positive
the menu looked great , and the [B-ASP]waiter[E-ASP] was very nice , but when the food came , it was average . $LABEL$ Positive
the menu looked great , and the waiter was very nice , but when the [B-ASP]food[E-ASP] came , it was average . $LABEL$ Neutral
nevertheless , i finished my plate , and that 's when i found a maggot in [B-ASP]mushroom sauce[E-ASP] at the bottom . $LABEL$ Negative
i showed it to the [B-ASP]manager[E-ASP] , and he smilingly apologized and brought us two free desserts ( but did not ask us what we wanted and so brought the last two desserts we would have asked for ) . $LABEL$ Positive
the [B-ASP]manager[E-ASP] finally said he would comp the two glasses of wine ( which cost less than the food ) , and made it seem like a big concession . $LABEL$ Negative
i have worked in restaurants and cook a lot , and there is no way a maggot should be able to get into well prepared [B-ASP]food[E-ASP] . $LABEL$ Negative
for a [B-ASP]restaurant[E-ASP] with such a good reputation and that is usually so packed , there was no reason for such a lack of intelligent customer service . $LABEL$ Positive
for a restaurant with such a good reputation and that is usually so packed , there was no reason for such a lack of intelligent [B-ASP]customer service[E-ASP] . $LABEL$ Negative
i got hair in my [B-ASP]food[E-ASP] 2 times of then ! $LABEL$ Negative
great [B-ASP]place[E-ASP] , great value . $LABEL$ Positive
the [B-ASP]food[E-ASP] is flavorful , plentiful and reasonably priced . $LABEL$ Positive
the [B-ASP]atmosphere[E-ASP] is relaxed and casual . $LABEL$ Positive
it 's a great [B-ASP]place[E-ASP] to order from or sit - in . $LABEL$ Positive
[B-ASP]sushi[E-ASP] experience was unbelievable with my fiance . $LABEL$ Positive
good creative [B-ASP]rolls[E-ASP] ! $LABEL$ Positive
[B-ASP]yamato[E-ASP] is an excellent place to go if you re not into sashimi , or if you have friends who does nt like sushi much . $LABEL$ Positive
they have great [B-ASP]rolls[E-ASP] , the triple color and norwegetan rolls , are awesome and filling . $LABEL$ Positive
they have great rolls , the [B-ASP]triple color and norwegetan rolls[E-ASP] , are awesome and filling . $LABEL$ Positive
one special roll and one regular roll is enough to fill you up , but save room for [B-ASP]dessert[E-ASP] ! $LABEL$ Positive
one [B-ASP]special roll[E-ASP] and one regular roll is enough to fill you up , but save room for dessert ! $LABEL$ Positive
one special roll and one [B-ASP]regular roll[E-ASP] is enough to fill you up , but save room for dessert ! $LABEL$ Positive
they have a delicious [B-ASP]banana chocolate dessert[E-ASP] , as well as a great green tea tempura . $LABEL$ Positive
they have a delicious banana chocolate dessert , as well as a great [B-ASP]green tea tempura[E-ASP] . $LABEL$ Positive
the [B-ASP]appetizers[E-ASP] are also delicious ! $LABEL$ Positive
amazing [B-ASP]food[E-ASP] . $LABEL$ Positive
mazing [B-ASP]interior[E-ASP] . $LABEL$ Negative
great [B-ASP]food[E-ASP] ! $LABEL$ Positive
i 've had my fair share of [B-ASP]modern japanese[E-ASP] and this spot delivers . $LABEL$ Positive
the [B-ASP]atmosphere[E-ASP] was pretty nice but had a bit lacking , which it tries to make up for with a crazy scheme of mirrors . $LABEL$ Negative
the atmosphere was pretty nice but had a bit lacking , which it tries to make up for with a crazy [B-ASP]scheme of mirrors[E-ASP] . $LABEL$ Negative
despite the confusing mirrors this will likely be my go - to for [B-ASP]modern japanese food[E-ASP] for the foreseeable future . $LABEL$ Positive
despite the confusing [B-ASP]mirrors[E-ASP] this will likely be my go - to for modern japanese food for the foreseeable future . $LABEL$ Negative
[B-ASP]indo chinese food[E-ASP] , pretty good ... $LABEL$ Positive
not a very fancy [B-ASP]place[E-ASP] but very good chinese style indian food . $LABEL$ Neutral
not a very fancy place but very good [B-ASP]chinese style indian food[E-ASP] . $LABEL$ Positive
the [B-ASP]chicken lollipop[E-ASP] is my favorite , most of the dishes ( i have to agree with a previous reviewer ) are quite oily and very spicy , espeically the chilli chicken . $LABEL$ Positive
the chicken lollipop is my favorite , most of the [B-ASP]dishes[E-ASP] ( i have to agree with a previous reviewer ) are quite oily and very spicy , espeically the chilli chicken . $LABEL$ Negative
the chicken lollipop is my favorite , most of the dishes ( i have to agree with a previous reviewer ) are quite oily and very spicy , espeically the [B-ASP]chilli chicken[E-ASP] . $LABEL$ Negative
my mom originally introduced me to this place , but even she ( being indian ) feels the [B-ASP]food[E-ASP] can be somewhat over the top spicy and far too oily . $LABEL$ Negative
i was speechless by the horrible [B-ASP]food[E-ASP] . $LABEL$ Negative
i attended a holiday dinner at the restaurant , and the [B-ASP]food[E-ASP] was majorly disappointing . $LABEL$ Negative
rather than preparing vegetarian dish , the [B-ASP]chef[E-ASP] presented me with a plate of steamed vegetables ( minus sauce , seasoning , or any form or aesthetic presentation ) . $LABEL$ Negative
rather than preparing [B-ASP]vegetarian dish[E-ASP] , the chef presented me with a plate of steamed vegetables ( minus sauce , seasoning , or any form or aesthetic presentation ) . $LABEL$ Negative
this [B-ASP]place[E-ASP] survives on reputation alone . $LABEL$ Negative
this is the most wonderful [B-ASP]restaurant[E-ASP] in all of new york city , not just brooklyn ... $LABEL$ Positive
for 7 years they have put out the most tasty , most delicious [B-ASP]food[E-ASP] and kept it that way ... $LABEL$ Positive
never swaying , never a bad [B-ASP]meal[E-ASP] , never bad service ... $LABEL$ Positive
never swaying , never a bad meal , never bad [B-ASP]service[E-ASP] ... $LABEL$ Positive
great [B-ASP]food[E-ASP] , great wine list , great service in a great neighborhood ... $LABEL$ Positive
great food , great [B-ASP]wine list[E-ASP] , great service in a great neighborhood ... $LABEL$ Positive
great food , great wine list , great [B-ASP]service[E-ASP] in a great neighborhood ... $LABEL$ Positive
great food , great wine list , great service in a great [B-ASP]neighborhood[E-ASP] ... $LABEL$ Positive
[B-ASP]patsy 's pizza[E-ASP] = true love $LABEL$ Positive
hands down the best [B-ASP]pizza[E-ASP] on the planet . $LABEL$ Positive
great [B-ASP]hot dogs[E-ASP] .. $LABEL$ Positive
the [B-ASP]hot dogs[E-ASP] were juicy and tender inside and had plenty of crunch and snap on the outside . $LABEL$ Positive
great [B-ASP]toppings[E-ASP] definitely a place you need to check out for late night munchies or a mid day boost ! $LABEL$ Positive
great toppings definitely a [B-ASP]place[E-ASP] you need to check out for late night munchies or a mid day boost ! $LABEL$ Positive
for me [B-ASP]dishes[E-ASP] a little oily , but overall dining experience good . $LABEL$ Negative
helpful [B-ASP]service[E-ASP] and average price per dish $ 10 . $LABEL$ Positive
helpful service and average price per [B-ASP]dish[E-ASP] $ 10 . $LABEL$ Neutral
the only thing that strikes you is the [B-ASP]decor[E-ASP] ? ( not very pleasant ) . $LABEL$ Negative
great [B-ASP]food[E-ASP] $LABEL$ Positive
this place has great [B-ASP]indian chinese food[E-ASP] . $LABEL$ Positive
be prepared to wait , because the [B-ASP]place[E-ASP] is pretty tiny . $LABEL$ Negative
even though the [B-ASP]place[E-ASP] is not beautiful , the food speaks for itself . $LABEL$ Negative
even though the place is not beautiful , the [B-ASP]food[E-ASP] speaks for itself . $LABEL$ Positive
best [B-ASP]indian chinese[E-ASP] in the city , by far ! $LABEL$ Positive
i came across [B-ASP]village underground[E-ASP] by accident , now i go there all the time . $LABEL$ Positive
the [B-ASP]martinis[E-ASP] are amazing and very fairly priced . $LABEL$ Positive
the [B-ASP]service[E-ASP] is amazing , i 've had different waiters and they were all nice , which is a rare thing in nyc . $LABEL$ Positive
the service is amazing , i 've had different [B-ASP]waiters[E-ASP] and they were all nice , which is a rare thing in nyc . $LABEL$ Positive
the [B-ASP]dj[E-ASP] is awesome , i have been there for my birthday and a bunch of other times with friends and i keep going back . $LABEL$ Positive
everything on the [B-ASP]menu[E-ASP] is great . $LABEL$ Positive
this [B-ASP]establishment[E-ASP] is the real deal . $LABEL$ Positive
wish ny had more of these kind of places : intimate , superb [B-ASP]food[E-ASP] , homey , top notch all the way around , certainly worth the wait . $LABEL$ Positive
but $ 500 for a [B-ASP]dinner for two[E-ASP] that did n't include wine ? $LABEL$ Negative
look , the [B-ASP]appetizers[E-ASP] were really good . $LABEL$ Positive
the [B-ASP]entree[E-ASP] was also very good . $LABEL$ Positive
what you are paying for is the [B-ASP]environment[E-ASP] and the name . $LABEL$ Neutral
yes , the [B-ASP]place[E-ASP] is classy and beautiful , but they most certainly target the uber whealthy not the common joe that wants to go all out every once in a while . $LABEL$ Positive
[B-ASP]vanison[E-ASP] was good but not amazing . $LABEL$ Neutral
[B-ASP]bison[E-ASP] was quite excellent however . $LABEL$ Positive
[B-ASP]dessert[E-ASP] : pure disaster . $LABEL$ Negative
i read reviews that called the [B-ASP]restaurant[E-ASP] too expensive and i thought to myself , but may be it is worth it . $LABEL$ Negative
[B-ASP]the four seasons[E-ASP] has history and it is a sort of landmark of new york city restaurants , but trust me , they will charge you through the nose just so that you can say " i 've been to the four seasons restaurant " . $LABEL$ Neutral
all in all , the [B-ASP]food[E-ASP] was great ( except for the dessserts ) . $LABEL$ Positive
all in all , the food was great ( except for the [B-ASP]dessserts[E-ASP] ) . $LABEL$ Negative
the [B-ASP]environment[E-ASP] is very upscale and you will see a lot of rich guys with trophy wives or just highly paid escorts . $LABEL$ Neutral
if you are going for the [B-ASP]food[E-ASP] , it will not be worth it . $LABEL$ Negative
you would think they would make up for it with [B-ASP]service[E-ASP] , sadly , no . $LABEL$ Negative
[B-ASP]service[E-ASP] was just ok , it is not what you 'd expect for $ 500 . $LABEL$ Negative
i agree that dining at [B-ASP]casa la femme[E-ASP] is like no other dining experience ! $LABEL$ Negative
i literally just got back home after visiting [B-ASP]casa la femme[E-ASP] and was so offended by my visit felt it necessary to try and warn other diners who value their money and time . $LABEL$ Negative
we did arrive late for our reservation so i can not complain too much about the [B-ASP]wait[E-ASP] for a table . $LABEL$ Neutral
the [B-ASP]place[E-ASP] is beautiful ! $LABEL$ Positive
the [B-ASP]hostess[E-ASP] was very pleasant . $LABEL$ Positive
however , our $ 14 [B-ASP]drinks[E-ASP] were were horrible ! $LABEL$ Negative
we also asked for hooka six times and the [B-ASP]waiter[E-ASP] kept telling us one minute and never returning with the hooka . $LABEL$ Negative
after the 4th time i asked again and the [B-ASP]waiter[E-ASP] than said after our dinner . $LABEL$ Negative
we asked for sides which the [B-ASP]waiter[E-ASP] than admitted that he forgot to put in that part of our order . $LABEL$ Negative
my [B-ASP]chicken[E-ASP] was inedible as there were so many fatty lumps which i had to keep spitting out into my napkin . $LABEL$ Negative
i would not expect this for a $ 55 [B-ASP]dinner[E-ASP] . $LABEL$ Negative
by the time we left our wallets were empy and so were our stomachs and we missed the show we were supposed to see following our dinner , which would have been acceptable if we got to enjoy the experience of good [B-ASP]food[E-ASP] and belly dancers ! $LABEL$ Negative
if it seemed possible to do so while there i would have fought my bill since my dinner portion of my [B-ASP]meal[E-ASP] was inedible ! $LABEL$ Negative
i have never left a [B-ASP]restaurant[E-ASP] feeling as if i was abused , and wasted my hard earned money . $LABEL$ Negative
the [B-ASP]menu[E-ASP] is fairly simple without much descriptions . $LABEL$ Neutral
there was no tap [B-ASP]beer[E-ASP] that evening , which was a disappointment . $LABEL$ Negative
not much of a [B-ASP]selection of bottled beer[E-ASP] either , we went with brahma . $LABEL$ Negative
the appetizers we ordered were served quickly - an order of [B-ASP]fried oysters and clams[E-ASP] were delicious but a tiny portion ( maybe 3 of each ) . $LABEL$ Positive
the [B-ASP]lobster knuckles[E-ASP] ( special of the day ) were ok , but pretty tasteless . $LABEL$ Neutral
i believe there were 2 shrimp in the [B-ASP]" salt encrusted shrimp " appetizer[E-ASP] . $LABEL$ Negative
i had the [B-ASP]thai style fried sea bass[E-ASP] ... which was very good . $LABEL$ Positive
everyone seemed generally happy with their [B-ASP]food[E-ASP] , except my brother who had the grilled mahi mahi , seemingly drenched in grapfruit juice ! $LABEL$ Positive
everyone seemed generally happy with their food , except my brother who had the [B-ASP]grilled mahi mahi[E-ASP] , seemingly drenched in grapfruit juice ! $LABEL$ Negative
i heard the [B-ASP]lobster roll[E-ASP] was excellent . $LABEL$ Positive
all in all the [B-ASP]food[E-ASP] was good - a little on the expensive side , but fresh . $LABEL$ Positive
[B-ASP]service[E-ASP] not the friendliest to our " large party " ! $LABEL$ Negative
great [B-ASP]indian food[E-ASP] $LABEL$ Positive
[B-ASP]food[E-ASP] was amazing - i love indian food and eat it quite regularly , but i can say this is one of the best i 've had . $LABEL$ Positive
very " normal [B-ASP]indian food[E-ASP] " , but done really well . $LABEL$ Neutral
i have it a 4 instead of 5 because of the price ( just chicken tikka masala - no bread of rice - is $ 25 ) , which i would expect at a upscale indian restaurant but this [B-ASP]place[E-ASP] does n't have an upscale feel . $LABEL$ Positive
i have it a 4 instead of 5 because of the price ( just [B-ASP]chicken tikka masala[E-ASP] - no bread of rice - is $ 25 ) , which i would expect at a upscale indian restaurant but this place does n't have an upscale feel . $LABEL$ Negative
i have it a 4 instead of 5 because of the price ( just chicken tikka masala - no bread of rice - is $ 25 ) , which i would expect at a upscale indian restaurant but this place does n't have an upscale [B-ASP]feel[E-ASP] . $LABEL$ Negative
also , [B-ASP]waiters[E-ASP] try to push more food on you , like suggest things as if they are complimentary when they actually cost $ . $LABEL$ Negative
but if you 're prepared to spend some $ and remember to ask if something they offer is complimentary , then this is the place to go for [B-ASP]indian food[E-ASP] $LABEL$ Positive
but if you 're prepared to spend some $ and remember to ask if something they offer is complimentary , then this is the [B-ASP]place[E-ASP] to go for indian food $LABEL$ Negative
[B-ASP]bukhara grill[E-ASP] , the tagline says it all .. " indian spice rave " $LABEL$ Positive
the [B-ASP]lunch buffet[E-ASP] is expensive but is deff worth it . $LABEL$ Negative
we have gone for dinner only a few times but the same great quality and [B-ASP]service[E-ASP] is given . $LABEL$ Positive
we have gone for [B-ASP]dinner[E-ASP] only a few times but the same great quality and service is given . $LABEL$ Positive
[B-ASP]bukhara[E-ASP] is on my top 5 indian places in nyc $LABEL$ Positive
i have never been so disgusted by both [B-ASP]food[E-ASP] an service . $LABEL$ Negative
i have never been so disgusted by both food an [B-ASP]service[E-ASP] . $LABEL$ Negative
however , once i received my predictably mediocre order of what dokebi thinks passes as korean fair , ( sometimes you have to settle when it 's your only option ) , i got through about half my [B-ASP]kimchee[E-ASP] before i found a piece of random lettuce accompanied by a far more disgusting , slimy , clearly bad piece of fish skin . $LABEL$ Negative
however , once i received my predictably mediocre order of what dokebi thinks passes as [B-ASP]korean fair[E-ASP] , ( sometimes you have to settle when it 's your only option ) , i got through about half my kimchee before i found a piece of random lettuce accompanied by a far more disgusting , slimy , clearly bad piece of fish skin . $LABEL$ Negative
my main concern was the sanity of the [B-ASP]food[E-ASP] that was being sent out to myself and others , but i would be lying is i said that as someone who has worked in restaurants since the age of fifteen i was expecting at least a minimal effort on the part of the restaurant to amend the situation . $LABEL$ Negative
my girlfriend , being slightly more aggressive , and having been equally disgusted causing her to throw out the remainder of her barely eaten [B-ASP]meal[E-ASP] , called back only to be informed that i was probably wrong and that it was most likely an oyster , and that we were also blacklisted from their restaurant . $LABEL$ Negative
it was n't as if this [B-ASP]restaurant[E-ASP] had any major bragging points before hand , but now it 's simply repulsive . $LABEL$ Negative
gorgeous [B-ASP]place[E-ASP] ideal for a romantic dinner $LABEL$ Positive
i book a gorgeous white organza tent which included a [B-ASP]four course prix fix menu[E-ASP] which we enjoyed a lot . $LABEL$ Positive
i book a gorgeous [B-ASP]white organza tent[E-ASP] which included a four course prix fix menu which we enjoyed a lot . $LABEL$ Positive
the [B-ASP]service[E-ASP] was spectacular as the waiter knew everything about the menu and his recommendations were amazing ! $LABEL$ Positive
the service was spectacular as the [B-ASP]waiter[E-ASP] knew everything about the menu and his recommendations were amazing ! $LABEL$ Positive
i completely recommend [B-ASP]casa la femme[E-ASP] for any special occasion and to really impress your date . $LABEL$ Positive
the [B-ASP]bibimbap[E-ASP] was average , but the stone bowl was n't even close to sizzling . $LABEL$ Neutral
the bibimbap was average , but the [B-ASP]stone bowl[E-ASP] was n't even close to sizzling . $LABEL$ Negative
too bad i had paid an extra $ 2 for the [B-ASP]stone bowl[E-ASP] . $LABEL$ Negative
the [B-ASP]nakgi - bokum[E-ASP] was horrible . $LABEL$ Negative
easily the worst [B-ASP]stir - fried squid[E-ASP] i 've ever tasted . $LABEL$ Negative
the [B-ASP]sauce[E-ASP] tasted more like chinese fast food than decent korean . $LABEL$ Negative
the [B-ASP]side dishes[E-ASP] were passable , and i did get a refill upon request . $LABEL$ Neutral
the real problem i had with this place was the complete lack of [B-ASP]service[E-ASP] . $LABEL$ Negative
my wife had barely touched that mess of a [B-ASP]dish[E-ASP] . $LABEL$ Negative
the wife had the [B-ASP]risotto[E-ASP] which was amazing . $LABEL$ Positive
the [B-ASP]farro salad[E-ASP] and the mashed yukon potatoes were also extremely tasty . $LABEL$ Positive
the farro salad and the [B-ASP]mashed yukon potatoes[E-ASP] were also extremely tasty . $LABEL$ Positive
i love margherita pizza – i looove [B-ASP]east village pizza[E-ASP] $LABEL$ Positive
i love [B-ASP]margherita pizza[E-ASP]i looove east village pizza $LABEL$ Positive
love this [B-ASP]place[E-ASP] , every time we are in the city this is one of the places we always go . $LABEL$ Positive
a quintessential [B-ASP]slice of nyc pizza[E-ASP] . $LABEL$ Neutral
the [B-ASP]crust[E-ASP] has a great bite and a good chew , the sauce is light with a nice acidity to it , the salt from the cheese is great , really heightens the flavor of all the other components . $LABEL$ Positive
the crust has a great bite and a good chew , the [B-ASP]sauce[E-ASP] is light with a nice acidity to it , the salt from the cheese is great , really heightens the flavor of all the other components . $LABEL$ Positive
the crust has a great bite and a good chew , the sauce is light with a nice acidity to it , the salt from the [B-ASP]cheese[E-ASP] is great , really heightens the flavor of all the other components . $LABEL$ Positive
personally i like the [B-ASP]margherita pizza[E-ASP] better , but they are all good . $LABEL$ Positive
possibly the most romantic [B-ASP]restaurant[E-ASP] in the city $LABEL$ Positive
this is undoubtedly my favorite [B-ASP]modern japanese brasserie[E-ASP] ( that do n’t serve sushi ) , and in my opinion , one of the most romantic restaurants in the city ! $LABEL$ Positive
not only is it an adventure getting to this somewhat hidden [B-ASP]spot[E-ASP] , once you enter the unmarked wooden doors , the zen and intimate décor will make you feel like you ’re no longer in the city . $LABEL$ Neutral
not only is it an adventure getting to this somewhat hidden spot , once you enter the [B-ASP]unmarked wooden doors[E-ASP] , the zen and intimate décor will make you feel like you ’re no longer in the city . $LABEL$ Positive
not only is it an adventure getting to this somewhat hidden spot , once you enter the unmarked wooden doors , the zen and intimate [B-ASP]décor[E-ASP] will make you feel like you ’re no longer in the city . $LABEL$ Positive
if you ’re planning to come here , make sure that your date is someone whom you really like since you ’ll be ushered to [B-ASP]private booths[E-ASP] where there will be no people or food watching ( choose the ones on the ground level that have glass ceilings so you may see the stars in the sky ! ) . $LABEL$ Positive
if you ’re planning to come here , make sure that your date is someone whom you really like since you ’ll be ushered to private booths where there will be no people or food watching ( choose the ones on the ground level that have [B-ASP]glass ceilings[E-ASP] so you may see the stars in the sky ! ) . $LABEL$ Positive
it ’s just you and your date and an occasional cute ‘ excuse me’ before the [B-ASP]waiter[E-ASP] opens the little curtain to your booth ! $LABEL$ Positive
my party had the [B-ASP]bbe $ 29 fixe prix menu[E-ASP] , which was such a wonderful deal since it also came with a flight of sake ! $LABEL$ Positive
we started off with a delightful [B-ASP]sashimi amuse bouche[E-ASP] . $LABEL$ Positive
i picked the [B-ASP]grilled black cod[E-ASP] as my entree , which i absolutely devoured while someone commented that the grilled salmon dish was better . $LABEL$ Positive
i picked the grilled black cod as my entree , which i absolutely devoured while someone commented that the [B-ASP]grilled salmon dish[E-ASP] was better . $LABEL$ Positive
the [B-ASP]entrees[E-ASP] were served with miso soup and rice . $LABEL$ Neutral
the [B-ASP]sake ’s[E-ASP] complimented the courses very well and is successfully easing me into the sake world . $LABEL$ Positive
for desserts , we tried the [B-ASP]frozen black sesame mousse[E-ASP] ( interesting but not extraordinary ) and matcha ( powdered green tea ) and blueberry cheesecake , which was phenomenal . $LABEL$ Neutral
for desserts , we tried the frozen black sesame mousse ( interesting but not extraordinary ) and [B-ASP]matcha ( powdered green tea ) and blueberry cheesecake[E-ASP] , which was phenomenal . $LABEL$ Positive
maybe it was the great company ( i had friends visiting from philly – yes , it was not a date this time ) or the super reasonable price point , but i just ca n’t say enough good things about this [B-ASP]brasserie[E-ASP] . $LABEL$ Positive
i do n’t usually visit the same establishment more than once , what more twice , but i ’ll come to [B-ASP]zenkichi[E-ASP] anytime for a quiet , unhurried and memorable dinner . $LABEL$ Positive
the [B-ASP]service[E-ASP] leaves much to be desired , from feeling like you are rushed the place your order , to being ignored the rest of the night . $LABEL$ Negative
they are extremely rude , not even apologizing for the horrible [B-ASP]service[E-ASP] we got and handing us a bill well over $ 500 for some drinks adn their pita bread ! $LABEL$ Negative
they are extremely rude , not even apologizing for the horrible service we got and handing us a bill well over $ 500 for some [B-ASP]drinks[E-ASP] adn their pita bread ! $LABEL$ Negative
they are extremely rude , not even apologizing for the horrible service we got and handing us a bill well over $ 500 for some drinks adn their [B-ASP]pita bread[E-ASP] ! $LABEL$ Negative
great [B-ASP]shabu shabu[E-ASP] $LABEL$ Positive
i tried a couple other [B-ASP]dishes[E-ASP] but was n't too impressed . $LABEL$ Neutral
but for the [B-ASP]shabu shabu[E-ASP] , you wo n't find much better in ny . $LABEL$ Positive
the [B-ASP]meat[E-ASP] is fresh , the sauces are great , you get kimchi and a salad free with your meal and service is good too . $LABEL$ Positive
the meat is fresh , the [B-ASP]sauces[E-ASP] are great , you get kimchi and a salad free with your meal and service is good too . $LABEL$ Positive
the meat is fresh , the sauces are great , you get kimchi and a salad free with your meal and [B-ASP]service[E-ASP] is good too . $LABEL$ Positive
the meat is fresh , the sauces are great , you get kimchi and a salad free with your [B-ASP]meal[E-ASP] and service is good too . $LABEL$ Positive
the meat is fresh , the sauces are great , you get [B-ASP]kimchi[E-ASP] and a salad free with your meal and service is good too . $LABEL$ Positive
the meat is fresh , the sauces are great , you get kimchi and a [B-ASP]salad[E-ASP] free with your meal and service is good too . $LABEL$ Positive
dokebi gives williamsburg the right one - two punch of classic [B-ASP]korean food[E-ASP] and fusion twists like pork belly tacos . $LABEL$ Positive
dokebi gives williamsburg the right one - two punch of classic korean food and [B-ASP]fusion twists[E-ASP] like pork belly tacos . $LABEL$ Positive
dokebi gives williamsburg the right one - two punch of classic korean food and fusion twists like [B-ASP]pork belly tacos[E-ASP] . $LABEL$ Positive
the [B-ASP]hot dogs[E-ASP] are good , yes , but the reason to get over here is the fantastic pork croquette sandwich , perfect on its supermarket squishy bun . $LABEL$ Positive
the hot dogs are good , yes , but the reason to get over here is the fantastic [B-ASP]pork croquette sandwich[E-ASP] , perfect on its supermarket squishy bun . $LABEL$ Positive
the hot dogs are good , yes , but the reason to get over here is the fantastic pork croquette sandwich , perfect on its supermarket squishy [B-ASP]bun[E-ASP] . $LABEL$ Positive
restaurant with a [B-ASP]view[E-ASP] $LABEL$ Neutral
the [B-ASP]food[E-ASP] tasted very good . $LABEL$ Positive
the [B-ASP]family seafood entree[E-ASP] was very good . $LABEL$ Positive
the [B-ASP]main entree[E-ASP] was also very good . $LABEL$ Positive
price is high but the [B-ASP]food[E-ASP] is good , so i would come back again . $LABEL$ Positive
this [B-ASP]place[E-ASP] does n't make any sense $LABEL$ Negative
this place has totally weird [B-ASP]decor[E-ASP] , stairs going up with mirrored walls - i am surprised how no one yet broke their head or fall off the stairs - mirrored walls make you dizzy and delusional ... $LABEL$ Negative
this place has totally weird decor , stairs going up with [B-ASP]mirrored walls[E-ASP] - i am surprised how no one yet broke their head or fall off the stairs - mirrored walls make you dizzy and delusional ... $LABEL$ Negative
this [B-ASP]place[E-ASP] is not inviting and the food is totally weird . $LABEL$ Negative
this place is not inviting and the [B-ASP]food[E-ASP] is totally weird . $LABEL$ Negative
the concept of [B-ASP]japanese tapas[E-ASP] is newly created and clearly does n't work . $LABEL$ Negative
the [B-ASP]food[E-ASP] they serve is not comforting , not appetizing and uncooked . $LABEL$ Negative
good [B-ASP]food[E-ASP] $LABEL$ Positive
the [B-ASP]food[E-ASP] was great and tasty , but the sitting space was too small , i do n't like being cramp in a corner . $LABEL$ Positive
the food was great and tasty , but the [B-ASP]sitting space[E-ASP] was too small , i do n't like being cramp in a corner . $LABEL$ Negative
over all it was a very nice romantic [B-ASP]place[E-ASP] . $LABEL$ Positive
a coworker and i tried [B-ASP]pacifico[E-ASP] after work a few fridays and loved it . $LABEL$ Positive
the [B-ASP]atmosphere[E-ASP] was great . $LABEL$ Positive
the [B-ASP]food[E-ASP] we ordered was excellent , although i would n't say the margaritas were anything to write home about . $LABEL$ Positive
the food we ordered was excellent , although i would n't say the [B-ASP]margaritas[E-ASP] were anything to write home about . $LABEL$ Neutral
our [B-ASP]waitress[E-ASP] was n't mean , but not especially warm or attentive either . $LABEL$ Neutral
i must say i am surprised by the bad reviews of the [B-ASP]restaurant[E-ASP] earlier in the year , though . $LABEL$ Positive
regardless , we 'll be back and ca n't wait to visit in the summer to take advantage of the [B-ASP]patio[E-ASP] . $LABEL$ Positive
the [B-ASP]servers[E-ASP] at flatbush farm appear to have perfected that ghastly technique of making you feel guilty and ashamed for deigning to attract their attention . $LABEL$ Negative
a different [B-ASP]server[E-ASP] enhanced the fun , dumping our entrees in front of us halfway through our appetizer ( which was delicious ) . $LABEL$ Negative
a different server enhanced the fun , dumping our entrees in front of us halfway through our [B-ASP]appetizer[E-ASP] ( which was delicious ) . $LABEL$ Positive
overall the [B-ASP]food[E-ASP] quality was pretty good , though i hear the salmon is much better when it has n't sat cooling in front of the guest . $LABEL$ Positive
the place has a nice [B-ASP]fit - out[E-ASP] , some attractive furnishings and , from what i could tell , a reasonable wine list ( i was given the food menu when i asked for the carte des vins ) $LABEL$ Positive
the place has a nice fit - out , some attractive [B-ASP]furnishings[E-ASP] and , from what i could tell , a reasonable wine list ( i was given the food menu when i asked for the carte des vins ) $LABEL$ Positive
the place has a nice fit - out , some attractive furnishings and , from what i could tell , a reasonable [B-ASP]wine list[E-ASP] ( i was given the food menu when i asked for the carte des vins ) $LABEL$ Positive
how is this [B-ASP]palce[E-ASP] still open ? $LABEL$ Negative
everything was going good until we got our [B-ASP]meals[E-ASP] . $LABEL$ Negative
i took one look at the [B-ASP]chicken[E-ASP] and i was appalled . $LABEL$ Negative
it was served with skin , over a bed of extremely undercooked [B-ASP]spinach[E-ASP] and mashed potatoes . $LABEL$ Negative
i took one bite from the $ 24 [B-ASP]salmon[E-ASP] , and i have never , in the 17 years i have been going to restaurants tasted salmon as fishy , as dry , and as bland as the one in flatbush farms . $LABEL$ Negative
at this point , the [B-ASP]waitress[E-ASP] comes over and asks us if everything was okay , i was literally so shocked that i was speechless and did n't say anything , and guess what , the waitress walked away . $LABEL$ Negative
so , i switch with my boyfriend again to see if maybe i could stomach the meat and [B-ASP]spinach[E-ASP] again , but the spinach was so undercooked that i just could not bite through it . $LABEL$ Negative
this is where it really really gets bad : the [B-ASP]manager[E-ASP] said , there is absolutely nothing we can do , it 's a matter of taste that she did n't like it , and i can not comp it . $LABEL$ Negative
the [B-ASP]manager[E-ASP] came to the table and said we can do what we want , so we paid for what we did enjoy , the drinks and appetizers , and walked out . $LABEL$ Negative
the manager came to the table and said we can do what we want , so we paid for what we did enjoy , the [B-ASP]drinks[E-ASP] and appetizers , and walked out . $LABEL$ Positive
the manager came to the table and said we can do what we want , so we paid for what we did enjoy , the drinks and [B-ASP]appetizers[E-ASP] , and walked out . $LABEL$ Positive
this [B-ASP]staff[E-ASP] should be fired . $LABEL$ Negative
cirspy crust [B-ASP]margherita pizza[E-ASP] $LABEL$ Positive
it was really good [B-ASP]pizza[E-ASP] . $LABEL$ Positive
the [B-ASP]crust[E-ASP] was imazingly cooked well and pizza was fully loaded : ) : ) : ) $LABEL$ Positive
the crust was imazingly cooked well and [B-ASP]pizza[E-ASP] was fully loaded : ) : ) : ) $LABEL$ Positive
single worst [B-ASP]restaurant[E-ASP] in manhattan $LABEL$ Negative
i 'll being with a couple of positives : cool [B-ASP]decor[E-ASP] , good pita and hummus , and grilled octopus that was actually pretty tasty . $LABEL$ Positive
i 'll being with a couple of positives : cool decor , good [B-ASP]pita[E-ASP] and hummus , and grilled octopus that was actually pretty tasty . $LABEL$ Positive
i 'll being with a couple of positives : cool decor , good pita and [B-ASP]hummus[E-ASP] , and grilled octopus that was actually pretty tasty . $LABEL$ Positive
i 'll being with a couple of positives : cool decor , good pita and hummus , and [B-ASP]grilled octopus[E-ASP] that was actually pretty tasty . $LABEL$ Positive
if i could give 0 stars i would do so for this [B-ASP]place[E-ASP] . $LABEL$ Negative
this [B-ASP]place[E-ASP] ... god where do i begin . $LABEL$ Negative
it is quite a spectacular [B-ASP]scene[E-ASP] i 'll give them that . $LABEL$ Positive
the [B-ASP]decor[E-ASP] however seems to be the distraction so you wo n't notice that you just payed 300 bucks for some cold eggplant that took 2 frickin hours to come ! ! ! ! $LABEL$ Neutral
the decor however seems to be the distraction so you wo n't notice that you just payed 300 bucks for some cold [B-ASP]eggplant[E-ASP] that took 2 frickin hours to come ! ! ! ! $LABEL$ Negative
how this [B-ASP]place[E-ASP] survives the competitive west village market in this economy , or any other for that matter , is beyond me . $LABEL$ Negative
great [B-ASP]hot dogs[E-ASP] ! $LABEL$ Positive
though it 's been crowded most times i 've gone here , bark always delivers on their [B-ASP]food[E-ASP] . $LABEL$ Positive
though it 's been crowded most times i 've gone here , [B-ASP]bark[E-ASP] always delivers on their food . $LABEL$ Neutral
the [B-ASP]hot dogs[E-ASP] are top notch , and they 're slamwich is amazing ! $LABEL$ Positive
the hot dogs are top notch , and they 're [B-ASP]slamwich[E-ASP] is amazing ! $LABEL$ Positive
going to [B-ASP]bark[E-ASP] is always worth the train ride , and will make your tongue and belly very happy ! $LABEL$ Positive
only complaint is the pricing -- i believe it would be more reasonable to pay a dollar less on each item listed on the [B-ASP]menu[E-ASP] . $LABEL$ Negative
but nonetheless -- great [B-ASP]spot[E-ASP] , great food . $LABEL$ Positive
but nonetheless -- great spot , great [B-ASP]food[E-ASP] . $LABEL$ Positive
fabulous [B-ASP]food[E-ASP] - if the front of house staff do n't put you off – $LABEL$ Positive
fabulous food - if the [B-ASP]front of house staff[E-ASP] do n't put you off – $LABEL$ Negative
each time we 've been , the front of house staff ( not the [B-ASP]waiters[E-ASP] - they 're fantastic - but the people who greet and seat you ) has been so hideous to us that were it not for the exceptional fish dishes i would never return . $LABEL$ Positive
each time we 've been , the [B-ASP]front of house staff[E-ASP] ( not the waiters - they 're fantastic - but the people who greet and seat you ) has been so hideous to us that were it not for the exceptional fish dishes i would never return . $LABEL$ Negative
each time we 've been , the front of house staff ( not the waiters - they 're fantastic - but the people who greet and seat you ) has been so hideous to us that were it not for the exceptional [B-ASP]fish dishes[E-ASP] i would never return . $LABEL$ Positive
as [B-ASP]bfc[E-ASP] does n't take reservations you almost always have to wait by the bar - and be abused by the front of house staff until you are seated , which can be over an hour later ! $LABEL$ Negative
as bfc does n't take reservations you almost always have to wait by the bar - and be abused by the [B-ASP]front of house staff[E-ASP] until you are seated , which can be over an hour later ! $LABEL$ Negative
the frizzy retro [B-ASP]girl[E-ASP] ( with winged/ dame edna glasses ) will yell at you if you try to order a drink . $LABEL$ Negative
i 'd be horrified if my [B-ASP]staff[E-ASP] were turning away customers so early and so rudely ! $LABEL$ Negative
there 's another [B-ASP]girl[E-ASP] who i ca n't describe , she is about 5'6 " with brown hair , who eavesdrops on your conversation and chimes in - except she only hears the last part of what you said , so her uninvited opinions are often out of context and nothing to do with what you 're * really * talking about . $LABEL$ Negative
considering you will spend at least $ 60 a head , i expect better [B-ASP]service[E-ASP] . $LABEL$ Negative
[B-ASP]maitre - d[E-ASP] -"eat and get out " $LABEL$ Negative
the [B-ASP]food[E-ASP] and service were fine , however the maitre - d was incredibly unwelcoming and arrogant . $LABEL$ Positive
the food and [B-ASP]service[E-ASP] were fine , however the maitre - d was incredibly unwelcoming and arrogant . $LABEL$ Positive
the food and service were fine , however the [B-ASP]maitre - d[E-ASP] was incredibly unwelcoming and arrogant . $LABEL$ Negative
while finishing our meals which included a high - end [B-ASP]bottle of wine[E-ASP] , our son 's fiance joined us for a glass of wine and dessert . $LABEL$ Positive
this guy refused to seat her and she left , followed shortly by the four of us , but not before i told him that in my 40 years of world travel , including paris , that i had never seen such a display of bad behavior by a [B-ASP]frontman[E-ASP] in a restaurant . $LABEL$ Negative
a word to the wise : you ca n't dine here and disturb the [B-ASP]maitre - d[E-ASP] 's sense of " table turnover " , as whacked as it is , or else . $LABEL$ Negative
best [B-ASP]meal[E-ASP] in a long time ! $LABEL$ Positive
[B-ASP]mussles[E-ASP] and calamari were superb saturday evening . $LABEL$ Positive
mussles and [B-ASP]calamari[E-ASP] were superb saturday evening . $LABEL$ Positive
i had the [B-ASP]lamb special[E-ASP] which was perfect . $LABEL$ Positive
my father had the [B-ASP]flank steak[E-ASP] which was very good , and my mother had the swordfish . $LABEL$ Positive
[B-ASP]the four seasons restaurant[E-ASP] is a great experience . $LABEL$ Positive
the [B-ASP]food[E-ASP] is great and the environment is even better . $LABEL$ Positive
the food is great and the [B-ASP]environment[E-ASP] is even better . $LABEL$ Positive
taking [B-ASP]hot dogs[E-ASP] to the next level $LABEL$ Positive
at first glance this place seems a bit pricey for a hot dog joint , but at [B-ASP]bark[E-ASP] you do n't just get your average hot dog . $LABEL$ Negative
at first glance this place seems a bit pricey for a [B-ASP]hot dog[E-ASP] joint , but at bark you do n't just get your average hot dog. $LABEL$ Positive
here the [B-ASP]hot dog[E-ASP] is elevated to the level of a real entree with numerous variations available . $LABEL$ Positive
great [B-ASP]atmosphere[E-ASP] $LABEL$ Positive
i highly recommend the [B-ASP]fish tacos[E-ASP] , everything else was ok . $LABEL$ Positive
cool [B-ASP]atmosphere[E-ASP] , the fire place in the back really ads to it but needs a bit more heat throughout on a cold night . $LABEL$ Positive
cool atmosphere , the [B-ASP]fire place[E-ASP] in the back really ads to it but needs a bit more heat throughout on a cold night . $LABEL$ Positive
poor [B-ASP]service[E-ASP] and management $LABEL$ Negative
poor service and [B-ASP]management[E-ASP] $LABEL$ Negative
do n’t go to this [B-ASP]place[E-ASP] ! $LABEL$ Negative
had an awful experience at [B-ASP]casa la femme[E-ASP] on a saturday dinner . $LABEL$ Negative
the [B-ASP]manager[E-ASP] was rude and handled the situation extremely poorly . $LABEL$ Negative
ca n’t believe how an expensive nyc [B-ASP]restaurant[E-ASP] can be so disrespectful to its clients . $LABEL$ Negative
the [B-ASP]food[E-ASP] is very good , but not outstanding . $LABEL$ Neutral
there is no way it justifies the accolades it receives , the attitude of the [B-ASP]staff[E-ASP] or the wait for a table . $LABEL$ Negative
there is no way it justifies the accolades it receives , the attitude of the staff or the [B-ASP]wait[E-ASP] for a table . $LABEL$ Negative
mistakes happen , but they are usually accompanied by an apology , perhaps even a glass of wine ... but not the grunt that we received from the al di la [B-ASP]staff[E-ASP] . $LABEL$ Negative
the [B-ASP]bread[E-ASP] was stale , the salad was overpriced and empty . $LABEL$ Negative
the bread was stale , the [B-ASP]salad[E-ASP] was overpriced and empty . $LABEL$ Negative
the [B-ASP]pasta[E-ASP] was well cooked , did n't have enough sauce though or flavor . $LABEL$ Positive
the [B-ASP]hostess[E-ASP] was rude and i got a distinct feeling that they did not want to serve us . $LABEL$ Negative
the only thing that my friend left out is that when we sat down at the bar the [B-ASP]bartender[E-ASP] disappeared . $LABEL$ Negative
i asked for a menu and the same [B-ASP]waitress[E-ASP] looked at my like i was insane . $LABEL$ Negative
i was shocked that my friends wanted to stay after the [B-ASP]waitress[E-ASP] said , " can i help you " and " how many are in your party . " $LABEL$ Negative
shame on this place for the horrible rude [B-ASP]staff[E-ASP] and non - existent customer service . $LABEL$ Negative
shame on this place for the horrible rude staff and non - existent [B-ASP]customer service[E-ASP] . $LABEL$ Negative
bad [B-ASP]staff[E-ASP] $LABEL$ Negative
i generally like this [B-ASP]place[E-ASP] . $LABEL$ Positive
the [B-ASP]food[E-ASP] is good . $LABEL$ Positive
the design of the [B-ASP]space[E-ASP] is good . $LABEL$ Positive
but the [B-ASP]service[E-ASP] is horrid ! $LABEL$ Negative
i was there for brunch recently , and we were tag teamed by a [B-ASP]waitress[E-ASP] and a waiter . $LABEL$ Negative
i was there for brunch recently , and we were tag teamed by a waitress and a [B-ASP]waiter[E-ASP] . $LABEL$ Negative
the [B-ASP]waiter[E-ASP] delivered our food while holding what appeared to be a plastic bag of garbage in one hand . $LABEL$ Negative
the [B-ASP]waitress[E-ASP] came to check in on us every few minutes , and began to clear the plates while half of us were still eating ( a big pet peeve of mine that happens almost everywhere , so i try to ignore it ) . $LABEL$ Negative