Update README.md
Browse files
README.md
CHANGED
@@ -35,3 +35,47 @@ configs:
|
|
35 |
- split: train
|
36 |
path: data/train-*
|
37 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
- split: train
|
36 |
path: data/train-*
|
37 |
---
|
38 |
+
|
39 |
+
# Zalando Clothing & Accessories Dataset
|
40 |
+
|
41 |
+
This dataset contains information about various clothing and accessories items scraped from the Zalando eCommerce platform. Each entry in the dataset corresponds to a specific item and includes several attributes that describe the item in detail.
|
42 |
+
|
43 |
+
## Dataset Overview
|
44 |
+
|
45 |
+
The dataset includes the following columns:
|
46 |
+
|
47 |
+
- **image**: The image of the garment.
|
48 |
+
- **sku**: The Stock Keeping Unit (SKU) of the item, which is a unique identifier.
|
49 |
+
- **name**: The name of the item.
|
50 |
+
- **brand**: The brand of the item.
|
51 |
+
- **category**: The categories to which the item belongs.
|
52 |
+
- **url**: The URL of the item's page on Zalando's website.
|
53 |
+
- **sizes**: Available sizes for the item, along with their corresponding SKUs.
|
54 |
+
- **classification**: Classification tags such as "NEW" or "DEAL".
|
55 |
+
- **original_price**: The original price of the item.
|
56 |
+
- **discount_percentage**: The discount percentage if applicable.
|
57 |
+
- **promotional_price**: The promotional price if the item is on sale.
|
58 |
+
|
59 |
+
## Image Details
|
60 |
+
|
61 |
+
Each item has an associated image with a size of 100x144 pixels.
|
62 |
+
|
63 |
+
## Example Entries
|
64 |
+
|
65 |
+
Here are a few example entries from the dataset:
|
66 |
+
|
67 |
+
| sku | name | brand | category | url | sizes | classification | original_price | discount_percentage | promotional_price | image |
|
68 |
+
|------------|----------------------------------------|--------------------|-------------------|---------------------------------------------------------------------|---------------------------------------------------------------|-----------------|----------------|----------------------|-------------------|--------------------|
|
69 |
+
| JAM22T04V-O14 | BLAMELTON SN - Short coat - greige | Jack & Jones PREMIUM | ['Coats'] | [Link](https://en.zalando.de/jack-and-jones-premium-jam22t04v-o14.html) | [{'size': 'XS', 'sku': 'JAM22T04V-O1400XS000'}] | [] | 149,99 € | NaN | NaN | JAM22T04V-O14_x100.jpg |
|
70 |
+
| IJ022T03E-K11 | Parka - navy | INDICODE JEANS | ['Coats'] | [Link](https://en.zalando.de/indicode-jeans-ij022t03e-k11.html) | [{'size': 'S', 'sku': 'IJ022T03E-K11000S000'}, ...] | ['DEAL'] | 114,99 € | up to -9% | 104,99 € | IJ022T03E-K11_x100.jpg |
|
71 |
+
| SU222T0VZ-M11 | Winter coat - duffle bag | Superdry | ['Coats'] | [Link](https://en.zalando.de/superdry-su222t0vz-m11.html) | [{'size': 'S', 'sku': 'SU222T0VZ-M11000S000'}, ...] | [] | 239,99 € | NaN | NaN | SU222T0VZ-M11_x100.jpg |
|
72 |
+
| OM422T06R-Q11 | Short coat - black | Ombre | ['Coats'] | [Link](https://en.zalando.de/ombre-om422t06r-q11.html) | [{'size': 'S', 'sku': 'OM422T06R-Q11000S000'}, ...] | ['NEW'] | 100,99 € | NaN | NaN | OM422T06R-Q11_x100.jpg |
|
73 |
+
| IC622T05X-Q11 | CLIMA IGLU - Winter coat - schwarz | ICEBOUND | ['Coats', 'Jackets'] | [Link](https://en.zalando.de/icebound-ic622t05x-q11.html) | [{'size': 'S', 'sku': 'IC622T05X-Q11000S000'}, ...] | ['DEAL'] | 289,95 € | up to -52% | 139,76 € | IC622T05X-Q11_x100.jpg |
|
74 |
+
|
75 |
+
## Source
|
76 |
+
|
77 |
+
The data has been scraped from the [Zalando](https://www.zalando.de) Clothing & Accessories eCommerce platform.
|
78 |
+
|
79 |
+
## Image Size
|
80 |
+
|
81 |
+
All images are of size 100x144 pixels.
|