lewtun HF staff commited on
Commit
67d5b13
1 Parent(s): bd1f7ab

Add external subsets

Browse files
amazon_counterfactual.py CHANGED
@@ -36,8 +36,7 @@ The dataset contains sentences from Amazon customer reviews (sampled from Amazon
36
 
37
  _HOMEPAGE_URL = "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset"
38
  _LICENSE = "CC BY-SA 4.0"
39
- _LANGUAGES = {"de": "German", "en": "English", "jp": "Japanese"}
40
- _ALL_LANGUAGES = "all_languages"
41
  _DATA_DIR = "data/{lang}_{split}.tsv"
42
  _VERSION = "1.0.0"
43
 
@@ -56,12 +55,6 @@ class AmazonCounterfactual(datasets.GeneratorBasedBuilder):
56
  """The Amazon Multilingual Counterfactual Dataset"""
57
 
58
  BUILDER_CONFIGS = [
59
- AmazonCounterfactualConfig(
60
- name=_ALL_LANGUAGES,
61
- languages=_LANGUAGES,
62
- description="Sentences from Amazon customer reviews annotated for counterfactual detection binary classification.",
63
- )
64
- ] + [
65
  AmazonCounterfactualConfig(
66
  name=lang,
67
  languages=[lang],
@@ -70,7 +63,6 @@ class AmazonCounterfactual(datasets.GeneratorBasedBuilder):
70
  for lang in _LANGUAGES
71
  ]
72
  BUILDER_CONFIG_CLASS = AmazonCounterfactualConfig
73
- DEFAULT_CONFIG_NAME = _ALL_LANGUAGES
74
 
75
  def _info(self):
76
  return datasets.DatasetInfo(
@@ -78,7 +70,7 @@ class AmazonCounterfactual(datasets.GeneratorBasedBuilder):
78
  features=datasets.Features(
79
  {
80
  "text": datasets.Value("string"),
81
- "label": datasets.Value("string"),
82
  "label_text": datasets.Value("string"),
83
  }
84
  ),
@@ -89,9 +81,9 @@ class AmazonCounterfactual(datasets.GeneratorBasedBuilder):
89
  )
90
 
91
  def _split_generators(self, dl_manager):
92
- train_urls = [_DATA_DIR.format(split="train", lang=lang.upper()) for lang in self.config.languages]
93
- dev_urls = [_DATA_DIR.format(split="valid", lang=lang.upper()) for lang in self.config.languages]
94
- test_urls = [_DATA_DIR.format(split="test", lang=lang.upper()) for lang in self.config.languages]
95
 
96
  train_paths = dl_manager.download_and_extract(train_urls)
97
  dev_paths = dl_manager.download_and_extract(dev_urls)
 
36
 
37
  _HOMEPAGE_URL = "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset"
38
  _LICENSE = "CC BY-SA 4.0"
39
+ _LANGUAGES = {"de": "DE", "en": "EN", "en-ext": "EN-ext", "ja": "JP"}
 
40
  _DATA_DIR = "data/{lang}_{split}.tsv"
41
  _VERSION = "1.0.0"
42
 
 
55
  """The Amazon Multilingual Counterfactual Dataset"""
56
 
57
  BUILDER_CONFIGS = [
 
 
 
 
 
 
58
  AmazonCounterfactualConfig(
59
  name=lang,
60
  languages=[lang],
 
63
  for lang in _LANGUAGES
64
  ]
65
  BUILDER_CONFIG_CLASS = AmazonCounterfactualConfig
 
66
 
67
  def _info(self):
68
  return datasets.DatasetInfo(
 
70
  features=datasets.Features(
71
  {
72
  "text": datasets.Value("string"),
73
+ "label": datasets.Value("int32"),
74
  "label_text": datasets.Value("string"),
75
  }
76
  ),
 
81
  )
82
 
83
  def _split_generators(self, dl_manager):
84
+ train_urls = [_DATA_DIR.format(split="train", lang=_LANGUAGES[lang]) for lang in self.config.languages]
85
+ dev_urls = [_DATA_DIR.format(split="valid", lang=_LANGUAGES[lang]) for lang in self.config.languages]
86
+ test_urls = [_DATA_DIR.format(split="test", lang=_LANGUAGES[lang]) for lang in self.config.languages]
87
 
88
  train_paths = dl_manager.download_and_extract(train_urls)
89
  dev_paths = dl_manager.download_and_extract(dev_urls)
data/EN-ext_test.tsv ADDED
The diff for this file is too large to render. See raw diff
 
data/EN-ext_train.tsv ADDED
The diff for this file is too large to render. See raw diff
 
data/EN-ext_valid.tsv ADDED
@@ -0,0 +1,667 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ sentence is_counterfactual
2
+ This does exactly what I wanted it to do and would consider getting more for the other doors. 0
3
+ The only issue I have with this item is that the charcoal won't stay lit with the lid fully down. 0
4
+ The magnet is strong and the plastic is durable. 0
5
+ "Sure, I get that it's a cheap felt hat; but come on - the brim of it should be even all the way across, not scalloping." 0
6
+ I decided not to use this because: - Doesn't look very nice in an adult room. 0
7
+ The fabric is a little thicker than stocking fabric but still a on the pretty sheer/thin side; I would recommend pairing it with a dress or at least a top that covers your bum. 0
8
+ This book should be mandatory reading in every high school history classes. 0
9
+ """It works, but it did disable my \eco\"""" mode setting.""""""" 0
10
+ We were afraid we would have to buy a whole new Bluetooth. 0
11
+ "In the end, I decided to purchase this item and hooked it up to my new surround sound receiver." 0
12
+ "It also came in a nice little black box, so wrapping it will be simple!" 0
13
+ "I Thought it would be a heavy, sturdy figurine and instead it just felt cheap." 0
14
+ The Mountain shirts breathe well and the images on my 5-year old shirts haven't faded. 0
15
+ "As if that weren't bad enough, it does not charge my Blackberry for some reason." 0
16
+ "Instead of adding a few extra inches to the main cord, you have two separate cables that are connected with a volume adapter (shown in the photos)." 0
17
+ I HOPE THE MAKE MORE DESIGNS LIKE THAT...! 0
18
+ "Back to the the platform-bed-frame that I ALMOST ORDERED, I checked out the views and they ALL had some difficulty putting it together except for one fellow that put it together in 50 minutes and he noted himself as very crafty with his hands... so DON'T GET ONE OF THOSE, GET THE QUAD-FOLDING PORTABLE BED FRAME INSTEAD." 0
19
+ All those twists in the plot make the book so hard to put down. 0
20
+ "I like the item, but I didnt get it as part of the free shipping, so paying shipping hurt a little, but I did it anyway (4 starts instead of 5)" 0
21
+ "At any rate, I fell in love with Maddie and hope there may be another story about her." 0
22
+ The only downside is the underwire...which I am not a fan of. 0
23
+ It ended just the way it should have but I will really miss these awesome characters. 0
24
+ "I made 45 baby boots with this item, filled them with the mints I purchased from you and all of the shower guests were pleased." 0
25
+ It would have been easier if the direction of the sliding is opposite from the direction of the button push. 1
26
+ I kept it because I have a different overshirt it will go with. 0
27
+ "I didn't do this, but I wish I had." 1
28
+ "For a monitor that only has VGA and HDMI when you need to plug into a DVI-D port on your computer, this is the connection you want." 0
29
+ Awesome little ring - EXCEPT - my husband wears a size 9 real wedding ring and I ordered a 9 in this ring - it was too small. 0
30
+ "In case you are wondering about the Panasonic ST30, so far so good." 0
31
+ Fits perfectly and the material is soft and stretchy. 0
32
+ "I was immediately drawn into this story, and couldn't put it down." 0
33
+ They somehow made this look much better in the photo. 0
34
+ I usually keep the cable with my laptop (which has a hard metal frame...similar to a macbook air/pro). 0
35
+ I am pleased with them they work great I don't have them anymore because my grand daughter saw them and asked if she could have them I will have to order me some more. 0
36
+ One has a plug that is actually small for my MP3 player. 0
37
+ (I hadn't read The Walkaway when I read The Adjustment. 0
38
+ I can steam many more items now without having to stop and refill it...VERY nice feature. 0
39
+ It was a page burner that I was able to pick up on & off and never lost the plot. 0
40
+ """The story made me think if I could have a \do over\"""" in my life, would I take the opportunity, knowing the possible ripple effects?""""""" 1
41
+ I love that it came with the AC adapter and I did not have to send away for it and spend extra money for what I consider to be a necessity to save on battery costs. 0
42
+ "The ease with which you can empty the dirt collector would be a selling point alone, but it's also fun to see the amount of dirt one can pick up on a floor that appears relatively clean." 0
43
+ Doesn't stick for long periods of time ...not even to clean tile The holder otherwise is a nice shiny design 0
44
+ "I do warn you that when I'm nice and toasty, I do not get very much work done and tend to want a nap...but for the item at hand...job well done!" 0
45
+ "I couldn't afford a new IPOD so, after a little research, I opted for this little jewel." 0
46
+ The shirt fit exactly as is was supposed to. 0
47
+ "I haven't been able to find swimsuits for years because I have a very long torso, and I am not comfortable showing off my stomach!" 0
48
+ If your looking for new earphones and still browsing trying to get the best deal I'd stay stop here because finding a much better IEM at this price isn't going to happen. 0
49
+ Wish they had a little stretch to the waist....but they don't. 1
50
+ "In the interest of fairness, I did not have a window near my TV to give this antenna the best shot at getting those stations." 0
51
+ "This dress is slightly different from the picture, but it is still gorgeous!" 0
52
+ It provides you a roadmap to keep things simple. 0
53
+ "He is self-published and you can tell it by the editing but if he had more support on that end he would rank in the same category of John Sanford, interesting plots, intrigueing stories, good characters and good details." 0
54
+ "There seems to be a fair amount of glue in the pen, too." 0
55
+ I should have had these to listen to my music a long while ago - There great! 0
56
+ I just wish it wasn't a run on series. 0
57
+ As i said after reading his first novel.....There is a new master of the macabre and his name is not King or Koontz it's C. Michael Powers! 0
58
+ A great story about taking a chance and finding what was missing. 0
59
+ "I realize the nature of batik, but these were the only splash spots like this on the whole piece, and it was as if they were in the absolute worst spot they could be in and it just didn't look good so I sent it back." 0
60
+ No extras-even FM radio would have been a nice touch. 1
61
+ I wanted to try this style jacket and figured at the reduced price it would be worth it. 0
62
+ This could have been sized better as it runs small but i still love the logo :) 1
63
+ "The fabric is a little plastic - y, but the colors are beautiful." 0
64
+ Not enough fullness to look good on the christmas tree. 0
65
+ I understand that with the amount of pages there really wasn't room for the world building but I wish I understood more. 1
66
+ """The screw that came with it, I think, was a 1/2\ screw so if you're going to be hanging this up to dry wall/ indoors, make sure you use a larger screw and make sure there's a stud behind the area you're going to be hanging this.""""""" 0
67
+ However there were a few things I would have liked to have a bow on top of the wrapping. 0
68
+ "We decided to try this bed for our grandson to use in Grandma and Grandpa's bedroom, so daddy and mommy could get some rest without him in the middle of their bed over Christmas with us." 0
69
+ I now must read book about the Australian chapter of their lives. 0
70
+ "Out of all my 1000's of books read, I must say this one has touched me the most." 0
71
+ It's also long enough to actually allow you to have the device a good distance away from the display it's hooked up to. 0
72
+ If you are a begginner in this field is a must read! 0
73
+ "Though the sizing shows basic (such as 8, 10, 12) I chose to e-mail Jolly Bridal my measurements since they give you a chart of what they need." 0
74
+ "The jacket is nice and soft, but the fit was somewhat small and although it looks in the picture like it would have a flattering fit, it did not for me; maybe it would look better on someone with a smaller bust." 0
75
+ "I’m usually approach reading a sequel for a romantic couple with a bit of trepidation - much like a box of chocolate, you never know what you’re gonna get." 0
76
+ "So being the team player that I am, instead of making everybody miserable (because the office thermostat was in front of my desk, LOL) I opted to purchase this heater." 0
77
+ You have to make sure you have the right fittings for your tv. 0
78
+ It provides tons of practical ideas about how to reach out to those who aren't part of our evangelical sub-culture. 0
79
+ "..Along with the Klipses and this Sony center channel speaker, I'm running Boston surround speakers [[ASIN:B001GIOSVM Boston Acoustics CS23B Classic Series Satellite Speaker (Black)]] and the 100 watt 10 inch Sony Subwoofer[[ASIN:B000OL3QTW Sony SA-W2500 Performance Line 100 Watt Subwoofer]] at about half throttle!" 0
80
+ I really couldn’t get past his poor treatment of Lizzy to wish these two a future together. 0
81
+ "Excellent story line, couldn't put it down." 0
82
+ These are currently my favorite behind the neck style headphones. 0
83
+ Looking forward to the next book in the series. 0
84
+ "It will fit into a bathroom sink drain but as the bristles just stick out from 2 sides and don't go all the way around, it will take more effort to clean a drain pipe." 0
85
+ "I haven't used it yet, but if you google Crafters Workshop Bricks with blog you will see tons of wonderful projects you can do with it." 0
86
+ GREAT DISIGN AND COLOR BUT LOOKS THEY WENT FROM 7 YR OLD TO 3 YEAR OLD SO IF YOU ORDER THE SIZES AREA CRAP SHOOT GOOD LUCK. 0
87
+ It will not be usable for what I purchased it for. 0
88
+ "A great price for two, I really didn't feel like spending much money on a rug that my cats will tear up." 0
89
+ But this is still one of the best series I've ever read! 0
90
+ """She loves this dress...the only thing she doesn't like is the netting at the top because it is \\\\\itchy\\\\\"""".""""""" 0
91
+ Just pull it apart very slowly and it should be OK. 0
92
+ Not as cheap as I thought it would be! 0
93
+ We would have preferred silver but we still love it. 1
94
+ I had to return this and exchange for a large. 0
95
+ I had to fill in the missing paint with my own black paint and then coat it with clear sealant. 0
96
+ "Yep, they're expensive, but I won't buy another brand for my hoodies." 0
97
+ Any smaller and I think my husband might have felt pushed out of bed a bit. 0
98
+ Now you don't get much of any bass from this -- you MUST have a big speaker to get good bass. 0
99
+ It has you sewing french seams and top stitching seams which results in a very professional look but not the kind of thing I would want to do as a first project. 0
100
+ "So the headphones are exactly what I expected...not great, but better than most of the earbud crap that is out there." 0
101
+ "I always enjoy a story that has a little funny, danger and sex.........." 0
102
+ It was a bit taller than I thought it would be but works great so far and very convenient. 0
103
+ I bought it to hold towels for the pool. 0
104
+ "There's also a lot of history about this war that's going on, and Mira's personal history which plays an integral role in everything." 0
105
+ "I'm used to standard terry towels, and I must say the experience of these linen towels is just so much more luxurious." 0
106
+ Those kind of things should be caught in the editing process but they weren't. 1
107
+ I couldn't put this book down and can't wait for the next one!! 0
108
+ "Give them only 4 stars because 2 of the small plastic protective caps, for the screw holes, were missing." 0
109
+ "If you are 20 women's size and up, it won't be big enough." 0
110
+ Packaged well and comes with a carrying case that is also spectacular. 0
111
+ "It was a little too big for me, but I'm pretty small and I could comfortable wear my push-up bra under it, and it's black, so you can't hardly tell." 0
112
+ "This is a good product and the price is great but, I found that I had 2 shelves left after putting the movies on the rack." 0
113
+ I really liked the over the neck strap instead of a spaghetti strap outfit. 0
114
+ THE RAINBOWS JUST PERK EVERYONE'S SPIRITS...WAY TO GO! 0
115
+ "These headphones wont thump your head with base like over-ear headphones, or more expensive IEM's or other in ear headphones, but they are better than I expected." 0
116
+ So it seems like they used a super tiny woman as their initial fit model and then when sizing up to XL just decided to widen the pants dramatically without really testing these out on real women. 0
117
+ All except one would only scan for a few seconds then move to the next without playing anything. 0
118
+ That is similar to the issues with the female lead character who is perfect except for a few months when she fails to understand what is happening. 0
119
+ "I have read this device works fine with the iPhone 5, so I thought going into settings and tweaking the relevant parameters would do the trick and soon I'd have sweet wireless stereo music in my room." 0
120
+ We used it as Thing 1 & 2 wigs. 0
121
+ The hidden button at the waist got me the first time but I have grown used to it and it holds the coat together with the belt over it. 0
122
+ "Even though I had seen the movie, I knew the book would be deeper; poignant and engrossing." 0
123
+ "We should be calling it Southern California Tesla Company instead of Edison, Tesla made our electrical system work." 0
124
+ "We are trashing it, vowing to be much more careful before we order any more from Amazon." 0
125
+ "It doesn't bother me, but buyer beware, unless you have a really long torso, they're going to rise higher." 0
126
+ "Pros: Brilliant screen, plays AVI and MP4 video formats (plus others), remembers where you left off while watching a movie (for multiple movies), has both hdmi AND composite 3.5mm outs (RCA red white yellow capable with correct wire)." 0
127
+ After I got into it had a hard time putting down. 0
128
+ "If you like a bit of brutality in your femdom abduction stories, this one will probably appeal to you." 0
129
+ I didn't know ths names of each building in the pictures would be part of the framed artwork. 0
130
+ I haven't used this hat too much but I wanted to make sure my daughter had one for spring and summer time. 0
131
+ Much shorter then it looked to me just wants feeling it as must as I thought so sorry but color is great 0
132
+ "Also, while you're at it, take a couple small pieces of tin foil and place them in the bowl section." 0
133
+ the volume has to be allllllllll the way up on my macbook pro (whether its plugged into the laptop itself or the splitter. 0
134
+ "Anyway, I read it to the end, but mostly because I just wanted to get it over with." 0
135
+ So I figured it must be a very good vacuum....but was still hesitant about spending over $600 for a new model. 0
136
+ "I bought this set for my wife, and she loves them!" 0
137
+ I've been buying these socks and no others (except black) for my kids for several years now. 0
138
+ The real tie looks just like it does in the picture. 0
139
+ Perfect size for adding bigger favors if you wanted to do that. 0
140
+ For the price of this shirt I thought it would be made of a much better material and it is not...it has no structure and just hung loosely off of my body making me look short fatter and frumpy! 0
141
+ """Another fun story I wish I could just put simple comments in here like \\\\\this was fun, try it for yourself\\\\\"""".""""""" 1
142
+ This material is a bit thin but not too bad. 0
143
+ A little darker than expected but it feels and looks great! 0
144
+ "That was the straw, because even if it did sound marginally better than the Onkyo, why would I limit myself to such frustration when the Onkyo literally takes any disc I throw at it and plays it without a whimper?" 1
145
+ "I sometimes like a book I can pick up and read a chapter or two, and then close, without having to remember where I was in the story." 0
146
+ """While her novel follows the traditional plot of \once magic came out of the closet\"""" that is found in so many of these, Price's world-building is solid & distinct (unlike some others where it's practically Harrison's backstory).""""""" 0
147
+ It's totally awesome and can't wait to wear it more often!! 0
148
+ As soon as I plugged it in...it carried a current that burned my TV and PC. 0
149
+ "It came with chipped paint on two spots, and that pretty much destroys the simple clean look." 0
150
+ The author does a great job of showing the relationships between the various characters. 0
151
+ My experience is that they always run slightly too large. 0
152
+ It fits my bluetooth and is easy to put on. 0
153
+ I thought this would be a good snowflake to add a photo to and make into an ornament. 1
154
+ Very cheap not made well and when I washed it it came out a completely different color. 0
155
+ "I thought it would be a little thicker, but nonetheless, it works great." 0
156
+ Cool case; however I lost my spare battery when I placed it inside the mesh compartment - it doesn't seal. 0
157
+ The colors were more vibrant than in the picture! 0
158
+ "The coat doesn't give me room to put on a sweater with it, it also had a hole in it, I didn't get a chance to wear it yet because I have to spend more money to get the hole stitched up." 0
159
+ "Nothing special, just a bit better than the ones that came with the iPod." 0
160
+ "It has all of the necessary features that I want without all of the extra, seldom used features found on more expensive machines." 0
161
+ "The second is that the Item Image shows the Fairy Tail Keychain, and the RaveMaster charm, but mine did NOT come with those, so there is false advertisement in the image...the second image is accurate though." 0
162
+ The power/suction just isn't strong enough so it takes longer to get stuff off the floor/seat than we wanted. 0
163
+ "THIS IS THE SECOND BOOK BY CLINT HILL THAT I HAVE READ AND ENJOYED IT JUST AS MUCH AS THE FIRST ONE, ...." 0
164
+ """I would give it a five star rating if it were not peppered with errors like using the word \pedaled\"""" for \""""peddled\"""", etc.""""""" 1
165
+ All I had to do was plug it in! 0
166
+ "I would have gone to an XL, but then the collar would have been too wide." 1
167
+ """While Buddy was interesting as a breathless young mechanic diving into the wrenching of exotic foreign motorcars in the original series, the hero, herein, as a knowledgeable writer for \\\\\Car and Driver/Road and Track\\\\\"""", is really unsympathetic.""""""" 0
168
+ When I opened the box I couldn't believe how nicely it was packaged. 0
169
+ I AM CERTAINLY USING THIS SELLER AGAIN AND AGAIN. 0
170
+ "Very good material, light and comfortable hoodie BUT the zipper... once you manage to zip it up, it opens from below!" 0
171
+ "That may sound silly, but didn't want folks to have to get into the TV menu items to switch between inputs or use the remote at all." 0
172
+ "Even when condensed as far as it will go, the strap sticks out a bit and doesn't run flush along the back of my head." 0
173
+ "I wanted to know what was going on in Oakley's head, not Cole's - Cole's reaction was predictable and boring to read, and there was never any insight to Oakley's thoughts." 0
174
+ It won't even hold those without falling from the wall and losing it's stickiness! 0
175
+ "With the Mrs. designation ( rather than bride), my niece can use it for a longer time without feeling too precious." 0
176
+ It was easy to operate the headphones and pair with my iPhones. 0
177
+ The fabric was not exactly what I was expecting but I went with it. 0
178
+ "------------------ORIGINAL REVIEW:--------------------- They have a good sound, they feel well constructed, and look REALLY nice." 0
179
+ "I choose the book because I had read an earlier book by the same author, inevitable." 0
180
+ I GUESS THAT'S THE CHANCE I TAKE BY ORDERING CLOTHING ON-LINE. 0
181
+ You will get as much out of it as how much you put into it. 0
182
+ It did fall off a couple of times and had to clean the rubber. 0
183
+ "I use it to read/use the laptop in this futon and I find it very firm, maaaybe a little too firm, hence the 4 star review, but if much softer I guess it would have less structural integrity and may not stay put, so..." 0
184
+ "This portable speaker seems great, small and compact." 0
185
+ There is always an enticement to set you up for the next book. 0
186
+ I really liked it except the ear piece is a little bigger (even the smallest size) than ones that I am used to so I can't leave in it my ear for too long. 0
187
+ We have a lot of digital and electronics in my house and most would be too expensive to replace if we had a power surge or a lightening strike. 0
188
+ "The Tory itself was good, but there were so..many grammatical and spelling errors it made it hard to.read." 0
189
+ Wow I am really glad I didn't read these reviews BEFORE I read this book because I would have passed on the book and missed a really great start to a series that captured my attention and made me laugh all the while using my imagination and painting a clear picture of the author's world she was building for us. 1
190
+ This product came with a very odd smell and had what looked to be lead in it for added weight in the resin. 0
191
+ I LIKED THE FACT THAT THIS WAS'T YOUR TYPICAL DOPE BOY BOOK. 0
192
+ Was not clinging to me but I was not lost in it. 0
193
+ "They are just the led without a bulb, and the individual lights aren't really replaceable, but they work." 0
194
+ I was very impressed when I received this costume! 0
195
+ This tightness also means that you can pull the entire loaded hanger down and lay it out with your suit for matching them up if you prefer this method. 0
196
+ I can literally go to a different country and find a charger for my phone in any person's house... unless they use Apple products. 0
197
+ "And its also frustrating to read that Words can have 3 diffrent meanings in 7 diffrent spanishspeaking countries all the time, explained over two pages." 0
198
+ I would say it was like sleeping on a brick instead of a pillow of beads. 0
199
+ "You sometimes have to use it upside down to get everything under the fridge, a piece of furniture; but it flexes well near the intake on the hose end." 0
200
+ Pros: - comes with a level tool - wide range of adjustment - supports wide variety of bolt patterns. 0
201
+ It had the hook side the velcro on the back so all I had to do is sew in the loop side to our first aid bag. 0
202
+ I couldn't get a good seal with ANY of the 4 sizes provided. 0
203
+ "), they could be a bit looser but I guess I have a big head." 0
204
+ This shirt was perfect and I even bought him the helmet and hammer- the shirt fit perfectly too! 0
205
+ ":) I had some old bra extenders, but with the new purchases and with them being four hooks each, this made perfect sense to get these extenders." 0
206
+ "But I liked especially the fit and style, it's really great!" 0
207
+ "The answer is: Heal yourself, just like people have done in the past, but now you can benefit from modern-day knowledge." 0
208
+ "(They were packaged in some oversized, random bags.)" 0
209
+ ":) And yes...the idea about per item shipping is ridiculous, but I figure it frees me to order only one thing instead of having to spend a huge amount just to save on the shipping." 0
210
+ "That is what headphones are for.I suppose many people do so but...Earbuds in my humble opinion are for active, athletic people and should be resistant to harsh environments." 0
211
+ I guess I wanted a more rugged looking cowboy hat like the Minnetonka I am replacing. 0
212
+ Connection from our cable box and our PC for streaming worked without a hitch. 0
213
+ Looks great love it a little lose on the breast area 0
214
+ "DOA on Arival, no help from seller package missing parts, and looked used." 0
215
+ Back is designed so that I get a smoother back under my knits. 0
216
+ "If this book doesn't fill you with the Spirit of Christmas, nothing will." 0
217
+ Haven't put the water resistance to the test. 0
218
+ "Good quality belt, looks good, nice price." 0
219
+ "Yes they were working at cross purposes which is the way romances seem to go, but overall it wasn't annoying enough to put the book down." 0
220
+ "It is a tedious method of tuning in your favorite stations, but after trying to program the stations I wanted, it quit doing so after only three." 0
221
+ They weren't useful for us because they couldn't be adjusted. 0
222
+ "I have had a crank radio for years, so the solar is a welcome change!" 0
223
+ I would have loved for this story to be a little bit longer so I could get more invested the characters but either way I really enjoyed this book. 1
224
+ When I tried it the waist was perfect but for some reason the people that made this dress expected me to have bigger boobs as a size 16. 0
225
+ "Not a huge deal in the grand scheme of things, but still... BTW...this item was a gift, so I can't speak to how they actually look on the tree." 0
226
+ It is always a favorite when I wear it. 0
227
+ "Here's my take after the fact: the Sony model has good, but not superb sound quality as they would have you believe, and their marketing claims regarding bass quality are definitely exaggerated: the bass of all frequency ranges stands out as rather shallow and underwhelming, even when compensated for with an equalizer." 0
228
+ I couldn't wait to see how it would all turn out. 0
229
+ "I bought two of these for red & whige holidays.... One for my house table and one for outside tables..For the price, they are fine." 0
230
+ They do a great job of cutting out a lot of noise. 0
231
+ He giggled throughout the book and he stared playing pretend with Jass and Marble. 0
232
+ "But, was able to mount directly to the wall above the TV." 0
233
+ It tells you that your past doesn't have to define your future! 0
234
+ "I bought the 5 foot cable from Amazon after I was not able to find the 5 footer locally, I use two of these in a gigging bass rig and they have not let me down." 0
235
+ But I would be reluctant to purchase again for a teenager for an upgrade on an MP3 player. 0
236
+ "Before I bought these, I noticed that the reviews for many other brands complained about cardboard collars instead of plastic collars like the Miele brand bags have." 0
237
+ "Also, I wore a bra but couldn't wear any underwear due to silhouette." 0
238
+ the shirt does have a nice fit and hangs well. 0
239
+ Bottom line is I couldn't find a better remote under $50. 0
240
+ "It's 100 assorted, with plenty repeat colors." 0
241
+ Really good I wanted there love story to never end! 0
242
+ "After one washing, it does not appear to need ironing." 0
243
+ "I was at first a bit wary about these but ALL DOUBTS ARE GONE All 10 bottles were in pristine shape, none were broken and they are perfect for pendants and vials." 0
244
+ "Could have done without the explicit, gory details of the fights--skipped over those parts." 1
245
+ I wanted to buy a different style of a skirt. 0
246
+ "Still, I would definitely recommend anyone who wants to check out a good AH Thriller that this is the one to read." 0
247
+ Fits normal and it's the same as picture. 0
248
+ i still use it and its a great sakura length. 0
249
+ I wanted a pair of black jeans that was appropriate for work. 0
250
+ This book popped up on my radar a short time ago and I couldn't get it out of my head. 0
251
+ It takes a majority of the book for our heroine to come to any real realizations and I feel the story has so much unlocked potential. 0
252
+ "I am a 34E, but I had to purchase a size up in this cut...and I am still spilling over." 0
253
+ """I am 5'4\, 39 - 29 - 41 and I was please to find that these came up to my belly button, practically \""""high waisted\"""" by today's standards!""""""" 0
254
+ But the Bose doesn't have it so hey! 0
255
+ So far seems great haven't washed it yet hopefully it's finally a quality sweatshirt!!!!!! 0
256
+ They are on a heavy tag board heavier than poster board. 0
257
+ The only thing I would do to improve it is provide an option to mount the power cord on the back instead of the side. 0
258
+ "I must not have read the specs right, but this thing is about the size of a box of checks (does anyone use them anymore?)" 0
259
+ "This product is great, fits well and shows off in all the right places." 0
260
+ "I literally have hundreds of t-shirts, but this is an instant favorite!" 0
261
+ I don't know how I managed without it. 0
262
+ This book makes you realize that you should not take the little things for granted! 0
263
+ But it takes some sponge action to get it clean. 0
264
+ "After using this vacuum for three months, my complaint is that the attachments and the hard extension wands continue to fall off." 0
265
+ "this replacement blade works great on small cuts no matter how complex this is and works great works surprisingly well, cut cardboard and vinyl without any problem, although I have not tested fabrics." 0
266
+ I couldn't stay focus at the gym without my music. 0
267
+ It was a very easy fast read that kept me entertained. 0
268
+ "Adding now that after a few months I still really like this vacuum, especially that the hose is easy to disconnect and connect, I hated the hassle it was doing this on my old vacuum so I never used the attachments." 0
269
+ Over all its better than the more expensive one that tore. 0
270
+ My one greatest wish is that some of these stories be continued or further developed! 0
271
+ I really want to love this speaker however I cannot move more than 10-12 feet away without the sound cutting out. 0
272
+ """While there is nothing wrong with publishing sequels and \series\"""" books, I feel strongly that each book should be complete enough to stand on it's own.""""""" 0
273
+ (As long as this does not bother you.. then you should purchase it! 0
274
+ "Also, the product we received doesn't match the picture on the site." 0
275
+ "Thank you, ----------------------------------------------- PS: the speaker remember the devices that previously connected to it and sync automatically as soon as you turn the Bluetooth on your mobile." 0
276
+ Just expect to buy a new pair at some point...they won't last forever. 0
277
+ "The iron-on adhesive backing worked so well that I haven't had to even touch-up with needle and thread, even the stem portion." 0
278
+ This tale is told with a perspective I would have never considered. 1
279
+ This time we got lucky I guess and it worked. 0
280
+ The only reason I give this a three is that I wasn't interested in her tips for job interviews and I would have liked more examples of other girl bosses. 1
281
+ You need two more hands to hold the thing while putting the next piece. 0
282
+ "The fabric is really nice, kind of silky, and the color is gorgeous!" 0
283
+ "Dont know how ive lived without it, but i assure you, i NEVER will again." 0
284
+ Conclusion: I consider myself to be an audiophile... however I did not have much experience with ear phones. 0
285
+ HE WAS TRUE TO HIS WORD AND WE HAD A BRAND NEW CART THE VERY NEXT DAY AND THE PREPAID RETURN LABEL WITHIN SECONDS VIA EMAIL. 0
286
+ "I hate open flame, love tars, but my husband is leery of having them on all the time." 0
287
+ You hear it every time you turn your head around. 0
288
+ The Nomad IIc comes with 32MB onboard memory and I suggest getting a 128MB smart media card and forget anything less because this is 160MB total memory at less than $200.00. 0
289
+ To me a series of books are books that contain a new storyline but involved characters from the previous ones. 0
290
+ Perfect fit against the outdoor couch we bought it for. 0
291
+ "I can't get enough, and can't wait to read her next masterpiece!" 0
292
+ "Even more touching, yesterday was 9/11 and as soon as he saw the day and date on his clock, he made the connection to its historical significance...something that would have otherwise escaped him." 1
293
+ Other than that I do like the Super battery pack. 0
294
+ "Although, I do feel those should be things a man does in the home anyway, and not just when he wants sex." 0
295
+ "If I gain another ounce, it won't zip up in the back." 1
296
+ There wasn't anything about this book not to love. 0
297
+ "If there were smaller sizes, it would have been much better, but as it is I can't wear it with any hope of resembling a nun." 1
298
+ It was full of angst and I would highly recommend not reading too much of the book description because I think it gives a LOT away. 0
299
+ "A truly disturbing book (parts of which read like a loony conspiracy theory, except that it is quite clearly true, and explains many things we have experienced, both as citizens and as market participants." 0
300
+ "If you are a taller lady, go for it." 0
301
+ "It has a six section pull out antenna for FM, SW and weather." 0
302
+ But I got it for $30 with free shipping. 0
303
+ I have heard her speak and have no reason to believe that the book won't be as enjoyable. 0
304
+ I was unable to get my computer to recognize it as audio input. 0
305
+ A skin color bra will be needed for the color white. 0
306
+ "I wear a size 10-12 and take a small in these, so I'm not so sure about the sizing." 0
307
+ "That problem aside, the larger issue is that Canterbury plows through small mammals, medium mammals, birds, and fish in a few pages, and spendsmost of the chapter describing facets of trapping that never get illustrated adequately." 0
308
+ This is the first story that I have read by Jessica Cage and will definitely keep me coming back to read more of her work. 0
309
+ And when it is empty it will just look like a nice little sculpture piece. 0
310
+ "The stickers are really cute, and I like that it comes in a box so I can eventually pack it away as a keepsake." 0
311
+ The only draw back to this is probably the thong that came with it. 0
312
+ They're much better than the stock batteries with that device. 0
313
+ "Admittedly, his character isn't all that well developed in this first novel; he just doesn't get many lines." 0
314
+ "The padding is a little bulky, but if you wanted a padded bra for added size, this is your bra!" 1
315
+ "I would be VERY hesitant, however, to regularly submerge this thing." 0
316
+ because we had some vacation photos that were an unusual size that we wanted to frame (you know the ones they take for you and then charge an outrageous amount to buy at the end of the day). 0
317
+ I had to purchase the 2nd pillow from another website and it was hard to find. 0
318
+ I haven't been able to find one of these tower fans that is easily cleanable. 0
319
+ "I must say I loved the ending ( no spoilers, though), and cheered the final dramatic event, even though it wasn't very realistic." 0
320
+ "There are a few downfalls, not sure if its because I am larger busted but the straps seem to fold in ward." 0
321
+ This is a cheap Chinese made produce but what do you want for thirty five dollars? 0
322
+ "My best friend wanted one like mine, so I searched online and finally found this one." 0
323
+ "Awesome deep pockets, easy back zipper and comfortable material." 0
324
+ Other reviewers have claimed these pants are way to long. 0
325
+ "I normally wear a small, so you can gauge your size to order from this info, hopefully." 0
326
+ "If you're looking for headphones to use at the gym while you're talking with friends, then these are good, but if you're more of a solo workout person and like to hear the sound as best you can without anything interfering, don't get these." 0
327
+ (This also indicates how much I liked these headphones when they worked.) 0
328
+ Being me I called customer support to ask if i got the recieved the right thing and they said that for their company khaki is olive instead of khaki but it still looks good. 0
329
+ Must read for believers looking for more of God and his glory. 0
330
+ I wish they made one of the SNES controller. 1
331
+ "Though my monitor doesn't support it, DP allows monitors to be daisy-chained so one output port can run multiple monitors." 0
332
+ Would have given 5 stars if the suction was a bit better. 1
333
+ I thought there would be more meat and less trite old cold call cliches. 0
334
+ "They trashy, sexism that they wrote of doesn't play now." 0
335
+ "While the quality was all I could have asked for, the color was a surprise." 1
336
+ except that the collar part is a little bit wrinkle 0
337
+ We feel at ease when it comes to this smart device. 0
338
+ We had to send a medium back for an extra large. 0
339
+ "All of Nathan's books are amazing, but the Niche Freelancer really hit at the heart of what I was looking for to find my groove in freelancing." 0
340
+ Very pleased with this power strip / USB charger. 0
341
+ Very little to no suction on the dry side. 0
342
+ "It drives my speakers really well, with no discernable distortion so far as I can tell (at least, at the volume levels I use it at)." 0
343
+ "Wanted to buy another this year, but are you CRAZY OR JUST GREEDY!" 0
344
+ "And while I strive to write reviews with a PG rating, I must mention the author’s overuse of a certain four-letter word." 0
345
+ However due to the fact that there was a recall on the radio I am concerned that I will get one that was from the early manufacturing run that had problems. 0
346
+ "I'd purchased it as a backup for when the original went bad, so I had it in the box so long I couldn't return it and had to throw it away." 0
347
+ A little flimsy but really good size and shape! 0
348
+ """In spite of a price tag that is a bit unreasonable (meaning it is a very \\\\\high margin\\\\\"""" item) it performs well for what I wanted.""""""" 0
349
+ "If you enjoy historical fiction, you will enjoy this one!" 0
350
+ "I previously owned a Dyson, and was hoping, based on consumer reviews, that this would be a less expensive version of that." 0
351
+ "It has a wonderful ending I wasn't really expecting and if you just want a nice sweet read, this is your book." 0
352
+ "However, despite this major flaw, I really loved the two main characters and how they were both complete hot messes." 0
353
+ These drives usually comes with a single ended USB cable but on some computers/laptops a single USB outlet can not provide enough current for the drive. 0
354
+ "I found them repulsive and had I not agreed to read the book, I would have stopped at the first mention of them." 1
355
+ "I also took a chance (despite very poor reviews) on a Lexar Echo ZX 32GB USB Flash Drive to leave plugged into the Mondo (the drive is tiny, and won't stick out the back), but like other reviewers, mine arrived DOA - I returned it, and purchased HP's equivalent (v165w) since I've had good luck with all my HP USB Flash Drives." 0
356
+ I wish I could just hook up a hose rather than connecting and routing an tube internally 1
357
+ I do wish that it hung more as it does in the picture. 1
358
+ I WOULD BUY MORE IN THE FUTURE FOR MY OWN REAL TREE. 1
359
+ But when I looked at the packaging it said 6.5oz Hand poured candle instead of the 9oz as shown. 0
360
+ "Only complaint I have is that they run just slightly big, so if you normally wear a 2XL shirt, buy an XL." 0
361
+ I love this picture...what a deal it even has the rod in the botton as well as the top. 0
362
+ These fit so I won't complain about that. 0
363
+ The body is long enough to stay tucked in. 0
364
+ They do not have a blu-ray logo on them which is what I wanted and what they advertise. 0
365
+ This is an investment that should last me for a while. 0
366
+ Loved them wanted to order 10 dozen more but the price went up and they are out of stock.. 0
367
+ I bought a lot of Blu-rays from Hollywood Video(RIP) before they went under and these boxes really fit the bill. 0
368
+ I like this particular unit over the last gen because you can run (from what I can see) an unlimited number of speakers. 0
369
+ "As a woman I hate to say it, but I do love reading about DRAMA with a HEA." 0
370
+ Sometimes they make a zapping noise and turn off without warning. 0
371
+ "On a full charge, the battery lasts a little over four hours - that's the only drawback - battery life could be better - however, it's a quick charge." 0
372
+ "this one doesn't mount on wall, only stands on base." 0
373
+ The characters are well developed and the story is wholesome and heartwarming. 0
374
+ """I would have given these 5 stars, but the foot is \thin\"""" like a dress sock... and I have to wear 2 pairs of socks when I wear these because these don't absorb any moisture or provide any cushion.""""""" 1
375
+ My son had to pay $100 dollars for glasses that have to be charged and they are heavy to wear. 0
376
+ I had to reload my old player before every trip! 0
377
+ """I could absolutely relate to the main character's dilemmas, because Asian families can be very successful in \guilting\"""" each other into complying with family expectations.""""""" 0
378
+ (I started with the pink and yellow vine themed one.) 0
379
+ I also like the polishing pad that comes with. 0
380
+ "My only warning is that you sit on them when you use the bathroom, which is fine I don't think there's a way around it and it's not like they get gross, it's just something that didn't occur to me so like, be prepared to expect that." 0
381
+ Now bouncing back and forth across the country leaves me without it on occasion. 0
382
+ "I'm 5'8\ and I prefer at least a 33\"" inseam - these are perfect!""" 0
383
+ "Update I will not use this in my Rainmate machine .It leaves a scum in my tank every-time i use it,and a salt like substance on the base of the inside shaft of the cover.I would worry about that small hole.And i used vinegar and water to clean the tank.Tried it to many times." 0
384
+ "I use this as a hat rack, so when I leave, I can grab one on the way out." 0
385
+ I wish I had had this while I was teaching. 1
386
+ "TRIED ABOUT 10 DISCS SO FAR AND THEY ALL VERIFIY, MINE ARE INFOME30 .THESE ARE CHEAP, WHAT ARE YOU WAITING FOR BLACK FRIDAY?" 0
387
+ "Quality and colors are just as I'd hoped, would buy this again." 0
388
+ Looking at photo looks as if skirt is new length but when arrive it was way too short. 0
389
+ "Fits and stays in place because of the silicone strip on the bottom, now I can wait a little longer to buy bigger pants." 0
390
+ "It comes with a cheap adaptor for speakers, I just removed it and threw it to a box of forgotten things; Overall I like them and I recommend them!" 0
391
+ I have a weak right hand and probably should have taken that into consideration when I chose this style. 1
392
+ "The sleeves are a little bit long (but well, I think thats because of my short sized arms, so nothing to worry about) The hood is a little bit itchy (and it does look fake but who cares) but it is removable." 0
393
+ "Like another read I thought The Billionaire's Obsession reminded me of 50 Shades, but if I had a choice between the two Billionaire's Obsession would be it!!" 1
394
+ "I give it four stars rather than five because it could have used one more edit and proof-read, but that's just the perfectionist in me." 1
395
+ These shorts are great at the pool or the beach. 0
396
+ "Anyone who loves Pride and Prejudice sequels like I do and, I must admit I own every one written, do yourself a favor and buy this book." 0
397
+ This was perfect for my needs......just a small interface to bring it all together in one place...and a remote to boot :) 0
398
+ Very good heater for rooms that are a little larger. 0
399
+ We both love the way it looks and I am happy that it doesn't take up too much space. 0
400
+ Two super hot men that happen to be the ruling pair of a wolf pack...and they want a human woman...to share between them...wow! 0
401
+ What I would have liked to know before I bought this book. 1
402
+ "Worth the less than $20 price, but it came with wrinkles that did not go away after two washes...and the hang tag says no iron." 0
403
+ "These are sturdy enough to link together without fear of them breaking and even survived a crash off the table with no ill effects, though of course they are glass so should be handled delicately.I have five of them linked and plan on supporting them from fishing wire in front of my kitchen window." 0
404
+ However it serves the original reason why I purchased it very well. 0
405
+ They are thicker than tights and warm enough for me to wear under my skirt in the winter. 0
406
+ So I was thrilled when he wrote these books. 0
407
+ "These are good pants, wish they had back pocket and wish they came a little longer in the leg." 0
408
+ NOTE: The cuffs on the legs are finished so they would be a pain to alter unless done professionally or if you have great sewing skills. 0
409
+ It was fast pace exciting and full of suspense. 0
410
+ "I haven't worn 501s in 40 years, and they've improved." 0
411
+ If you are are a looking for a book that is extremely well written this may not be the book for you. 0
412
+ "But alas, it doesn't quite reach that far." 0
413
+ Bought 2 different sizes and had to send both back. 0
414
+ If there is a sequel I won't be reading it. 0
415
+ Loved every page and I truly cant wait for another book by Sebastian Cole. 0
416
+ "Like other one star reviews, this item stopped working for us after maybe 5 uses." 0
417
+ This is one f the great ones because it doesn't follow any common trope. 0
418
+ The quality of their build is much like a cheap kids toy that you would be surprised to see them last a week. 0
419
+ "It's a little bigger then a credit card so holds a couple of bucks ( I'm sure it would hold a wad of cash, but didn't want to leave to much money in my bag) and plenty of change." 0
420
+ I wish more therapist would be open to learning about these kinds of organizations and thus they would be able to better assist clients who deal with these sorts of issues. 1
421
+ I loved the color an idea of the leg wraps but they would not stay up unless you tied them super tight witch looked horrible. 0
422
+ (Just seems everyone is writing like 50 Shades lately) This series is a classical romance with much suspense and steam without all that kinkery. 0
423
+ "We couldn't use the clear plastic bins that had stored our goodies before the remodel, they looked so cheap next to our new closet system." 0
424
+ "We haven't hit the dog days of summer yet, but it's been warm enough to use this 14,000 BTU air conditioner." 0
425
+ "I tried them all, and they all work great!" 0
426
+ I probably should get a phone that can output better audio now! 0
427
+ "I was worried when I first ordered the scarf that it would be too thin for my liking, but it is perfect!" 0
428
+ """He should be called \The Golf Magician\"""", rather than \""""The Golf Mystic \"""".""""""" 0
429
+ "It shipped way faster than expected, my boyfriend loved it (got it for his bday) and he found it comfortable." 0
430
+ "I too had to trim the bangs as they are very long, but this wore perfectly for many hours." 0
431
+ but other then the tightness these are a lot better then the turtle beachs i think and would be the best if they only came in a little bigger earpiece. 1
432
+ "If heat shrink is used on this type of connection, it should be applied after torqued down and over the entire connector." 0
433
+ Wish writers would stop making girls look like they don't know who to choose and such. 1
434
+ "I couldn't see why she would try so hard to keep her latest boy friend that cheated on her and yet she treats Seth, her first love, like dirt." 0
435
+ I had read reviews and knew that the remote did NOT have a power button. 0
436
+ (Probably because they would be flooded with angry comments from customers about their very poor products.) 1
437
+ I loved the comforter but was a little disappointed that the sheets where white instead of dark blue. 0
438
+ "I couldn't hear the outside world, and the outside world didn't complain about how loud my music was." 0
439
+ "It's just a little big, as expected." 0
440
+ "If you're the type of person that wears heels, you probably won't need to worry about the length, but I don't do heels, so I'm going to adjust them." 0
441
+ "On the other hand you have an over-the-top villian, secondary characters that start off strong then disappear, the predictable demise of the baddies, a heroine who (of course) has been trained to use knives and guns, which comes in handy when she has to save her husband's life -- twice, and no epilogue (whatever happened to the oft-mentioned honeymoon trip?" 0
442
+ "I received them on June 27, 2014, if I would have known that I could not return a piece of low quality piece of junk I would not have purchased them." 1
443
+ the plastic is thick and the pictures detail isnt too bad. 0
444
+ The bow tie was cracking and coming off before my son was even able to wear it. 0
445
+ "After setting up the unit on my kitchen table, (which took all of two minutes) I placed one of my favorite albums on the turntable and turned on the power." 0
446
+ It also came with a bag which is plenty big to place the mattress in. 0
447
+ "A great idea, saves on throwing out bras, a suggestion though that they could be made to be adjustable, longer or shorter and to include wider sizes to the design to accomodate new bra designs in the market." 0
448
+ Kangaroo pouch doesn't hold Big Jim and the Twins like it did years ago. 0
449
+ Barnes does start to step out of cop mode a bit and his personal growth in his significant relationship sets a good premis for a continuing series. 0
450
+ There is some great sub narratives in this book that make it special. 0
451
+ All excited.... and then the piece of junk RCA cable that came with the converter box kit snapped off inside my TV's rear RCA jack. 0
452
+ There are many more stories that are just waiting to be told. 0
453
+ I didn't use them for they looked out of place on the Christmas tree. 0
454
+ I haven't used one with this much suction and battery life ever. 0
455
+ "It is true that the fabric is rough, but I got used to it after a few days!" 0
456
+ Anyway I like this author's writing and this story is worth reading for the H alone. 0
457
+ He hasn't given me a place to sit. 0
458
+ My son wanted this hat and was pleasantly surprised when it arrived earlier than expected. 0
459
+ Definitely trying to send back but the seller won't reply. 0
460
+ This antenna is reliable and picks up channels a pretty good distance away. 0
461
+ I knew that would be an issue buying these and accepted it. 1
462
+ "If you have a smooth top stove, you just gotta have this." 0
463
+ The top fits great just wish the bottoms fit too. 1
464
+ (I bought one for myself and for my husband.) 0
465
+ "The color is a bit more lemony that it appears on my screen, however." 0
466
+ "It is a good length; I am almost 6ft tall and was afraid it would be a mini dress, but it is about knee length even on me!" 0
467
+ "So, I was on a mission to find a lightweight down comforter for my daughter (Christmas gift) and me." 0
468
+ This is hands-down the BEST remote I've ever used. 0
469
+ """The sweater is pretty comfy but when it comes to the spelling they forgot the \\\\\s*\\\\\"""" in the word \\\\\""""whale*(s)\\\\\"""" the sleve around the arms are pretty tight so if you have fat arms or dont like your arms to be tightly inclosed u shouldnt get it because it would be waste.""""""" 0
470
+ When you take it out of the package it is nice to give it a quick iron (but I have put them up without and they look great too). 0
471
+ I love this so much I wish I could marry it. 0
472
+ "Had a couple of female coworker try, none of them could open it, so this might be an issue for some." 0
473
+ I didn't like the crown that came with the costume. 0
474
+ I have read 4 other books by Ms. Barrett and have found each read a delectable treat. 0
475
+ """I wish they had \Fit like I dream things will!\""""""""""" 1
476
+ "Still, the speaker provided me with what I wanted and it wasn't that big of a deal." 0
477
+ "The adaptor messes with my computer, makes the display small and when I disconnect it, my computer screen sometimes turns black and or I cant see the whole screen." 0
478
+ """In her own words: \Without the anchor of scripture, we're left to drift in our feelings and natural reason.""""""" 0
479
+ "There is no Power button, there is a sliding switch on the back that you set to \\\\\CD\\\\\"" to use the CD Player and \\\\\""am-fm\\\\\"" to use the Radio.""" 0
480
+ Maybe we should have sprung for the more expensive one? 1
481
+ The good thing is that the battery charges very quickly. 0
482
+ The smaller ones are perfect near the top of the tree. 0
483
+ I originally purchased this for my teen daughter but I began to read and I couldn't stop. 0
484
+ This is an excellent product for someone looking to use VGA devices (I had a security system that output in only vga) on an hd monitor with hdmi. 0
485
+ Also the cargo pockets could have been made larger. 1
486
+ This top was cute on but I wore it once and washed how the label suggested and the fabric went weird. 0
487
+ "I wanted something large enough to do the job, small enough to be inconspicuous, and portable enough to put away when not needed." 0
488
+ These are great little products if you absolutely need these colors. 1
489
+ "While you may choose to get a different pair or brand of socks (which is fine--everyone needs to choose what works best for them and I certainly encourage looking around), I'd recommend these to friends and family without hesitation or qualification." 0
490
+ I gave it a few weeks and I had nothing but trouble with it. 0
491
+ "Don't try to put it on a rough surface, textured wall, etc where it can't really stick and won't accept chalk very well." 0
492
+ "I was concerned that I would be bothered by the wires or the plastic inside, since silly things like that may bother me, but I do not find it a problem." 0
493
+ "If you clean your tub regularly, then this won't be a problem." 0
494
+ "You could stack two or three of these on top of each other if you wanted, but then you have to bend over and hurt your back moving them around.." 1
495
+ Just keep a cleaning cloth nearby cause this shiny finish is finger print central! 0
496
+ "I should have gone a size up, maybe two." 1
497
+ "Great fit, the fabric was not what I was expecting though." 0
498
+ Very nice looking and went over well as a gift for my wife! 0
499
+ "Just the right size, but wish it was a little taller in height." 1
500
+ These are the same quality as you get the theater. 0
501
+ "This is no walk in the park, but it is a trek through history." 0
502
+ "In fact, it is a running theme-from the first survivor he meets to everything he goes through, it is a reminder of how little those of us used to modern conveniences know about growing food, staying warm, getting water, hunting, and defending ourselves." 0
503
+ "It is NOT thick, it is super thin." 0
504
+ Yes....it is a well-known fact that I love me some good strong alpha male books.....but this one was super sexy and hot with some action to amp it up. 0
505
+ "The black was perfect, which was what I was looking for, the second pair was just a perk for me, but they are definitely neon pink!!!" 0
506
+ "My husband got it going for me, and I just unplug instead of try to turn it on with the little knob." 0
507
+ "I was hesitant at the start as to how the psychic aspect would be played, would it be to overpowering?" 0
508
+ (When you blow the candle out - wait a few minutes for the wax to cool a bit - then rub it into your hands for an excellent hand treatment (they claim it helps eczema and psoriasis.) 0
509
+ "I would give them a 5 star review if both ends of the buckle were the same, in other words, I feel the right side of the buckle in the picture should be the same as the left side which will hold the webbing." 1
510
+ "His depiction of the town's spineless, weak and cowardly black men, man-children really, who set back and watch and brew corn whiskey while a lone, foolishly brave, young black woman struggles without help or encouragement in a vain effort to dismantle the town's Jim Crow system says more about the author's view of race than the realities of the Civil Rights struggle." 0
511
+ "And, I noticed in trying to install it that the fan piece was badly scuffed...beyond anything I could have done in trying to install it." 0
512
+ The writing is pretty dry and contains rather too much of the clinical minutiae of the 'how we looked for the answers' and not enough insight. 0
513
+ Otherwise a great shirt that I like in cool conditions. 0
514
+ I won't leave the US without it again. 0
515
+ Since it has a modest price most will be pleased with this pad. 0
516
+ "Okay I'm just going to get straight into this, these earbuds are an amazing buy for $60, have fun trying to find better for the same price." 0
517
+ "Things are tight, so I went with this cheaper bulb this time." 0
518
+ If your looking for a good read then get this book. 0
519
+ I did not know that something so small could be so clear and loud. 0
520
+ "Sheets are a bit thinner than I would have expected for the thread count, but they are soft." 1
521
+ "There were so many things about slavery that I did not know, as if all the movies and books about lynchings, whippings and gross cruelty attempted to at least save some kind of face for slave owners." 0
522
+ "My husband must have spent ten minutes working on the same 4' x 4' patch and afterwards I was disappointed at the cleanliness of the floor, and we couldn't reach some spots under the cabinets!" 0
523
+ This book provided an explanation to historical events that otherwise I would not have known. 0
524
+ It is soft under the feet and a good size. 0
525
+ "This is a great graphics card, so far I haven't found any game that it won't play and with all setting on the max." 0
526
+ The four legs take up more room than say a microphone stand but there is no chance of knocking it over and there is room on the top for an IPad or other device you might use with the projector. 0
527
+ I can't believe I spent that much on a costume that will only be worn once but oh well. 0
528
+ The only option I wish it had was a LED flash for the movie camera and most of all to use as a flash light. 1
529
+ Looks sturdier than many cables a lot more expensive. 0
530
+ I have bought these sheets for people in the past and I finally decided to get myself a few set! 0
531
+ its a super cute costume but gets really hot. 0
532
+ My daughter is smallish but just under average height here in Oz so I got the smaller size and it fitted lovel;y. I reckon the sizes are pretty acurate as if I had gone one size up it still would have fitted her. 1
533
+ At this price point there should be some adhesive already on the paper. 0
534
+ "in short, if you want a lantern of high quality look and feel, and you aren't prepared to help it get there, then this is not the one for you." 0
535
+ If you have particularly large arms it likely won't fit you. 0
536
+ "I've lived in my house for over 30 years and had several different kinds of furnace humidifiers, none of them worked as well as this steam humidifier." 0
537
+ It is very frustrating considering how much I paid for it. 0
538
+ I was looking for something to wear in yoga and this would have been impossible. 0
539
+ I never realized that anyone would have a picture of him. 0
540
+ "The main reason I got this was because I wanted a cheap, non-apple media player that could display album artwork." 0
541
+ I thought there could be more elements to the story and it was fairly predictable. 0
542
+ "This product is ingeniously simple, easy to use and really works." 0
543
+ "), the features noteworthy (love the audio-in line for iPod and the kitchen timer), and installation was a breeze (fits solidly without those plastic height-adjusters, which I didn't need)." 0
544
+ It's a mystery that no one is ready for. 0
545
+ A simple strap around the back would have solved the problem. 1
546
+ "Overall, these headphones are not what I had hoped." 0
547
+ "This was my first read of Tropper's work, and I'm looking forward to discovering more of his works!" 0
548
+ They NEED a good seal or they will not work properly. 0
549
+ "They don't get all that loud, and the volume control on the headphones is independent of the volume control on the iPhone." 0
550
+ My grout is not being cleaned as I think it should be. 0
551
+ I would have to cancel and retry about three times before it would finally complete. 0
552
+ "For shortwave, I managed to get a few foreign language stations, but without knowing what to look for there was not much I could do." 0
553
+ Now with this mattress pad I am still using the sheet and light thermal blanket that I used all summer long on top. 0
554
+ "Just a little larger than expected, should have ordered next size smaller." 1
555
+ "I am now getting most of the channels that I wanted, So this may not be the most perfect antenna for everybody, but it did the job for me" 0
556
+ "It is supportive without underwires, but not too tight and the straps don't fall down." 0
557
+ They fit perfectly but the color was more of a light peach instead of pink glaze as described. 0
558
+ "After searching for the perfect rug, I came across this." 0
559
+ "The less sturdy build makes it hard to pull clothes out without disturbing everything, but I'm pleased overall." 0
560
+ That these shirts would have a neck too small was beyond comprehansion. 0
561
+ "As a woman ordering a men's sweater, I normally would have ordered the medium." 1
562
+ I thought it would be great for him to use. 0
563
+ I have even put warm ash in the can and it handled the heat fine. 0
564
+ It's a cord that is coated and looped so you can tack it to your wall. 0
565
+ "At Christmas time, in spite of my misgivings, I took the tree out and added another string of lights (it comes with a very nice clear colored miniature light string already on the tree), a golden garland, some tinsel, and a couple dozen ornaments, and I was really surprised at how beautiful this little tree is." 0
566
+ This dress is SO cute but the built in 'slip' is too sheer to actually hide your panties and its so short it won't cover up the biker shorts I typically wear with dresses. 0
567
+ I enjoyed the book so much I couldn't put it down and read the whole thing in a day. 0
568
+ Doesn't look nothing like the picture it's horrible I will be returning the dress. 0
569
+ "Got this for my brother, I thought the black on black would be weird, but he loves it." 1
570
+ "Haven't returned them yet, but I'm planning on it." 0
571
+ IAM TELLING YOU BECAUSE I BEEN PRACTICED VOODU FOR SO MANY YEARS AND I JUST BOUGHT THIS CANDLE FOR CURIOSITY. 0
572
+ I WILL BE BUYING MORE PATCHES FROM IVAMIS BECAUSE OF THEIR GREAT SELECTION OF PATCHES LIKE THE ENFORCER PATCH AND ALSO BECAUSE THEY ARE A PLEASURE TO DO BUSINESS WITH. 0
573
+ "I really tried everything I could to make this work without it putting me in such awkward positions, but alas, nothing ended up happening." 0
574
+ """The lid latches could be slightly better (I've damaged a couple with repeated open/close cycles and heavy container stacking) but I have yet to find the \\\\\perfect\\\\\"""" container/lid combination among many product types and these certainly fit nearly all my requirements.""""""" 0
575
+ The criminal portion of the story was not that compelling and the flighty love interest was somewhat ill conceived. 0
576
+ Sure maybe there are bumps in those roads but all and all each couple tries to boost their other half up instead of holding them down. 0
577
+ This book was so good I couldnt put it down! 0
578
+ "This is a totally functional tool.. to clean up the clutter of remotes, remotes and MORE remotes...." 0
579
+ "They got the job done, however they didn't soak up the paint quite so well and the paint took a long time to dry on them." 0
580
+ It works well & can handle 5 different cell phones. 0
581
+ "The do not sound, yet, as good as other IEMs I have tried but at this price you can't go wrong, and I, for one, was very pleasantly surprised." 0
582
+ "I was expecting more hand-made, crafted Ideas were ok & creative but not exactly crafty type Pictures would have been nice" 1
583
+ I ordered a small as I am a size four and it fit perfectaly so I would have to say if you are any larger than a size six get a medium. 0
584
+ "Nightwish Spirit The Poster New Rare 21 Metal PP30378 was exactly what my daughter had wanted for Christmas, we were both happy with these posters and how the company did business." 0
585
+ It also is very thin I am looking for a wool sock that is heavier and looser. 0
586
+ Their self-contained music units for various IPODs consistently break; I have 2 where the left ear doesn't work. 0
587
+ I wish it was longer for my own personal enjoyment and while I wait for the next I'm sure I'll reread it 5 times over!! 1
588
+ "This is my first book by this author, but it won't be my last." 0
589
+ This is a unbelievable transmitter in a small package. 0
590
+ "If your goal is to hook your HDMI device (Blu-ray player, Xbox, PS4) up to your TV, you don't need to spend $50 for gold-plated plugs." 0
591
+ "It's a very bright, awesome green in a thick, probably won't crack/peel, glow in the dark creeper." 0
592
+ It was the piece that also held up the hose on the vacuum so wasn't something I could do without. 0
593
+ "Haven't had to wash them yet, but they will not be going in with the rest of my laundry just in case the colors run." 0
594
+ "I was afraid of a bunch of college kids, drinking, screwing, cheating on each other; just an amateur hour of childish behavior but you don't get that with this one." 0
595
+ "After the intensity of the Wool trilogy, it was comforting to spend time exploring the lives of the residence of silo 49, how they coped with their environment and ultimately how the salvation of the human race will be created with tenacity, bravery, creativity and kindness." 0
596
+ It connects without problem and I am happy with it. 0
597
+ Why would you show a variety of sizes together when you are only selling one. 0
598
+ "I'm not usually the type of guy that really has to worry about that too much, the crotch area literally curves inwards so much and the material is so thin, you need to wear a long shirt with this." 0
599
+ "OK,LADIES VERY SEXY,BUT YOU MUST BE IN SHAPE OR WEAR SPANKS UNDER .THE MATERIAL IS A LITTLE THIN, BUT IT HUGS YOUR BODY AND SHOWS OFF YOUR CURVES,THE OFF THE SHOULDER STYLE IS VERY FLATTERING,IF YOU ARE LARGER,STILL BUY THIS ITEM YOU WILL STILL BLOW THEIR MINDS" 0
600
+ IT WAS FOR HIS BIRTHDAY AND HE LOVED IT. 0
601
+ In my opinion it doesn't work very well with the dress. 0
602
+ "It does have that blue light on the bottom, which is slightly annoying, but it's not a tv, so I don't stare at it for hours." 0
603
+ "Even when the two sides of the snap are put into the tool correctly, you're never sure that it'll line up just right." 0
604
+ the rubber seals are dried and hard and do not seal properly. 0
605
+ "I love the fabric and the prints, but the sizes in this trio were all different and tey won't replace them." 0
606
+ the galaxys grandness is not here in the online. 0
607
+ "Well, these took a week to arrive and the package was small enough it could have been mailed with two stamps (and arrived quicker, likely) yet it could have been shipped Priority Mail for as much as charged!" 1
608
+ "I didn't think it was possible, but Sterling continues to come up with fantastic entanglements and escapes for this daring Indiana Jones/James Bond/Clive Cussler legend in the making." 0
609
+ Just don't expect a miracle worker when that box arrives. 0
610
+ "I would have been able to install is faster, except I had to deal with the centering issue (2x4's) with the niche." 1
611
+ I didnt expect a great quality at this price but certainly something better. 0
612
+ Mixing the mystical with the here and now was pretty cool. 0
613
+ My only issue is that there were quite a few loose threads I had to cut when I got it and there was a pretty large run in the sheer part of the skirt and about a half inch of the seem was unraveled which luckily wasn't noticeable once I put it on. 0
614
+ "Actually, my biggest fear was that it would be very low quality and fall apart." 0
615
+ The reviews weren't kidding about the pointy cups. 0
616
+ "F.Y.I., If you did not read book one, you will be completely lost." 1
617
+ But her books never let me down they are so great that I just can't put them down. 0
618
+ "And the hat is absolutely cute as can be, and very soft." 0
619
+ I did not like anything about him because I couldn't buy in. 0
620
+ "Great story, I started reading it and couldn't put it down, went through all 4 parts at once." 0
621
+ The scenarios presented in the story are real situations that all salespeople encounter and the book reminds you that the best way to deal with these challenges is proactively instead of reactively. 0
622
+ The whole reason for going with this style antenna was the hope that I could mount it on the front of the house facing the transmitters without it looking bad. 0
623
+ "For me, this doesn't work in my cuttlebug so, I'm not going to recommend it." 0
624
+ I had been looking for a belt like this. 0
625
+ Can't wait to read the next offering in the series. 0
626
+ "While wishing it had a built in amp, cannot complain at all about the quality!" 1
627
+ "A little concerned that the color is fading quicker than the standard, but still a good cost effective option." 0
628
+ "The lessons contained within this guide will prove invaluable, giving you the opportunity to learn from other peoples mistakes; saving you time and money!" 0
629
+ I wanted to find a pair of scissors that would give me a decorative edge on fabric and felt craft projects. 0
630
+ I didn't want to write a review about these batteries yet since I wanted to try them out for a few weeks or months so I could write an accurate review but haven't been able to charge the batteries because they're still holding a charge. 0
631
+ "If I could change anything about the product, it would be to have it attach on the sides like it does on the top of the Kindle." 1
632
+ """Inside the comic book, when Shredder's head was revealed without a helmet and a mask on, he looked like Randolph Mantooth a la John Gage in TV's \Emergency\"""".""""""" 0
633
+ "Great little shaker that vibrates under your pillow as an alarm, and can be set to silent so that it doesn't wake the person next to you." 0
634
+ """My only complaint is that it makes a high-pitched \whine\"""" noise while in operation.""""""" 0
635
+ "I'm a big lover of the zombie genre, and I've read my fair share, some decent, some horrid, and some that suck you in, this falls under the category of sucking you in...this one sucked me in from the first chapter." 0
636
+ This is a must buy for anyone on any budjet that wants great sound and amazing noise canceling. 0
637
+ Watching me put these sheets on the mattress would have been a great online video. 0
638
+ "I have dozens of these in use at home, and have never had a problem with any of them." 0
639
+ I like that I can delete music directly off the player instead of having to plug it back in to the computer to do so. 0
640
+ Works pretty good.... sometimes you have to use it more then once to get all the skips out. 0
641
+ "A minor inconvenience, but I don't think it would have been a terribly hard feature to add." 0
642
+ "While I was never in the services myself, I support them and wish for their safe return when stationed over seas." 0
643
+ Found these and I don't know if I could be happier. 0
644
+ "We thought cathedral ceilings, chandeliers, and huge arched windows would be lovely." 0
645
+ "Another person who reviewed this said that his wouldn't play the CD, but I am not having that problem." 0
646
+ Its a little less royal blue than the picture and more the highlighted color that catches the light. 0
647
+ I like the interchangeable color fronts that came with it. 0
648
+ I needed a Chineese interpreter to figure it out...... 0
649
+ It keeps telling me I must be connected to a Network????????? 0
650
+ "the cuff of the jeans sit right at the top of my shoes, with just a hint of a little extra length fold." 0
651
+ the placement in our exhibit booth required a longer cable and it needed also to be of good quality. 0
652
+ "Its very sexy and snug, and short...so now I'll be busting my *ss at the gym until I can wear it and not worry about my muffin." 0
653
+ I wanted to buy a package of soup bones but it cost $7.50! 0
654
+ Exact replacement for one that went bad only problem is the hands are to loose very cheap quality good thing I kept the old ones otherwise I would have returned it 0
655
+ I should have paid more attention to the reviewers that stated this behemoth is heavy and difficult to maneuver. 1
656
+ "It fit just right, you have to order a bigger size" 0
657
+ These shorts fit really well and look good too. 0
658
+ I hope it doesn't fall apart when I wash it. 0
659
+ I wanted to buy an mp3 player to take the place of my 2nd gen ipod shuffle. 0
660
+ "However, it has started to increase its speed randomly, after about five minutes of winding without my having adjusted the speed control." 0
661
+ It was a very good book and kept me wanting to keep turning the pages to see what was happening next. 0
662
+ Got these today to replace a pair of JVC HAFX1X earbuds that I have been using since Aug 2013 (Replacing due to lost earpieces that I haven't been able to find a replacement for. 0
663
+ "The armholes seem way to small and are not adjustable, so it made the rest of the coverup awkward to wear/fit because of it (since you have to wrap it around you and loop your arms through the straps)." 0
664
+ I haven't tried them yet but I think that they will work. 0
665
+ Wasn't as long as I would have liked I'm only 5'3 and it stop at my ankle and the material is to thin. 1
666
+ "It doesn't hang right, I have to put myself in an uncomfortable position to get the light to shine in the right spot." 0
667
+ I couldn't believe how this mop picked up the dirt. 0
dataset_infos.json CHANGED
@@ -1 +1 @@
1
- {"all_languages": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "string", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "all_languages", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 2265888, "num_examples": 15218, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 192754, "num_examples": 1267, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 379689, "num_examples": 2538, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/DE_train.tsv": {"num_bytes": 705786, "checksum": "52710850d8bef30422421f4ca238a4d3e76d44e1e01e2458320b949cd66fbcd1"}, "data/EN_train.tsv": {"num_bytes": 444664, "checksum": "fa1d3db89f133725011f022e1e0bb9ba147b0e9b8b38e15f832ad6192070f7d1"}, "data/JP_train.tsv": {"num_bytes": 713547, "checksum": "b836056ff3c13c02f56cd5e8d0841e1de45e50f1cc89da10cf42d8c7c5d910a1"}, "data/DE_valid.tsv": {"num_bytes": 60990, "checksum": "677831289a71ebba856dfaecec92dfc9dfade9a954f8e50c923407a1fcda981a"}, "data/EN_valid.tsv": {"num_bytes": 37707, "checksum": "47c981cd724394a45c091998ba9fb553ea5c9159aae228b5009ac32a1e51d6be"}, "data/JP_valid.tsv": {"num_bytes": 60656, "checksum": "8ab8efeaa2c271b0b96a74e4c2e3f4cd6b2adc3d588e43c76891f6a259890f11"}, "data/DE_test.tsv": {"num_bytes": 120712, "checksum": "ccfb853849a85ea747fbb435bad7c50336bd2c28c523be4479535a8872870476"}, "data/EN_test.tsv": {"num_bytes": 73457, "checksum": "ca0bbbc8d32e795526b21eba31c6b400e81c192f4d756bafa95c7b71375893d5"}, "data/JP_test.tsv": {"num_bytes": 118677, "checksum": "863b45ba88f7e2d3d61f2a7ee1d6b44a11eb13c91653ae563616cc9bee2537a1"}}, "download_size": 2336196, "post_processing_size": null, "dataset_size": 2838331, "size_in_bytes": 5174527}, "de": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "string", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "de", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 844967, "num_examples": 5600, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 72529, "num_examples": 466, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 143923, "num_examples": 934, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/DE_train.tsv": {"num_bytes": 705786, "checksum": "52710850d8bef30422421f4ca238a4d3e76d44e1e01e2458320b949cd66fbcd1"}, "data/DE_valid.tsv": {"num_bytes": 60990, "checksum": "677831289a71ebba856dfaecec92dfc9dfade9a954f8e50c923407a1fcda981a"}, "data/DE_test.tsv": {"num_bytes": 120712, "checksum": "ccfb853849a85ea747fbb435bad7c50336bd2c28c523be4479535a8872870476"}}, "download_size": 887488, "post_processing_size": null, "dataset_size": 1061419, "size_in_bytes": 1948907}, "en": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "string", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "en", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 552773, "num_examples": 4018, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 46752, "num_examples": 335, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 91394, "num_examples": 670, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/EN_train.tsv": {"num_bytes": 444664, "checksum": "fa1d3db89f133725011f022e1e0bb9ba147b0e9b8b38e15f832ad6192070f7d1"}, "data/EN_valid.tsv": {"num_bytes": 37707, "checksum": "47c981cd724394a45c091998ba9fb553ea5c9159aae228b5009ac32a1e51d6be"}, "data/EN_test.tsv": {"num_bytes": 73457, "checksum": "ca0bbbc8d32e795526b21eba31c6b400e81c192f4d756bafa95c7b71375893d5"}}, "download_size": 555828, "post_processing_size": null, "dataset_size": 690919, "size_in_bytes": 1246747}, "jp": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "string", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "jp", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 868160, "num_examples": 5600, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 73497, "num_examples": 466, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 144396, "num_examples": 934, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/JP_train.tsv": {"num_bytes": 713547, "checksum": "b836056ff3c13c02f56cd5e8d0841e1de45e50f1cc89da10cf42d8c7c5d910a1"}, "data/JP_valid.tsv": {"num_bytes": 60656, "checksum": "8ab8efeaa2c271b0b96a74e4c2e3f4cd6b2adc3d588e43c76891f6a259890f11"}, "data/JP_test.tsv": {"num_bytes": 118677, "checksum": "863b45ba88f7e2d3d61f2a7ee1d6b44a11eb13c91653ae563616cc9bee2537a1"}}, "download_size": 892880, "post_processing_size": null, "dataset_size": 1086053, "size_in_bytes": 1978933}}
 
1
+ {"all_languages": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "int32", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "all_languages", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 3304369, "num_examples": 23218, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 279231, "num_examples": 1933, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 552017, "num_examples": 3872, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/DE_train.tsv": {"num_bytes": 705786, "checksum": "52710850d8bef30422421f4ca238a4d3e76d44e1e01e2458320b949cd66fbcd1"}, "data/EN_train.tsv": {"num_bytes": 444664, "checksum": "fa1d3db89f133725011f022e1e0bb9ba147b0e9b8b38e15f832ad6192070f7d1"}, "data/EN-ext_train.tsv": {"num_bytes": 857747, "checksum": "eb741daf73fec09af23cb194b6424f533c96280770c7c8a60d87b211a0ae6f72"}, "data/JP_train.tsv": {"num_bytes": 713547, "checksum": "b836056ff3c13c02f56cd5e8d0841e1de45e50f1cc89da10cf42d8c7c5d910a1"}, "data/DE_valid.tsv": {"num_bytes": 60990, "checksum": "677831289a71ebba856dfaecec92dfc9dfade9a954f8e50c923407a1fcda981a"}, "data/EN_valid.tsv": {"num_bytes": 37707, "checksum": "47c981cd724394a45c091998ba9fb553ea5c9159aae228b5009ac32a1e51d6be"}, "data/EN-ext_valid.tsv": {"num_bytes": 71464, "checksum": "3e054c3c83e893cbec0640aeb2d79bf8fabe1040951d127da3f2fa9a69c05002"}, "data/JP_valid.tsv": {"num_bytes": 60656, "checksum": "8ab8efeaa2c271b0b96a74e4c2e3f4cd6b2adc3d588e43c76891f6a259890f11"}, "data/DE_test.tsv": {"num_bytes": 120712, "checksum": "ccfb853849a85ea747fbb435bad7c50336bd2c28c523be4479535a8872870476"}, "data/EN_test.tsv": {"num_bytes": 73457, "checksum": "ca0bbbc8d32e795526b21eba31c6b400e81c192f4d756bafa95c7b71375893d5"}, "data/EN-ext_test.tsv": {"num_bytes": 142278, "checksum": "7891a0dc26417905718389402f6ea57f1a714f81bd258dbd134d5689e2fb7fd6"}, "data/JP_test.tsv": {"num_bytes": 118677, "checksum": "863b45ba88f7e2d3d61f2a7ee1d6b44a11eb13c91653ae563616cc9bee2537a1"}}, "download_size": 3407685, "post_processing_size": null, "dataset_size": 4135617, "size_in_bytes": 7543302}, "de": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "int32", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "de", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 839363, "num_examples": 5600, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 72059, "num_examples": 466, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 142985, "num_examples": 934, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/DE_train.tsv": {"num_bytes": 705786, "checksum": "52710850d8bef30422421f4ca238a4d3e76d44e1e01e2458320b949cd66fbcd1"}, "data/DE_valid.tsv": {"num_bytes": 60990, "checksum": "677831289a71ebba856dfaecec92dfc9dfade9a954f8e50c923407a1fcda981a"}, "data/DE_test.tsv": {"num_bytes": 120712, "checksum": "ccfb853849a85ea747fbb435bad7c50336bd2c28c523be4479535a8872870476"}}, "download_size": 887488, "post_processing_size": null, "dataset_size": 1054407, "size_in_bytes": 1941895}, "en": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "int32", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "en", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 548751, "num_examples": 4018, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 46413, "num_examples": 335, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 90720, "num_examples": 670, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/EN_train.tsv": {"num_bytes": 444664, "checksum": "fa1d3db89f133725011f022e1e0bb9ba147b0e9b8b38e15f832ad6192070f7d1"}, "data/EN_valid.tsv": {"num_bytes": 37707, "checksum": "47c981cd724394a45c091998ba9fb553ea5c9159aae228b5009ac32a1e51d6be"}, "data/EN_test.tsv": {"num_bytes": 73457, "checksum": "ca0bbbc8d32e795526b21eba31c6b400e81c192f4d756bafa95c7b71375893d5"}}, "download_size": 555828, "post_processing_size": null, "dataset_size": 685884, "size_in_bytes": 1241712}, "jp": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "int32", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "jp", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 862556, "num_examples": 5600, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 73027, "num_examples": 466, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 143458, "num_examples": 934, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/JP_train.tsv": {"num_bytes": 713547, "checksum": "b836056ff3c13c02f56cd5e8d0841e1de45e50f1cc89da10cf42d8c7c5d910a1"}, "data/JP_valid.tsv": {"num_bytes": 60656, "checksum": "8ab8efeaa2c271b0b96a74e4c2e3f4cd6b2adc3d588e43c76891f6a259890f11"}, "data/JP_test.tsv": {"num_bytes": 118677, "checksum": "863b45ba88f7e2d3d61f2a7ee1d6b44a11eb13c91653ae563616cc9bee2537a1"}}, "download_size": 892880, "post_processing_size": null, "dataset_size": 1079041, "size_in_bytes": 1971921}, "en-ext": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "int32", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "en-ext", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 1053707, "num_examples": 8000, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 87756, "num_examples": 666, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 174878, "num_examples": 1334, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/EN-ext_train.tsv": {"num_bytes": 857747, "checksum": "eb741daf73fec09af23cb194b6424f533c96280770c7c8a60d87b211a0ae6f72"}, "data/EN-ext_valid.tsv": {"num_bytes": 71464, "checksum": "3e054c3c83e893cbec0640aeb2d79bf8fabe1040951d127da3f2fa9a69c05002"}, "data/EN-ext_test.tsv": {"num_bytes": 142278, "checksum": "7891a0dc26417905718389402f6ea57f1a714f81bd258dbd134d5689e2fb7fd6"}}, "download_size": 1071489, "post_processing_size": null, "dataset_size": 1316341, "size_in_bytes": 2387830}, "ja": {"description": "The dataset contains sentences from Amazon customer reviews (sampled from Amazon product review dataset) annotated for counterfactual detection (CFD) binary classification. Counterfactual statements describe events that did not or cannot take place. Counterfactual statements may be identified as statements of the form \u2013 If p was true, then q would be true (i.e. assertions whose antecedent (p) and consequent (q) are known or assumed to be false).\n", "citation": "@misc{oneill2021i,\n title={I Wish I Would Have Loved This One, But I Didn't -- A Multilingual Dataset for Counterfactual Detection in Product Reviews},\n author={James O'Neill and Polina Rozenshtein and Ryuichi Kiryo and Motoko Kubota and Danushka Bollegala},\n year={2021},\n eprint={2104.06893},\n archivePrefix={arXiv},\n primaryClass={cs.CL}\n}\n", "homepage": "https://github.com/amazon-research/amazon-multilingual-counterfactual-dataset", "license": "CC BY-SA 4.0", "features": {"text": {"dtype": "string", "id": null, "_type": "Value"}, "label": {"dtype": "int32", "id": null, "_type": "Value"}, "label_text": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "amazon_counterfactual", "config_name": "ja", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 862556, "num_examples": 5600, "dataset_name": "amazon_counterfactual"}, "validation": {"name": "validation", "num_bytes": 73027, "num_examples": 466, "dataset_name": "amazon_counterfactual"}, "test": {"name": "test", "num_bytes": 143458, "num_examples": 934, "dataset_name": "amazon_counterfactual"}}, "download_checksums": {"data/JP_train.tsv": {"num_bytes": 713547, "checksum": "b836056ff3c13c02f56cd5e8d0841e1de45e50f1cc89da10cf42d8c7c5d910a1"}, "data/JP_valid.tsv": {"num_bytes": 60656, "checksum": "8ab8efeaa2c271b0b96a74e4c2e3f4cd6b2adc3d588e43c76891f6a259890f11"}, "data/JP_test.tsv": {"num_bytes": 118677, "checksum": "863b45ba88f7e2d3d61f2a7ee1d6b44a11eb13c91653ae563616cc9bee2537a1"}}, "download_size": 892880, "post_processing_size": null, "dataset_size": 1079041, "size_in_bytes": 1971921}}