-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgroceriestestXMLOutput.xml
8060 lines (7863 loc) · 400 KB
/
groceriestestXMLOutput.xml
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>
<data>
<document>
<id>E:\Amazon\groceriestest\negative\111test.txt</id>
<title></title>
<body>
<text>:(
:)
:-}
$$%%$%%%&&&
!!!????
...
$
/
help#######
help!!!!!!
I don't.
I won't.
He doesn't.
WE couldn't.
john.smith@johnsmith.com
john.smith@johnsmith.com
john.smith@johnsmith.com
john.smith@johnsmith.com
john.smith@johnsmith.com
marko john.smith@johnsmith.com krema
1/1/2011
3/8/1972
4.
4
12.5
$40
$$$$$
$$$$$
marko $$$$$$$$ krema
xxxxx
xxxxx
marko xxxxxxxx krema
847-857-4435
http://www.google.com
IL
CO
$$$$$
$$$$$$$$
$$$$$$$$$$$
<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA105BPOWTAYUXSBlrgL559W115P11.txt</id>
<title></title>
<body>
<text>not worth the money!
I am doing this review through my husbands account, so don't pay mind to the name! Sorry! I love all the Gillette Razors! I tried this Razor at my sisters house, and loved it as well. So, I went out and bought it at Sam's club. The first day was wonderful, and then the second was OK, and then by the third day I couldn't use it! So, i have to replace the heads every three days? I don't think so! On that third day I had to use a lather soap, which I shouldn't have to use since the head has gel built into it! I really don't think it is worth the money. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA106JSOKVUJSH1BmedL604W120P5.txt</id>
<title></title>
<body>
<text>Undecided
I've been lifting for about 8 years now and I'm 6'1, about 240 lbs with 18'' arms and a 49'' chest. I'm telling you this as I've gotten to the point where I've plateaued in my lifting and I was looking for a way to get beyond the plateau. With that out of the way, I'm not sold on this product at all and I didn't notice any change what so ever when taking these pills. So after taking them for about two months, my conclusion is they do not work for me. Also, pretty much all the amino acids in these pills are available in most protein shakes and the protein shakes offer more in the way of protein.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1080SE9X3ECK0BmedL102W20P1.txt</id>
<title></title>
<body>
<text>fruit is very hard!!
the dried fruit in the order i recieved was very hard,so hard my kids cant chew it,will not buy again.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA10DT91J8ZV7D6BmedL160W34P3.txt</id>
<title></title>
<body>
<text>Not for me - very drying.
This shampoo is way too drying for me - and I have very oily hair!Stripped the oil and left my hair very dry and flyaway. It also made my scalp dry and itchy.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA10E7VH5Y5SOMVBmedL116W23P2.txt</id>
<title></title>
<body>
<text>weak tasting
The coffee is weak tasting and the caffeine is low - it seems like it's decaf! Not at all impressed with the flavor<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA10GNQRCQFJC36BlrgL415W77P8.txt</id>
<title></title>
<body>
<text>Slimey but edible if you're hungry
After reading the positive reviews here and ordering this product myself, I have to ask, are we talking about the same stuff? Because what I received was not "amazingly delicious" but was, frankly, a little slimey. That's not what I'm looking for in a dinner. Maybe it was the potatoes. I don't know. I wish I could return this. I feel bad donating it to charities. I don't think they'll like it any more than I do.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA10HUY256SGEQIBmedL203W35P2.txt</id>
<title></title>
<body>
<text>No sleep is no good.
Initially the product seemed to be curbing my appetite, but eventually the effects tapered off and I was having a hard time falling asleep every night. I would not recommend this product for that reason.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA10M9PTTVBOBPIBlrgL795W138P9.txt</id>
<title></title>
<body>
<text>Old Tech Sports Drink
I tried the premix version before I bought the 24 oz. powder. It was good and I liked the taste. Unfortunately, the powder version had Herbal Lift. The full effects of the herbal ingredients are not proven so if I take any of them, I take them separately and don't want them mixed in with any other supplement.ProsI liked the tasteSucrose and Aspartame FreeConsWill not dissolve in cold water (turns into a gummy substance)Crystalline FructoseArtificial FlavorHerbal Lift version caused sleep disturbanceGives a slight unsettling of the stomach which during the course of an event is not a positive influence.I am looking for an alternate to G without fructose or sugar and provides electrolytes. I am now trying Hammer HEED which has a milder taste and more natural ingredients. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1138RAKXKEW9EBmedL114W20P3.txt</id>
<title></title>
<body>
<text>Disappointing.
I'm always looking for a good flavored tea, and I usually love Chai. This was a disappointment. Not enough spice.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA119JDKIZMQXB3BlrgL561W102P8.txt</id>
<title></title>
<body>
<text>Not as good as Kettle Valley fruit bars.
This was on sale and I thought I would try to save a little money by buying it over the Kettle Valley brand of organic fruit bar. Well the 2 year old taste arbitrator was unimpressed. Where she devoured the Kettle Valley, she lingered over this brand (and frequently did not finish it). And it wasn't a question of the variety. She had liked all incarnations of Kettle Valley that I had purchased. She did not really like the only incarnation of this brand that was purchased. Now I'm eating the remainder and I'm unimpressed also. It is bland and waxy tasting.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA119RHKBUA1CXPBmedL196W40P3.txt</id>
<title></title>
<body>
<text>Too Dry - Causes my dog to cough
This is very dry and brittle. My dog started coughing as soon as he ate it the first time so I am not giving him any more. Very disappointed since I like the Newman's Own Organic dog food a lot.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA11CCG6GBO9C2QBmedL316W58P4.txt</id>
<title></title>
<body>
<text>10 bottles were broken
I will never order this product again from Amazon. I mean, our daughter loves this formula, and it's very useful when you aren't home and need to feed your baby. Unfortunately during the shipment they broke at least 10 bottles, and I found a mess inside the box. I suppose they should use a special packaging for it.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA11GAOYF1X4HDEBlrgL613W108P7.txt</id>
<title></title>
<body>
<text>Review of company
I love the product, but want to complain about the company that sent the product(PickledE). I was expecting twice the amount of popcorn than I received--in other words,the way they worded it, I was ripped off--for what I paid for it, I could find twice the amount. And I emailed the company, there was no phone number, just an email...and I got no response from them. I searched for their company on the web and didn't find anything either. I trusted every company that sold products through Amazon and now I do not. I hope I don't have to worry about my financial information through this non-existing company.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA11N67JH4FB6HLBmedL328W63P5.txt</id>
<title></title>
<body>
<text>Anyone want the rest of mine?
Strongly horrible tasting. I've been enjoying smoothies that are more than half greens (kale, chard, etc.) with chia and ground flaxseed thrown in - so it's not as if I demand 100% sweet - but this stuff, even at a quarter of the recommended dosage, takes "must be good for you" to a new level. Or should I say "to a new low."<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA11RFN4694RMA0BmedL359W73P6.txt</id>
<title></title>
<body>
<text>Not for Dark Blend Coffee Drinkers
I am a fan of other Timothy K Cups, but not this one. I tried it based on the reviews, but unfortunately it is not that strong. Of course it's a matter of taste. I prefer the darker blends, but if you are someone who prefers a "not so strong" coffee than I guess you would enjoy it. Don't get me wrong, it does not taste bad, just too weak for my preference. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA121M2WGVLSLL3BmedL157W30P3.txt</id>
<title></title>
<body>
<text>Not up to par
Of all the K cups this is my least favorite. It is extremely mild and tastes like canned coffee. Some may find it nostalgic, but I won't purchase it again.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA122Z1GVC96EWXBmedL311W62P3.txt</id>
<title></title>
<body>
<text>My Hair Still Feels Dirty
I bought this from a beauty supply store for around $10. I sprayed a generous amount all over my roots and hair and i even let it have time to soak before i bushed my hair again. my hair is still oily totally not worth $10 i'm going to try Batiste, or Psssssst since they are cheaper and have way better reviews<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA123DUSQJMTEQDBmedL244W46P3.txt</id>
<title></title>
<body>
<text>Doesn't last
Worked great for about a month (using it 2-3 times per week), then the glue that held the bristles in place failed causing chunks of the hairs to fall out of the handle. Not worth the aggravation. Going to pay double for a better quality brush.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA12899XA4V1RIYBlrgL821W176P9.txt</id>
<title></title>
<body>
<text>Not for the Asians who like Dark Tea
Well, Twinnings are one of the best brands and I was hoping go for it. But this specific one is not as dark or strong as some of the South Asian folks would like to have. Its great if you are just having it without milk. But if you want to have a strong morning tea, this is not the right kind. I think the Assam blend is probably the best but I couldnt find the one I got from U.K. The flip side of Amazon order is I cant return the rest of the unopened boxes ( it comes with 6 boxes, as you know). I tried to use two tea bags on one cup of tea but it still doesnt give me the kick.... so I have to say, as much as I wanted to like it for the price and convenience, I am going to give the rest of the boxes away to freinds and family as gifts whilst I still look for that Assam blend or strong dark liqour of black tea,,<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA12RXIGI4Z7U4ABmedL365W70P6.txt</id>
<title></title>
<body>
<text>Peppermint Oil hasn't worked for our mouse problem
It's been two months since I put a bunch of cotton balls drenched in oil all around my garage. We are still catching mice - think we've had four. I've doused the cotton balls a total of three times; maybe every 3 weeks. Maybe I need to do it more often?It does make the garage smell nice, but it hasn't really helped with our field mouse problem. Oh, well....<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA12U4A906L4MNRBmedL289W57P4.txt</id>
<title></title>
<body>
<text>If you like your food smelling like flowers
This stuff smells so good, I love the packaging and the hand soap but I got the dish soap and now everything I cook in my frying pan smells like flowers. Smells great, tastes not so great. I cant get the freakin flowers out either. I hate taking stuff back to the STO but this is gross.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA12Y6H7VXDVB1GBmedL106W24P2.txt</id>
<title></title>
<body>
<text>building bodies
way to many cals for me. this is for people with high burn rates or some one looking to gain a lot of mass<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA132IUB48KBVF6BlrgL313W55P7.txt</id>
<title></title>
<body>
<text>Where's the Original Recipe?
I've consumed this product for over 15 years. However, my most recent order was quite disappointing. The usual spicy flavor is gone and all the product has now is a very bland tasting chili. Worthington....what did you do to the original recipe? I am returning my pack of 12 and am canceling my auto delivery. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA133FQW7PNC08WBmedL413W77P6.txt</id>
<title></title>
<body>
<text>Not as fresh as store bought!
Our family loves these granola bars normally. The shipments we have received have gotten worse each time. The current shipment we have, the bars are mostly hard but the chocolate chips are not good as well. They are very light brown and turn into a crumbly mess when you bite in. I recommend just buying them at your local store or to try another brand. Sorry for the bad review we really loved these at one time!<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13C9YXS0L5010BmedL348W60P6.txt</id>
<title></title>
<body>
<text>Would be great... Except for the Mudslide!
I adore flavored coffee and bought a subscription for this variety. I'm canceling it today. I just loathe the Mudslide, and there are SIX of them in each package. They are always the last to go and now I have quite a stockpile growing. It tastes like weak dirt-flavored water! I'll switch over to Timothy's variety (which I've ordered before).<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13CO2LE5J3OYDBmedL386W74P5.txt</id>
<title></title>
<body>
<text>Might be healthy, but won't be buying again. . . .
I've tried a number of protein bars or low carb type, and would have to say that these were the least enjoyed. In fact, the taste did so little for me (not to mention aftertaste), that I pitched the last four. I hate wasting food, or anything for that matter, but the alternative was to let them go stale in the pantry. The texture was decent, but taste -- ugh -- waste of calories. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13FR0A1JRODO1BmedL235W42P3.txt</id>
<title></title>
<body>
<text>Too sweet and costly
If there's a Whole Foods store near your home or work, they sell this product for 30-50 cents less, per package and you won't have to wait for delivery. And, if you are sugar-sensitive, don't buy this flavor...it's a little too sweet.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13GO9G1CKKVZ0BmedL384W71P5.txt</id>
<title></title>
<body>
<text>Has anyone noticed the first two ingredients?
are glucose syrup and evaporated cane juice? Just because these ingredients are organic doesn't mean they're healthy. I worry that we are giving our kids the implied message that sugar is good. We already eat a ton of sugar, as a nation, and I don't have to mention what our obesity rates for kids are.Why can't we get a wholesome alternative that doesn't have a ton of sugar in it?<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13S959ZBAOU53BmedL268W52P6.txt</id>
<title></title>
<body>
<text>Tastes Great but.....
Why the heck did they put coconut oil in this? The regular has soybean oil. Why put oil in it anyway? It tastes fine but I will not buy again because of the ingredients including Splenda. Guess I'll go back to mixing my own with dry milk, cocoa, and sweet n low. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13TDK5V0GGYQDBlrgL844W152P14.txt</id>
<title></title>
<body>
<text>cologne is suspected to be fake, Amazon Custumer Service is great
Amazon is my favorite online store, but I've never bought cologne from them. This is the first time buying cologne here, and the cologne appears to be fake. The plastic wrap is resealed. The package is cut inside (check out the customer image I just posted some pics on there). The cologne smells too much alcohol, and it doesn't last long. I think it wasn't shipped from an Amazon warehouse; it was shipped from their partner's. Even though the shipping label has amazon logo on it, the shipping box isn't what amazon usually uses. The receipt is different too. Nevertheless, Amazon Customer Service is great. They give me a full refund, and I don't have to return the cologne back. It now becomes my paperweight. 5 stars is for Amazon CRS, 0 star for the cologne quality = 2 stars total :). This cologne smells great if you get the real one. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13U9PM5BS8JGABlrgL292W64P7.txt</id>
<title></title>
<body>
<text>Doesn't do a thing for my hair :(
I have flat hair and I put this on dry and it doesn't do a thing. I can't even tell anything is in my hair. It's still limp. I put a quarter size dollop so I know it's not me. I guess this just isn't for my hair. I use other products that give me way more volumne then this. Not worth the $20<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13V3E3EBCW5TXBlrgL1558W283P12.txt</id>
<title></title>
<body>
<text>Not very good stuff
I don't really understand all the good reviews this stuff is getting; to me Serious Mass tastes really bad and is very thick and hard to even stomach especially before an intense workout. This is all being mixed with 2% milk by the way (in order to maximize the calories). Being a college student I have no access to a blender and have just been using a shaker bottle. Whenever I take this product it gives me an incredible amount of gas and sometimes even a bit of nausea. I could not possibly imagine taking 2 full servings of this crap every day. If you ask me Muscle Juice is a much better more palatable product. I understand that the Juice has many more simple carbohydrates in it and that Serious Mass has more complex carbohydrates but I would still choose the Juice. Personally I don't not think it matters a whole lot how one gets the calories required to build muscle provided the body is being vigorously stimulated to grow muscle. This shake also tends to make you feel very full (either because of actual fullness or gas I do not know) where as Muscle Juice doesn't. It was because of this full feeling I actually felt like I was getting in less calories than I was without taking the gainer because I could not eat as much with other regular meals. So to summarize: Pros:more complex carb source than other weigh gainersless expensiveCons:pasty texturehorrible tastecauses lots of bloatinghard to mix w/o blenderAs this is a personal review, only my results are depicted and this product my work better for other for other people. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13WBUX01Q4D35BmedL269W53P3.txt</id>
<title></title>
<body>
<text>It's beef jerky ...
I would recommend to stick with the bagged beef jerky. I bought these because I thought it would be much easier to transport with me on the go like road trips but the taste is way off compared to the bagged jerky and I didnt care for it. Very dissapointed in the taste.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA13XHAQXGVQYA7BmedL162W31P3.txt</id>
<title></title>
<body>
<text>Good product, terrible price!
Not sure what gives with the pricing here, I won't be ordering this again, but the white mac & cheese is a great product. Tasty! So is the regular orange box.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA14BTYMX8OEYHJBlrgL235W47P7.txt</id>
<title></title>
<body>
<text>Cheap Chinese stuff
1. It is definitely NOT a leather case2. It is cheap Chinese quality3. Every brush was very dusty4. There is not eye concealer 5. I am not a professional, but shouldn't brushes be at least a little bit firm? They are way too soft<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA14EWSFQ1UWJS1BlrgL584W103P7.txt</id>
<title></title>
<body>
<text>Sucralose, what a shame
I was quite excited when I ordered this product because chai is one of my favourite hot drinks. However, upon my first sip almost all I could taste was the Sucralose. It was like licking a metal pipe with spices sprinkled on it. I hadn't paid attention to the ingredients prior to that point but the use of Sucralose was obvious. If you're sensitive to artificial sweeteners, like Sucralose, you probably won't like this product. Otherwise, it seems like it has potential. I might have liked it if it didn't use artificial sweeteners but as it is I won't buy this product again.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA14I6MXBSI0BXBlrgL403W75P8.txt</id>
<title></title>
<body>
<text>Too oily
I love coconut, but these bars are so oily they kinda feel gross when trying to eat them...they left oil on my lips. Taste..was a little bland but not bad once you get over the really greasy feel of them.Unfortunetly I wont buy them again..and will keep looking for a coconut one that is less oily, the larabar one was good..but I am having a hard time finding them again..the coconut cream pie ones.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA14QBZW3NFZOU3BmedL135W26P3.txt</id>
<title></title>
<body>
<text>K-Cups, Sumatra
First time I've used this coffee, and there is nothing distasteful about it. I just find it to be a little mild (anemic?) for my taste.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA14UALKD4K86YUBmedL270W48P3.txt</id>
<title></title>
<body>
<text>Well, it isn't sand paper...
I'm all for saving the environment and I try to do my part, but this particular bathroom tissue is less than friendly to the bottom. They are effective, but not so comfortable. I know that there is a grocery store chain that makes much more comfortable recycled paper.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA14VY3PA0HOVNMBlrgL927W169P13.txt</id>
<title></title>
<body>
<text>Scalp problem products
I was disappointed with this product as it has not really helped my itchy (non-dandruff), dry scalp from sensitive skin, being diabetic and over-coloring. I have not found this to be any sort of real scalp therapy that works. It is a nice light shampoo, smells pretty good even though there is tea tree oil in it, but it does not work as advertised. I am now using homeopathic remedies on my itchy, dry scalp such as applying this: Simmer 12 tbsp. plain, old fashioned oatmeal in 6 cups boiling water for an hour. Strain oatmeal, reserving the cooking water to which you then add 5 drops rosemary and 5 drops lavender oil. I have also substituted warm virgin olive oil for those two oils, and mixed 1/2 C. of the reserved oatmeal water with 6 Tbs. apple cider vinegar. Allow mixture to cool before applying to scalp. Leave in hair at least 10 minutes before washing out. You can use this once a week to relieve dry scalp. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA14XO927D04MAEBmedL293W57P3.txt</id>
<title></title>
<body>
<text>not good for me
I used this product because I was told it was created without chemicals by the inventors for his wife who had cancer. How true this story is I don't know however it irrated my scalp I give it only one star as I am sensative to many chemicals. If you are sensative I would not recommend this.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA14ZX2VX0TOAEABlrgL354W59P9.txt</id>
<title></title>
<body>
<text>Came postage due
The product itself was satisfasctory, but it came USPS with $.40 due postage. The batteries only cost $1.49, but they already charged $4.79 for shipping & handling. It really ticked me off that it should come with postage due. Don't they KNOW what postage is required to reach any destination. All S&H charges are a big rip-off anyway .......<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1595DYZ9UWYVGBlrgL396W70P7.txt</id>
<title></title>
<body>
<text>Needs a flavor boost
We bought these bars for our teenage son who has celiac/sprue. Tasty GF sports nutrition is hard to find. These bars have great ingredients. We tried the chocolate brownie and there is just not enough flavor. They have that funny /vitamin taste you find in some sports bars. My daughter tried one and she thinks they taste "like window cleaner smells." A total bust for us, nobody will eat them.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA15EYZMV3ZMVF8BlrgL366W69P7.txt</id>
<title></title>
<body>
<text>Yuck!
I do not like the taste of this "sugar" at all! The only good thing about this is that it's all natural. But it tastes just like chemical sweeteners to me! And I was expecting a more natural taste. Also, it is extremely sweet. The taste is not something that I could enjoy everyday, only if I was in real need of a sweetener other than sugar. I'm disappointed.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA15TNCCBG4VT5BBlrgL584W105P8.txt</id>
<title></title>
<body>
<text>Eau du Anti-Histamines
I'm sorry, but this is another pop-star fragrance that I really don't care for (another being Britney Spear's "Curious").I was given a sample of it at Walgeens the other day. It's too sweet smelling for my tastes (my mother said it smelled like air freshener), and I think I had an allergic reaction to it.I got a rash. Also, that night I woke up to find my left eye was starting to swell shut (I had not even sprayed it on my skin that time). After removing contaminated articles of clothing and using hydrocortizone, symptoms vanished within an hour. Take that, Hillary Duff. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA163U3DY2J0476BmedL180W34P2.txt</id>
<title></title>
<body>
<text>Not the best
Natural didn't mean less fat or carbs, and it was pretty tasteless, actually! It did pop fully, not alot of unpopped kernel's, but I wouldn't go out of my way to purchase it again.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA16FTYPJ9ICYG9BmedL478W97P5.txt</id>
<title></title>
<body>
<text>I could make something better myself
I have the Bandit product and got another one but wanted something that I can alternate and wear at work without looking like a lost squash player. This did not give me any relief and after adjusting it every which way it just did not cut the mustard. The only time it gave me relief was when it also kept blood flowing to my fingers. I would give it one star but I am going to use it as a fancy - and pricey - cuff guard instead so I don't get chain grease on my trousers. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA16NBAJPDXDG1GBmedL103W19P3.txt</id>
<title></title>
<body>
<text>Samvazon Acau powerscop
Powder is very chunky! I haven't lost any weight on it either........Price + Shipping= not worth it :{<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA16URVLQDMSI4ZBmedL183W34P4.txt</id>
<title></title>
<body>
<text>Disappointed
I chose this tea based on customer reviews. This particular tea had quite a few positive reviews. Personally, I didn't think it was that great and now I'm stuck with 6 boxes of it. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA16WPA6JV83YXTBmedL759W142P5.txt</id>
<title></title>
<body>
<text>Not as "intense" as I expected
Just to get to the point of this product I think the intent was there but the end result was not as "intense" as the product could be.I have been an avid customer of the KY warming product as my husband and I use it and I thought this one would be interesting to try. The price tag alone would turn me away from purchasing it as it seems out of touch with most budgets including mine for the amount of product you receive.This product does produce a tingly cooling sensation as promised but it really did not enhance the intimacy or make it worth the hype of the brochure enclosed in the box. I would rather use the warming product as it enhances the experience for both partners and doesn't have lingering tingling sensations after the experience is over.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA178DX34IA85M1BmedL375W70P4.txt</id>
<title></title>
<body>
<text>I'll stick with the conventional cooking method......
Have enjoyed Annie's White Mac & Cheese very much, but this microwavable variety is more trouble than its worth. You must use a very deep & wide bowl to use in the microwave or the water will boil over and you'll be left with very hot, uncooked macaroni in the bowl and a starchy mess in the microwave. It is much easier to make the conventional variety in a pot! <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA17BUFE9CC62PRBmedL245W49P6.txt</id>
<title></title>
<body>
<text>Three strikes
Although the price was right, I'm left with 5 of the 6 that will never be used.1) This deodorant goes on pasty. 2) It doesn't control odor for more then 4 hours.3) It is very hard to wash off.I have much better luck with Mennen unscented. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA17BUXSHOUOP4MBmedL376W69P5.txt</id>
<title></title>
<body>
<text>A bit of a disappointment from Twining's usual good quality
I have prepared this tea according to instructions and how I prepare every other cup of tea: Steep about 4 minutes. However, this tea is either dry or I got a strange batch because it becomes quite bitter very quickly. The sweet, floral jasmine flavor is present but again--with a bitter tinge. And I'm not about to start putting sugar in my tea. I won't be buying it again.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA17MDFE1GIGNEPBmedL150W26P3.txt</id>
<title></title>
<body>
<text>Not so good.
I got these for my daughter who prefers chewy to crunchy. I generally love Kashi stuff, but these were a disappointment. Even my daughter said yuck.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA17NI7IRRZA4WSBmedL106W19P4.txt</id>
<title></title>
<body>
<text>We don't like these
I bought these based on good reviews. We don't like them. The flavor is artificial. They are too sweet.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA183KCCGCKCOQXBmedL659W121P6.txt</id>
<title></title>
<body>
<text>Not as good as it used to be...
My children and I have eaten Annie's macaroni & cheese for over ten years and loved it. So it was to my dismay when I began to notice in the last year that the flavor was obviously reformulated to be much weaker. The directions were also reconfigured. It used to be 2 tablespoons of butter and 2 tablespoons of milk; now it calls for 1/4 cup of milk, which is why the outcome is so runny and yucky. My children have never eaten Kraft mac & cheese, so we were comparing the difference in taste with the original Annies. I honestly expect that my family will wean themselves of Annies mac & cheese because the flavor is that disappointing and bland.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA183WJ7QWD34H8BmedL186W34P4.txt</id>
<title></title>
<body>
<text>Not Good
I bought 2 and hate them. Prefer Splenda even though it isn't "natural". This stuff tastes fake and I can't even taste the sweetness in my coffee. Maybe the regular stuff would be better<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA18B547G0O1A64BmedL164W31P4.txt</id>
<title></title>
<body>
<text>too weak
Love most K-cups, but this donut blend is too weak for our taste. We prefer a bold French or Italian roast. This is like diner coffee, which I have never liked. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA18FG0O5VY86C5BmedL367W72P4.txt</id>
<title></title>
<body>
<text>diapers
These diapers are supposed to help diaper rash and at first I thought they were really working in conjunction with the desitin, then the rash came back so I am not sold on this product for prevention of diaper rash. I do like the airy feel though. but it is not work the extra dollars. purchase this if you can get it on sale or for the same price as other diapers.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA18IWU41LM4QBUBmedL196W41P2.txt</id>
<title></title>
<body>
<text>not that great
If you are looking for that amazing tea tree tingle this is not going to give it to you. The shampoo is good enough but there's not a lot of tea tree-ness to it and it doesn't have a great scent.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA18LN2FR7EHDYMBmedL212W42P4.txt</id>
<title></title>
<body>
<text>Disappointment
The pods did not fit in my machine very good, causing water torun out of the top. Some worked that were extras out of the pack.The flavorite coffee worked fine. I love Espresso, but does notwork in my machine.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA18O0L6RA62FT7BmedL460W76P6.txt</id>
<title></title>
<body>
<text>Tried to Like It
This is the only Olay Definity product I've found that is fragrance-free and has UV protection, a necessity for my morning routine. It's intriguing to apply a foam moisturizer, but it's not quite moisturizing enough for my combination skin. Also, no matter how I apply it, the product flakes off, leaving my skin covered with little flakes. (I follow the product with a foundation powder, perhaps that's a bad combination). I'm back to Olay Total Effects. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA18OYYWODI7B09BmedL243W47P3.txt</id>
<title></title>
<body>
<text>out of control
I have very thin, fine hair and thought that the pureology products were a good idea. Unfortunately, I have found that it leaves my hair very dry and full of static. Sorry, but I think I will go back to my tried and true Redken BodyFull line.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA18W7BI6TI3IM4BmedL98W18P2.txt</id>
<title></title>
<body>
<text>FS
Was not too happy with the flavor. It doesn't give the original flavor that Earl Grey usually has.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA190N4ZXAEEH9HBmedL165W29P6.txt</id>
<title></title>
<body>
<text>Didn't plan to order tea
Coffees are ok, but 9 of the k-cups were tea. What a waste. I thought this was a coffee sampler pack. Won't buy again. Try Coffee People coffees instead...delicious!<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1932WYIFPPVO5BmedL379W65P5.txt</id>
<title></title>
<body>
<text>Very salty
I love Hormel Compleats. They're all very convenient, since I can stash them in a cabinet in my office and not worry about remembering to bring something from home, or about it getting stolen from the communal refrigerator.This is about the saltiest of the Compleats I've tried. The potatoes are pasty and have little flavor. The meatloaf isn't bad, except for the salt factor.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA195ROJ03KDKFNBlrgL195W33P10.txt</id>
<title></title>
<body>
<text>Sodium high
A.Z.T.T.T.W.B.S. is, or would be, an excellent base for building a nice pot of healthy soup but for the MSG and unneccessarily high sodium content. A reduced salt version would merit more stars.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA19CACP7GLU775BmedL130W21P2.txt</id>
<title></title>
<body>
<text>Disappointed
I have used two(2)of six(6) brushes ordered. Both have cracked completely through in several places during the first week of use.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA19CFGYHK3B4HNBmedL332W63P5.txt</id>
<title></title>
<body>
<text>Meh. Not the best I've had.
Eh, not that great. It's very runny so you have to be quick before you get more on your palm than on the intended area. No noticeable tingle for me like the other products I've used. Kinda numbs it a little actually which can be pleasurable but not what I was originally looking for. I'll stick to my $10 jars of Cleopatra's Secret.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA19ILU71453CX4BmedL234W45P4.txt</id>
<title></title>
<body>
<text>Have not found a kid that likes these (taste or shell)
If you kid likes these then great...but I have not found an adult or child who likes these. The taste isn't good and most won't swallow whole and if they bite/chew then they dislike the shell. We are going back to the gummy type ones.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA19IV8KM9X9O8EBmedL319W60P4.txt</id>
<title></title>
<body>
<text>Where is the Bergamot flavor??
I was expecting a lot more from a tea that is named "Double Bergamot". Some other Earl Grey's I have used have more Bergamot flavoring in 1 tea bag then this little tea in 4. Thus I am rather disappointed! Although for a regular Earl Grey fan this tea might be good, for the Bergamot enthusiast it is not recommendable.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA19W6YZ1C29UWKBmedL647W128P5.txt</id>
<title></title>
<body>
<text>Started out well.
I bought this back in 2006, and it worked well for the first year or so, recharging the batteries in the kid's toys. However after a year sometimes the charger would give a green light saying the battery was charged even after it had only been in for 5 mins or so. Taking the battery out and putting it in would fix it, but then another year or so, it would stop charging (the red light would turn off) in one of the bays, meaning I only could charge 3 batteries at a time. A few weeks ago, another bay is not working properly. I think that a charger costing this much should last longer than a few years given that it has no moving parts to fail.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA19ZDUVHCCV84TBmedL348W62P3.txt</id>
<title></title>
<body>
<text>Lose their charge very fast
Don't waste your money on these, I bought 2-pks of these in Feb, 2009 based on some favorable reviews posted here. Once I received them and charged them up with my La Crosse Technology BC-9009 AlphaPower Battery Charger I noticed that about half of them lose their charge after sitting unused for a week or two.Go buy some SANYO eneloops instead.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1XPYP6LPRBBRXBmedL267W53P6.txt</id>
<title></title>
<body>
<text>Stale!
I order my Clif bars on Subscribe & Save 'cause I have one every day & love them, BUT . . . just received 24 completely stale bars! I would give this shipment a 1-star rating (or 0 if that's a choice), but averaged in my love of Clif bars when they're fresh. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1XSZ10JGC5NX9BmedL250W52P3.txt</id>
<title></title>
<body>
<text>Good Vitamin, but taste horrible
These are good vitamins and I wish I could rate them higher BUT the taste of them is horrid. My kids didn't like them at all, we tried for a few days but due to a lot of crinkled faces and spitting them back out. We decided they just aren't for us.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1Y59YX75CPEMPBmedL369W70P5.txt</id>
<title></title>
<body>
<text>Not worth the money
I wanted to like these and was excited to get them at a good price here. My boys liked them, but one whole package from the variety box wasn't enough for them. There was about enough larger chunks to fit in my palm, the rest was tiny crumbs and powder. Very disappointing and I won't be buying it again. Trader Joe's has some options that go farther for less money.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1YCAK5DUDJ2MWBmedL146W25P3.txt</id>
<title></title>
<body>
<text>nothing exciting about this flavor
There is not enough chocolate or almond flavor in this cup. There's not even enough coffee flavor either, even when prepared on the 5.5oz setting.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1YSH3QELURP4JBmedL182W35P4.txt</id>
<title></title>
<body>
<text>It's Ok
I was estatic when I seen that Splenda was coming out with Flavor Blends for coffee. I wasn't to fond of it after I got it. More sugary tasting .. not as expected, Very disappointed <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1YVX60U2TQS0KBmedL317W58P3.txt</id>
<title></title>
<body>
<text>Satisfied, but not impressed
The day that I posted negative feedback regarding my order it arrived in the mail and the seller finally got in touch with me. They issued a full refund, but I find it very unprofessional that they only contacted me once I had posted a negative comment, which they asked me to change/update if I was now satisfied. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1Z4QCA6QJP6BRBlrgL598W109P11.txt</id>
<title></title>
<body>
<text>damaged
Two of the cans arrived damaged in shipping. There is no way to contact amazon. Campbell's sent me $1 coupons but the least I could find the product for was $1.59. I would have been out of pocket $1.18 to replace the 2 cans of soup, however, none of the local markets carried clam chowder in soup at hand. The cheapest Campbell's clam chowder I could find was over $2. Being out a couple of bucks isn't too bad but suppose it were more money. Amazon evidently does not stand behind what they sell. They do not respond to emails to customer service and provide no other contact information. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1ZBNUZ0WB3PW7BmedL189W37P3.txt</id>
<title></title>
<body>
<text>Burns eyes, doesn't moisturize so well
This product does not do such a great job of moisturizing your face. After using it for a week, I didn't feel like my skin was really benefitting from it.But worse: it makes my eyes burn.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1ZFA2K0XXPJY1BmedL223W45P3.txt</id>
<title></title>
<body>
<text>Tastes weird
I roasted it but it still tastes weird, in a bad way. I wouldn't buy this again. The quality of the product is good, hence the 2 stars, otherwise, I would have given it 1 star because I just wasted my money on this product.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1ZJ7I171HGIVUBmedL405W84P4.txt</id>
<title></title>
<body>
<text>First time use, and pretty much last time as well
If u dont hav special requirement for condom, like allergy of latex.... i dont think this one is a good choice, first of all, the small of it is not that lovely, pretty much turned us down at the moment u open it. And worst part u have to hold it when u r "out" to take it out, if not u would hav the danger to get out the "glory hole" fully naked! Bought it just for curiosity, but pretty much not again!<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1ZLO0EZ7WSUG6BmedL174W33P4.txt</id>
<title></title>
<body>
<text>I don't like it at all.
The tablets are huge and smell bad. I feel really painful to swallow six tablets per day. I just take it for a week and switch to other brands recommended by my doctor. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1ZSF5CJ0A4CIOBlrgL660W127P9.txt</id>
<title></title>
<body>
<text>Hasn't worked for me, yet
Hasn't worked for me yet, but there is still hope. I have some serious ulcers that erupt often, and with that comes the gas. Some ulcer patients don't pass gas easily, so it bloats and rumbles around in there for days, always with more pain than simple discomfort. My brother got me some of this hoping it would help, and although I've tried it with every meal, I don't recognize any difference. Perhaps it takes a bit of time. I'm just not sure what to expect. I DO, however, know what to expect of myself with various foods I eat, and so far, nothing has changed. Maybe I need to give it more time. If I see it helping, I'll revise my review at a later time.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1ZTX3T27S5IQCBlrgL290W58P7.txt</id>
<title></title>
<body>
<text>POEME
POEME By Lancome For Women EAU DE PARFUM SPRAY 3.4 OZ. MUST BE WATER AND FOOD COLORING. NO SCENT. IF I HAD KNOWN THIS I WOULDN'T HAVE OPENED THE BOX. ONCE YOU OPEN THE BOX YOU ARE NOT ALLOWED TO RETURN THE PRODUCT. HOW WAS I SUPPOSE TO KNOW IT WASN'T THE REAL THING WITHOUT OPENING THE BOX?<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1ZTXJQ63MBLC8BmedL210W38P5.txt</id>
<title></title>
<body>
<text>Ick - tastes bad.
My kids said it tastes terrible. They are so expensive I am bribing them to take them anyway. Have heard so many great things about benefits & trust Dr. Sears. Guess we'll have to search for another brand.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1ZWG6983IZKDDBmedL297W44P6.txt</id>
<title></title>
<body>
<text>ZZZZZ
I am a "dyed in the wool" ginger-lover and looked forward to a veritable explosion of hot, spicy, tangy ginger in my salivating mouth.Bummer...what was delivered was a somewhat honey-flavored confection...that was merely bland in its intention. Disappointing in demeanor...exhorbitant in cost.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA1ZY0JA4U4ZUTUBmedL314W58P3.txt</id>
<title></title>
<body>
<text>Too rich
Maybe the other flavors are different, but this one had a greasy film and was very intensely cashew flavored. Somehow more cashewy than a handful of cashews--in a bad way for me at least. Very difficult for me to finish even one over an entire afternoon so I shared them with my office mates who are health nuts.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA209MIUVA6EX0JBmedL176W28P3.txt</id>
<title></title>
<body>
<text>Old Diapers- same Price
I have always ordered diapers from Amazon...The past 2 times, the diapers have been old and sticking together (apparently from heat)....Upset at the lack of quality these days!<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA20C47VXB429S5BlrgL643W131P10.txt</id>
<title></title>
<body>
<text>Florida girl looking to loose some weight
I read all the reviews about how great of a product the tea was so I decided to give it a try. The big question Im sure your wondering is did I loose any weight? The answer is NO! The tea works as a great cleaner. If you are going to use the tea just make sure your home or near the restroom, because it will give your the runs. I'm still finishing up the tea before I can tell you what the full affects are. I must admitt the shipping is great, the product arrived to my house within about 3 days or so. The tea has a smooth taste, so it doesn't taste too bad either. I guess this product helps some people loose weight and other it doesn't.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA20I3TJPEUZYBVBmedL268W48P4.txt</id>
<title></title>
<body>
<text>NOT TO GOOD
THE FIRST SHIPMENT I RECEIVED ON THESE WERE GREAT. THE SECOND SHIPMENT THEY WERE HARD ON THE INSIDE AND THE OUTSIDE INSTEAD OF BEING ROUND, THEY WERE ALL DEFORMED. THEY LOOKED LIKE CRATERS ON THE MOON. DON'T THINK I WANT TO TAKE ANOTHER CHANCE ON ORDERING THESE AGAIN.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA20XGCZVTS1CH5BmedL212W40P4.txt</id>
<title></title>
<body>
<text>Great smell, weak tea.
Title pretty much says it all. The other reviewer who stated that the tea is weak is fairly accurate. I've tried this on the smallest cup setting and it still is very watery. On the plus side, it smells great!<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA213PRXRSO0RPEBmedL123W23P3.txt</id>
<title></title>
<body>
<text>powder stevia
I did not care for this product, it had a very strong, unpleasant aftertaste. I did not taste that with the liquid stevia. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA213T8B27STLY2BlrgL477W88P7.txt</id>
<title></title>
<body>
<text>How effective is Triple Flex?
Frankly I don't know if I am benefiting from the use of this nutritional supplement for my arthrtic knee. I have used it for more than 6 months along with drugs designed to alleviate the pain associated with osteo arthritis. The only way to assess the effectiveness of the drug or the supplement is to stop taking them for a while. Which I am averse to. One gets addicted to these things, especially at my age! I sincerely regret not being specific. My rating may not be fair.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA21AI1TBOGPASOBmedL255W55P3.txt</id>
<title></title>
<body>
<text>Defective Oral B brushes
I have so far used 2 of the 4 brushes. A small part broke off of both of them and I found myself with a small piece of metal that looked similar to a tack in my mouth. I don't know if this is the normal quality of this product or just a defective batch.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA21BI2E15992RRBmedL401W81P6.txt</id>
<title></title>
<body>
<text>Tastes good when you mix it w/ other coffees, but by itself...Um NO!
I absolutely LOVE white chocolate so I was extremely happy to see this. That was until I actually tasted it. 2 words, WATERED DOWN! I have the platinum keurig, so I have a choice on the cup size, and even the smallest size is too watery. It helps to add some half & half or milk though. Or use it as a way to spruce up a coffe, then your coffee will have a semi white chocolate java feel going on.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA21BVL7PKG9BX8BlrgL688W135P7.txt</id>
<title></title>
<body>
<text>Not very intense
The K-Y Brand Intense Arousal Gel for her was not very intense. After being married for 20 years my husband and I have tried different products over the years and this one did not stand out in the crowd at all. It gave me a slight cooling sensation and that was it. This is a product that will probably work differently with different people since body chemistry comes into play with how this will react with your body. For me, it wasn't anything I would go out of my way to look for or buy again. It did have a nice slippery feeling to it, but you can get that feeling out of a much cheaper product in the KY line. Looks like I'm one of the unlucky 25% that this product doesn't work on.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA21C9XR1YUEGY6BmedL454W91P5.txt</id>
<title></title>
<body>
<text>not the best
There have been a lot of fake blades going around on the internet from what I understand. I'm not sure if these were or not but I can say that they were not good. The blade was shaky and buzzed when I turned on my razor. (I have the vibrating style) And the blades seemed like they were not in the right place as they felt like they were jagged and cutting me.I can't recommend this product and will go back to buying my razors in Duane Reade or CVS.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA21DBNXT3GP2LHBmedL313W56P5.txt</id>
<title></title>
<body>
<text>foam is better!!
I LOVE THE DEFINITY FOAM CLEANSER!! the cream one does not even come close...but now i am having trouble finding the FOAM..WHY? the cream cleanser seems to leave a residue whereas the FOAM leaves my skin almost squeeky clean and it look fresh like a brand new palate for my Definity Foam moisturizer and make up!!<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA21HNIV4ZIWILUBmedL305W60P5.txt</id>
<title></title>
<body>
<text>Not so great...
I really don't like this coffee. I don't know if this is true of all French Roasts and if that is something that others who like French Roast like, but this coffee tastes burnt to me. It even looks and smells burnt. The beans are black. I have had much better coffee and my husband calls me a coffee snob.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA21HYTB2MUP0QOBmedL400W82P5.txt</id>
<title></title>
<body>
<text>Moisturizer Only - A Smelly One
Yes, this product does smell like "old lady". I have used it for 3 months morning and night and have not seen any noticeable lightening so I have stopped using it now. It does however, leave my skin really soft, but the smell is so strong that it gives me a headache. The first time I tried it, I put a small dab on my hand and was embarrassed by the smell of it since I was at work at the time. <text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA21LUYKJCLXQ01BmedL115W24P2.txt</id>
<title></title>
<body>
<text>Very, very sweet
I love flavored, sweet coffee but this flavor is too sweet for me. It is a very strong flavor and too rich for me.<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA21X1Z9RRV8UE1BmedL393W70P6.txt</id>
<title></title>
<body>
<text>overpriced
At roughly 55 cents (subscribed price) per unit, I unfortunately found out (too late) that this was at least 20 cents more than my local grocery store. I called Amazon and there was nothing they would do about it. I suggest checking out pricing at your local grocery store prior to purchasing this item. Don't make the same mistake I did. Its a good product, but sadly overpriced on Amazon.com<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA221I9R7I92OROBlrgL885W157P11.txt</id>
<title></title>
<body>
<text>Scent gives me severe headaches
I have purchased the other cottonelle wipes (in white package) for years and been very happy with them. I assumed the Cottonelle for Kids was simply a smaller version of these, so when I saw them on sale, I ordered them.Who knew one,that they would be so heavily scented and two, that the smell/scent of these would be so horrendous that I'd develop severe headaches? I cannot even have them inside the plastic box/containers in the room without a headache developing. I am going to contact amazon.com to see if I can return the remaining packs. Huge waste of money for me if I can't since I can't use them.I don't understand why anything marketed for children would have such a heavy and awful scent to it.Would NOT recommend these to anyone due to the scent issue. (Yes, scent is personal, but I don't have severe headaches when using other scented personal care products.)<text>
</body>
<category attribute="sentiment">negative</category>
</document>
<document>
<id>E:\Amazon\groceriestest\negative\C16310101IS-2-V0RA2283LEWEZE77DBmedL242W47P4.txt</id>
<title></title>