Datasets:
Tasks:
Image Classification
Modalities:
Image
Formats:
parquet
Sub-tasks:
multi-class-image-classification
Languages:
English
Size:
100K - 1M
Update README.md
Browse files
README.md
CHANGED
@@ -79,4 +79,18 @@ The class labels in the dataset are in English.
|
|
79 |
|
80 |
| | Train | Valid |
|
81 |
| ------------ | ------ | ----- |
|
82 |
-
| # of samples | 100000 | 10000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
80 |
| | Train | Valid |
|
81 |
| ------------ | ------ | ----- |
|
82 |
+
| # of samples | 100000 | 10000 |
|
83 |
+
|
84 |
+
## Usage
|
85 |
+
|
86 |
+
### Example
|
87 |
+
|
88 |
+
#### Load Dataset
|
89 |
+
```python
|
90 |
+
def example_usage():
|
91 |
+
tiny_imagenet = load_dataset('Maysee/tiny-imagenet', split='train')
|
92 |
+
print(tiny_imagenet[0])
|
93 |
+
|
94 |
+
if __name__ == '__main__':
|
95 |
+
example_usage()
|
96 |
+
```
|