Monet Joe
commited on
Commit
•
61d15d7
1
Parent(s):
00c489a
Update README.md
Browse files
README.md
CHANGED
@@ -9,4 +9,22 @@ tags:
|
|
9 |
pretty_name: The Street View House Numbers (SVHN) Dataset
|
10 |
size_categories:
|
11 |
- 10K<n<100K
|
12 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
pretty_name: The Street View House Numbers (SVHN) Dataset
|
10 |
size_categories:
|
11 |
- 10K<n<100K
|
12 |
+
---
|
13 |
+
|
14 |
+
# Dataset card for SVHN
|
15 |
+
The Street View House Numbers (SVHN) dataset serves as a real-world image dataset designed for the development of machine learning and object recognition algorithms, characterized by minimal requirements on data preprocessing and formatting. Similar in essence to MNIST, featuring small cropped digits, SVHN surpasses MNIST by an order of magnitude in labeled data, comprising over 600,000 digit images. Unlike MNIST, SVHN tackles a considerably more challenging and unsolved real-world problem—recognizing digits and numbers within natural scene images. This dataset is derived from house numbers captured in Google Street View images.
|
16 |
+
|
17 |
+
## Maintenance
|
18 |
+
```bash
|
19 |
+
GIT_LFS_SKIP_SMUDGE=1 git clone git@hf.co:datasets/MuGeminorum/svhn
|
20 |
+
```
|
21 |
+
|
22 |
+
## Usage
|
23 |
+
```python
|
24 |
+
from datasets import load_dataset
|
25 |
+
|
26 |
+
dataset = load_dataset("MuGeminorum/svhn")
|
27 |
+
|
28 |
+
for item in dataset['train']:
|
29 |
+
print(item)
|
30 |
+
```
|