PGunz commited on
Commit
a80279e
·
verified ·
1 Parent(s): 8038aa3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +261 -0
README.md CHANGED
@@ -85,3 +85,264 @@ configs:
85
  - split: train
86
  path: data/train-*
87
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  - split: train
86
  path: data/train-*
87
  ---
88
+
89
+ # Dataset Card for Dataset Name
90
+
91
+ Original dataset can be found on: https://amazon-reviews-2023.github.io/
92
+
93
+ ## Dataset Details
94
+ This dataset is downloaded from the link above, the category Sports and Outdoors meta dataset.
95
+
96
+ ### Dataset Description
97
+
98
+ This dataset is a refined version of the Amazon Sports and Outdoors 2023 meta dataset, which originally contained product metadata for sports and outdoors products that are sold on Amazon. The dataset includes detailed information about products such as their descriptions, ratings, prices, images, and features. The primary focus of this modification was to ensure the completeness of key fields while simplifying the dataset by removing irrelevant or empty columns.
99
+ The table below represents the original structure of the dataset.
100
+
101
+ <table border="1" cellpadding="5" cellspacing="0">
102
+ <tr>
103
+ <th>Field</th>
104
+ <th>Type</th>
105
+ <th>Explanation</th>
106
+ </tr>
107
+ <tr>
108
+ <td>main_category</td>
109
+ <td>str</td>
110
+ <td>Main category (i.e., domain) of the product.</td>
111
+ </tr>
112
+ <tr>
113
+ <td>title</td>
114
+ <td>str</td>
115
+ <td>Name of the product.</td>
116
+ </tr>
117
+ <tr>
118
+ <td>average_rating</td>
119
+ <td>float</td>
120
+ <td>Rating of the product shown on the product page.</td>
121
+ </tr>
122
+ <tr>
123
+ <td>rating_number</td>
124
+ <td>int</td>
125
+ <td>Number of ratings in the product.</td>
126
+ </tr>
127
+ <tr>
128
+ <td>features</td>
129
+ <td>list</td>
130
+ <td>Bullet-point format features of the product.</td>
131
+ </tr>
132
+ <tr>
133
+ <td>description</td>
134
+ <td>list</td>
135
+ <td>Description of the product.</td>
136
+ </tr>
137
+ <tr>
138
+ <td>price</td>
139
+ <td>float</td>
140
+ <td>Price in US dollars (at time of crawling).</td>
141
+ </tr>
142
+ <tr>
143
+ <td>images</td>
144
+ <td>list</td>
145
+ <td>Images of the product. Each image has different sizes (thumb, large, hi_res). The “variant” field shows the position of image.</td>
146
+ </tr>
147
+ <tr>
148
+ <td>videos</td>
149
+ <td>list</td>
150
+ <td>Videos of the product including title and url.</td>
151
+ </tr>
152
+ <tr>
153
+ <td>store</td>
154
+ <td>str</td>
155
+ <td>Store name of the product.</td>
156
+ </tr>
157
+ <tr>
158
+ <td>categories</td>
159
+ <td>list</td>
160
+ <td>Hierarchical categories of the product.</td>
161
+ </tr>
162
+ <tr>
163
+ <td>details</td>
164
+ <td>dict</td>
165
+ <td>Product details, including materials, brand, sizes, etc.</td>
166
+ </tr>
167
+ <tr>
168
+ <td>parent_asin</td>
169
+ <td>str</td>
170
+ <td>Parent ID of the product.</td>
171
+ </tr>
172
+ <tr>
173
+ <td>bought_together</td>
174
+ <td>list</td>
175
+ <td>Recommended bundles from the websites.</td>
176
+ </tr>
177
+ </table>
178
+
179
+
180
+ ### Modifications made
181
+ <ul>
182
+ <li>Products without a description, title, images or details were removed.</li>
183
+ <li>Lists in features and description are transformed into strings concatinated with a newline</li>
184
+ <li>For the details column, only the top 16 most frequent detail types were kept. The details column was then split into these new 16 columns based on the detail types kept.</li>
185
+ <li>Products with date first available before the year 2015 are dropped.</li>
186
+ <li>Products with is_discontinued_by_manufacturer set to 'true' or 'yes' are dropped. Then that column was dropped.</li>
187
+ <li>Column bought_together is dropped due to missing values.</li>
188
+ </ul>
189
+
190
+ ### Dataset Size
191
+ <ul>
192
+ <li>Total entries: 535,206</li>
193
+ <li>Total columns: 29</li>
194
+ </ul>
195
+
196
+ ### Final Structure
197
+ <table border="1" cellpadding="5" cellspacing="0">
198
+ <tr>
199
+ <th>Field</th>
200
+ <th>Type</th>
201
+ <th>Explanation</th>
202
+ </tr>
203
+ <tr>
204
+ <td>main_category</td>
205
+ <td>str</td>
206
+ <td>Main category</td>
207
+ </tr>
208
+ <tr>
209
+ <td>title</td>
210
+ <td>str</td>
211
+ <td>Name of the product</td>
212
+ </tr>
213
+ <tr>
214
+ <td>average_rating</td>
215
+ <td>float</td>
216
+ <td>Rating of the product shown on the product page.</td>
217
+ </tr>
218
+ <tr>
219
+ <td>rating_number</td>
220
+ <td>int</td>
221
+ <td>Number of ratings in the product.</td>
222
+ </tr>
223
+ <tr>
224
+ <td>features</td>
225
+ <td>list</td>
226
+ <td>Bullet-point format features of the product.</td>
227
+ </tr>
228
+ <tr>
229
+ <td>description</td>
230
+ <td>list</td>
231
+ <td>Description of the product.</td>
232
+ </tr>
233
+ <tr>
234
+ <td>price</td>
235
+ <td>float</td>
236
+ <td>Price in US dollars (at time of crawling).</td>
237
+ </tr>
238
+ <tr>
239
+ <td>images</td>
240
+ <td>list</td>
241
+ <td>Images of the product. Each image has different sizes (thumb, large, hi_res). The “variant” field shows the position of image.</td>
242
+ </tr>
243
+ <tr>
244
+ <td>videos</td>
245
+ <td>list</td>
246
+ <td>Videos of the product including title and url.</td>
247
+ </tr>
248
+ <tr>
249
+ <td>store</td>
250
+ <td>str</td>
251
+ <td>Store name of the product.</td>
252
+ </tr>
253
+ <tr>
254
+ <td>details</td>
255
+ <td>dict</td>
256
+ <td>Product details, including materials, brand, sizes, etc.</td>
257
+ </tr>
258
+ <tr>
259
+ <td>parent_asin</td>
260
+ <td>str</td>
261
+ <td>Parent ID of the product.</td>
262
+ </tr>
263
+ <tr>
264
+ <td>date_first_available</td>
265
+ <td>int64</td>
266
+ <td>Date first time the product was available</td>
267
+ </tr>
268
+ <tr>
269
+ <td>manufacturer</td>
270
+ <td>str</td>
271
+ <td>Manufacturer of the product</td>
272
+ </tr>
273
+ <tr>
274
+ <td>brand_name</td>
275
+ <td>str</td>
276
+ <td>Brand name</td>
277
+ </tr>
278
+ <tr>
279
+ <td>color</td>
280
+ <td>str</td>
281
+ <td>color</td>
282
+ </tr>
283
+ <tr>
284
+ <td>package_weight</td>
285
+ <td>str</td>
286
+ <td>Package weight</td>
287
+ </tr>
288
+ <tr>
289
+ <td>item_package_dimensions_l_x_w_x_h</td>
290
+ <td>str</td>
291
+ <td>Dimensions of the package item LxWxH</td>
292
+ </tr>
293
+ <tr>
294
+ <td>part_number</td>
295
+ <td>str</td>
296
+ <td>Part number</td>
297
+ </tr>
298
+ <tr>
299
+ <td>material</td>
300
+ <td>str</td>
301
+ <td>Material</td>
302
+ </tr>
303
+ <tr>
304
+ <td>best_sellers_rank</td>
305
+ <td>str</td>
306
+ <td>Best seller rank</td>
307
+ </tr>
308
+ <tr>
309
+ <td>size</td>
310
+ <td>str</td>
311
+ <td>Size</td>
312
+ </tr>
313
+ <tr>
314
+ <td>style</td>
315
+ <td>str</td>
316
+ <td>Style</td>
317
+ </tr>
318
+ <tr>
319
+ <td>brand</td>
320
+ <td>str</td>
321
+ <td>Brand</td>
322
+ </tr>
323
+ <tr>
324
+ <td>suggested_users</td>
325
+ <td>str</td>
326
+ <td>Suggested users</td>
327
+ </tr>
328
+ <tr>
329
+ <td>item_weight</td>
330
+ <td>str</td>
331
+ <td>Weight of the item</td>
332
+ </tr>
333
+ <tr>
334
+ <td>item_dimensions__lxwxh</td>
335
+ <td>str</td>
336
+ <td>Item dimensions LxWxH</td>
337
+ </tr>
338
+ <tr>
339
+ <td>department</td>
340
+ <td>str</td>
341
+ <td>Department</td>
342
+ </tr>
343
+ <tr>
344
+ <td>sport_type</td>
345
+ <td>str</td>
346
+ <td>Sport type</td>
347
+ </tr>
348
+ </table>