Louis Rädisch commited on
Commit
059fed7
1 Parent(s): 05343ac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +104 -5
README.md CHANGED
@@ -1,3 +1,4 @@
 
1
  ---
2
  license: mit
3
  ---
@@ -5,9 +6,107 @@ license: mit
5
  # AlphaNum Dataset
6
 
7
  ## Dataset Summary
8
- The AlphaNum dataset, curated by Louis Rädisch, is a comprehensive collection of grayscale, handwritten characters and digits, each with dimensions of 28x28 pixels. The primary aim of this dataset is to aid Optical Character Recognition (OCR) tasks. The dataset encompasses labels ranging from 0-35, wherein labels 0-25 correspond to the English alphabets (A-Z) and labels 26-35 correspond to the digits (0-9). Interestingly, the images derived from the MNIST dataset have been color inverted to maintain consistency with the rest of the data.
 
 
9
 
10
- To harmonize the data from diverse sources, Vision Transformer Models have been fine-tuned, enhancing the accuracy of the dataset. For instance, the 'A-Z handwritten alphabets' dataset originally did not differentiate between upper and lower case letters, an issue rectified in this new compilation.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  ## Sources:
13
  1) [Handwriting Characters Database](https://github.com/sueiras/handwritting_characters_database)
@@ -18,14 +117,14 @@ The dataset files have been scaled down to 24x24 pixels and recolored from white
18
 
19
  ## Dataset Structure
20
  ### Data Instances
21
- A single data instance in this dataset comprises an image of a handwritten character or digit, accompanied by its corresponding label.
22
 
23
  ### Data Fields
24
  1) 'image': This field contains the image of the handwritten character or digit.
25
- 2) 'label': This field provides the label corresponding to the character or digit in the image. (0-25 are assigned to A-Z, 26-35 to 0-9)
26
 
27
  ### Data Splits
28
  The dataset is bifurcated into training and test subsets to facilitate the building and evaluation of models.
29
 
30
  ## Dataset Use
31
- The AlphaNum dataset is apt for tasks associated with text recognition, document processing, and machine learning. It is particularly beneficial for constructing, fine-tuning, and enhancing OCR models.
 
1
+
2
  ---
3
  license: mit
4
  ---
 
6
  # AlphaNum Dataset
7
 
8
  ## Dataset Summary
9
+ The AlphaNum dataset, curated by Louis Rädisch, is a comprehensive collection of grayscale, handwritten characters and digits, each with dimensions of 28x28 pixels. The primary aim of this dataset is to aid Optical Character Recognition (OCR) tasks. The dataset encompasses labels ranging from 33 to 126, and 999 representing the ASCII characters from '!' to '~', and 'null' respectively. The 'null' category comprises images with normally distributed light pixels placed randomly.
10
+
11
+ Images derived from the MNIST dataset have been color inverted to maintain consistency with the rest of the data. Vision Transformer Models have been fine-tuned to harmonize the data from diverse sources, enhancing the dataset's accuracy. For instance, the 'A-Z handwritten alphabets' dataset originally did not differentiate between upper and lower case letters, an issue rectified in this new compilation.
12
 
13
+ ## ASCII Table
14
+ | ASCII Value | Character |
15
+ |-------------|-----------|
16
+ | 33 | ! |
17
+ | 34 | " |
18
+ | 35 | # |
19
+ | 36 | $ |
20
+ | 37 | % |
21
+ | 38 | & |
22
+ | 39 | ' |
23
+ | 40 | ( |
24
+ | 41 | ) |
25
+ | 42 | * |
26
+ | 43 | + |
27
+ | 44 | , |
28
+ | 45 | - |
29
+ | 46 | . |
30
+ | 47 | / |
31
+ | 48 | 0 |
32
+ | 49 | 1 |
33
+ | 50 | 2 |
34
+ | 51 | 3 |
35
+ | 52 | 4 |
36
+ | 53 | 5 |
37
+ | 54 | 6 |
38
+ | 55 | 7 |
39
+ | 56 | 8 |
40
+ | 57 | 9 |
41
+ | 58 | : |
42
+ | 59 | ; |
43
+ | 60 | < |
44
+ | 61 | = |
45
+ | 62 | > |
46
+ | 63 | ? |
47
+ | 64 | @ |
48
+ | 65 | A |
49
+ | 66 | B |
50
+ | 67 | C |
51
+ | 68 | D |
52
+ | 69 | E |
53
+ | 70 | F |
54
+ | 71 | G |
55
+ | 72 | H |
56
+ | 73 | I |
57
+ | 74 | J |
58
+ | 75 | K |
59
+ | 76 | L |
60
+ | 77 | M |
61
+ | 78 | N |
62
+ | 79 | O |
63
+ | 80 | P |
64
+ | 81 | Q |
65
+ | 82 | R |
66
+ | 83 | S |
67
+ | 84 | T |
68
+ | 85 | U |
69
+ | 86 | V |
70
+ | 87 | W |
71
+ | 88 | X |
72
+ | 89 | Y |
73
+ | 90 | Z |
74
+ | 91 | [ |
75
+ | 93 | ] |
76
+ | 94 | ^ |
77
+ | 95 | _ |
78
+ | 96 | ` |
79
+ | 97 | a |
80
+ | 98 | b |
81
+ | 99 | c |
82
+ | 100 | d |
83
+ | 101 | e |
84
+ | 102 | f |
85
+ | 103 | g |
86
+ | 104 | h |
87
+ | 105 | i |
88
+ | 106 | j |
89
+ | 107 | k |
90
+ | 108 | l |
91
+ | 109 | m |
92
+ | 110 | n |
93
+ | 111 | o |
94
+ | 112 | p |
95
+ | 113 | q |
96
+ | 114 | r |
97
+ | 115 | s |
98
+ | 116 | t |
99
+ | 117 | u |
100
+ | 118 | v |
101
+ | 119 | w |
102
+ | 120 | x |
103
+ | 121 | y |
104
+ | 122 | z |
105
+ | 123 | { |
106
+ | 124 | \| |
107
+ | 125 | } |
108
+ | 126 | ~ |
109
+ | 999 | null |
110
 
111
  ## Sources:
112
  1) [Handwriting Characters Database](https://github.com/sueiras/handwritting_characters_database)
 
117
 
118
  ## Dataset Structure
119
  ### Data Instances
120
+ A single data instance in this dataset comprises an image of a handwritten character or digit, accompanied by its corresponding ASCII label.
121
 
122
  ### Data Fields
123
  1) 'image': This field contains the image of the handwritten character or digit.
124
+ 2) 'label': This field provides the ASCII label corresponding to the character or digit in the image.
125
 
126
  ### Data Splits
127
  The dataset is bifurcated into training and test subsets to facilitate the building and evaluation of models.
128
 
129
  ## Dataset Use
130
+ The AlphaNum dataset is apt for tasks associated with text recognition, document processing, and machine learning. It is particularly beneficial for constructing, fine-tuning, and enhancing OCR models.