Datasets:
anubhavmaity
commited on
Commit
•
d0f8969
1
Parent(s):
4500ae0
Update README.md
Browse files
README.md
CHANGED
@@ -53,17 +53,16 @@ The notMNIST dataset is a collection of images of letters from A to J in various
|
|
53 |
|
54 |
## Dataset Information
|
55 |
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
Color Channels: Grayscale
|
61 |
|
62 |
## Dataset Structure
|
63 |
|
64 |
The dataset is split into a training set and a test set. Each class has its own subdirectory containing images of that class. The directory structure is as follows:
|
65 |
|
66 |
-
```
|
67 |
notMNIST/
|
68 |
|-- train/
|
69 |
| |-- A/
|
@@ -76,23 +75,10 @@ The dataset is split into a training set and a test set. Each class has its own
|
|
76 |
| |-- B/
|
77 |
| |-- ...
|
78 |
| |-- J/
|
79 |
-
|
80 |
|
81 |
## Acknowledgements
|
82 |
|
83 |
http://yaroslavvb.blogspot.com/2011/09/notmnist-dataset.html
|
84 |
https://www.kaggle.com/datasets/lubaroli/notmnist
|
85 |
|
86 |
-
|
87 |
-
## Inspiration
|
88 |
-
|
89 |
-
This is a pretty good dataset to train classifiers! According to Yaroslav:
|
90 |
-
|
91 |
-
> Judging by the examples, one would expect this to be a harder task
|
92 |
-
than MNIST. This seems to be the case -- logistic regression on top of
|
93 |
-
stacked auto-encoder with fine-tuning gets about 89% accuracy whereas
|
94 |
-
same approach gives got 98% on MNIST. Dataset consists of small
|
95 |
-
hand-cleaned part, about 19k instances, and large uncleaned dataset,
|
96 |
-
500k instances. Two parts have approximately 0.5% and 6.5% label error
|
97 |
-
rate. I got this by looking through glyphs and counting how often my
|
98 |
-
guess of the letter didn't match it's unicode value in the font file.
|
|
|
53 |
|
54 |
## Dataset Information
|
55 |
|
56 |
+
- Number of Classes: 10 (A to J)
|
57 |
+
- Number of Samples: 187,24
|
58 |
+
- Image Size: 28 x 28 pixels
|
59 |
+
- Color Channels: Grayscale
|
|
|
60 |
|
61 |
## Dataset Structure
|
62 |
|
63 |
The dataset is split into a training set and a test set. Each class has its own subdirectory containing images of that class. The directory structure is as follows:
|
64 |
|
65 |
+
```
|
66 |
notMNIST/
|
67 |
|-- train/
|
68 |
| |-- A/
|
|
|
75 |
| |-- B/
|
76 |
| |-- ...
|
77 |
| |-- J/
|
78 |
+
```
|
79 |
|
80 |
## Acknowledgements
|
81 |
|
82 |
http://yaroslavvb.blogspot.com/2011/09/notmnist-dataset.html
|
83 |
https://www.kaggle.com/datasets/lubaroli/notmnist
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|