bharat-raghunathan
commited on
Commit
•
ef509a8
1
Parent(s):
0750d24
Add train test split info
Browse files
README.md
CHANGED
@@ -68,14 +68,22 @@ English
|
|
68 |
## Dataset Structure
|
69 |
```json
|
70 |
{
|
71 |
-
"image":
|
72 |
-
"
|
73 |
}
|
74 |
```
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
### Data Instances
|
77 |
|
78 |
-
Each instance is a picture of the Indian food item,along with the category it belongs to.
|
79 |
|
80 |
#### Initial Data Collection and Normalization
|
81 |
|
|
|
68 |
## Dataset Structure
|
69 |
```json
|
70 |
{
|
71 |
+
"image": "Image(decode=True, id=None)",
|
72 |
+
"target": "ClassLabel(names=['biryani', 'cholebhature', 'dabeli', 'dal', 'dhokla', 'dosa', 'jalebi', 'kathiroll', 'kofta', 'naan', 'pakora', 'paneer', 'panipuri', 'pavbhaji', 'vadapav'], id=None)"
|
73 |
}
|
74 |
```
|
75 |
+
### Dataset Splits
|
76 |
+
|
77 |
+
This dataset is split into a train and test split. The split sizes are as follows:
|
78 |
+
|
79 |
+
| Split name | Num samples |
|
80 |
+
| ------------ | ------------------- |
|
81 |
+
| train | 3809 |
|
82 |
+
| test | 961 |
|
83 |
+
|
84 |
### Data Instances
|
85 |
|
86 |
+
Each instance is a picture of the Indian food item, along with the category it belongs to.
|
87 |
|
88 |
#### Initial Data Collection and Normalization
|
89 |
|