Seekysense commited on
Commit
7872bc4
ยท
verified ยท
1 Parent(s): 30403a1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -3
README.md CHANGED
@@ -1,3 +1,60 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - it
7
+ size_categories:
8
+ - n<1K
9
+ ---
10
+
11
+ # Italian Running Shoes Dataset (Multimodal)
12
+
13
+ This dataset contains a collection of **running shoe products** specifically curated from the Italian market. It is designed for tasks such as Computer Vision (Image Classification), Natural Language Processing (NLP) in Italian, and E-commerce recommendation systems.
14
+
15
+ ## ๐Ÿ“‚ Dataset Structure
16
+
17
+ The dataset consists of a central metadata file and a folder containing product images.
18
+
19
+ * `images/`: Directory containing `.jpg` images of the shoes.
20
+ * `shoes_metadata.csv`: A CSV file containing product details in Italian.
21
+
22
+ ## ๐Ÿ“Š Data Dictionary
23
+
24
+ The `shoes_metadata.csv` file uses a comma-separated format with the following columns:
25
+
26
+ | Column | Description | Example |
27
+ | --- | --- | --- |
28
+ | **brand** | The manufacturer of the shoe. | `Adidas` |
29
+ | **nome** | The product name and colorway. | `Runfalcon 5 Nero` |
30
+ | **descrizione** | A detailed description in **Italian**, often including discounts. | `Adidas Scarpa da Running Donna...` |
31
+ | **prezzo** | The price in Euro (โ‚ฌ). | `60,00` |
32
+ | **immagine** | The filename of the corresponding image in the `/images` folder. | `ADIDIE8826_VAR_01_3480.jpg` |
33
+
34
+ ## ๐Ÿ“ Sample Data
35
+
36
+ ```csv
37
+ "brand","nome","descrizione","prezzo","immagine"
38
+ "Adidas","Runfalcon 5 Nero","Adidas Scarpa da Running Donna Runfalcon 5 Nero","60,00","ADIDIE8826_VAR_01_3480.jpg"
39
+ "Adidas","Adistar 3 Blu Fucsia","Adidas Scarpa da Running Donna Adistar 3 Blu Fucsia Sconto 10%","126,00","ADIDJI1230_VAR_01_38b8.jpg"
40
+
41
+ ```
42
+
43
+ ## ๐Ÿš€ Use Cases
44
+
45
+ 1. **Image Classification:** Training models to recognize shoe brands or specific models.
46
+ 2. **Price Prediction:** Analyzing the correlation between product descriptions and their retail price.
47
+ 3. **Italian NLP:** Fine-tuning LLMs or NER (Named Entity Recognition) models to extract features (gender, color, discount) from Italian commercial text.
48
+
49
+ ## ๐Ÿ›  How to Use with Python
50
+
51
+ ```python
52
+ import pandas as pd
53
+
54
+ # Load the metadata
55
+ df = pd.read_csv('shoes_metadata.csv')
56
+
57
+ # Display the first few rows
58
+ print(df.head())
59
+
60
+ ```