whyen-wang commited on
Commit
891d092
1 Parent(s): 56a0506

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +132 -0
README.md CHANGED
@@ -41,3 +41,135 @@ configs:
41
  - split: test
42
  path: data/test-*
43
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  - split: test
42
  path: data/test-*
43
  ---
44
+
45
+ # Dataset Card for "MNIST"
46
+
47
+ ## Table of Contents
48
+ - [Table of Contents](#table-of-contents)
49
+ - [Dataset Description](#dataset-description)
50
+ - [Dataset Summary](#dataset-summary)
51
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
52
+ - [Languages](#languages)
53
+ - [Dataset Structure](#dataset-structure)
54
+ - [Data Instances](#data-instances)
55
+ - [Data Fields](#data-fields)
56
+ - [Data Splits](#data-splits)
57
+ - [Dataset Creation](#dataset-creation)
58
+ - [Curation Rationale](#curation-rationale)
59
+ - [Source Data](#source-data)
60
+ - [Annotations](#annotations)
61
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
62
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
63
+ - [Social Impact of Dataset](#social-impact-of-dataset)
64
+ - [Discussion of Biases](#discussion-of-biases)
65
+ - [Other Known Limitations](#other-known-limitations)
66
+ - [Additional Information](#additional-information)
67
+ - [Dataset Curators](#dataset-curators)
68
+ - [Licensing Information](#licensing-information)
69
+ - [Citation Information](#citation-information)
70
+ - [Contributions](#contributions)
71
+
72
+ ## Dataset Description
73
+
74
+ - **Homepage:** http://yann.lecun.com/exdb/mnist/
75
+ - **Repository:** None
76
+ - **Paper:** None
77
+ - **Leaderboard:** None
78
+ - **Point of Contact:** None
79
+
80
+ ### Dataset Summary
81
+
82
+ The MNIST database of handwritten digits, available from this page, has a training set of 60,000 examples, and a test set of 10,000 examples. It is a subset of a larger set available from NIST. The digits have been size-normalized and centered in a fixed-size image.
83
+
84
+ ### Supported Tasks and Leaderboards
85
+
86
+ [Image Classification](https://huggingface.co/tasks/image-classification)
87
+
88
+ ### Languages
89
+
90
+ None
91
+
92
+ ## Dataset Structure
93
+
94
+ ### Data Instances
95
+
96
+ An example looks as follows.
97
+
98
+ ```
99
+ {
100
+ "image": PIL.Image(mode="L"),
101
+ "label": "0"
102
+ }
103
+ ```
104
+
105
+ ### Data Fields
106
+
107
+ [More Information Needed]
108
+
109
+ ### Data Splits
110
+
111
+ | name | train | test |
112
+ | ----- | -----: | -----: |
113
+ |default| 60,000 | 10,000 |
114
+
115
+ ## Dataset Creation
116
+
117
+ ### Curation Rationale
118
+
119
+ [More Information Needed]
120
+
121
+ ### Source Data
122
+
123
+ #### Initial Data Collection and Normalization
124
+
125
+ [More Information Needed]
126
+
127
+ #### Who are the source language producers?
128
+
129
+ [More Information Needed]
130
+
131
+ ### Annotations
132
+
133
+ #### Annotation process
134
+
135
+ [More Information Needed]
136
+
137
+ #### Who are the annotators?
138
+
139
+ [More Information Needed]
140
+
141
+ ### Personal and Sensitive Information
142
+
143
+ [More Information Needed]
144
+
145
+ ## Considerations for Using the Data
146
+
147
+ ### Social Impact of Dataset
148
+
149
+ [More Information Needed]
150
+
151
+ ### Discussion of Biases
152
+
153
+ [More Information Needed]
154
+
155
+ ### Other Known Limitations
156
+
157
+ [More Information Needed]
158
+
159
+ ## Additional Information
160
+
161
+ ### Dataset Curators
162
+
163
+ [More Information Needed]
164
+
165
+ ### Licensing Information
166
+
167
+ [More Information Needed]
168
+
169
+ ### Citation Information
170
+
171
+ [More Information Needed]
172
+
173
+ ### Contributions
174
+
175
+ Thanks to [@github-whyen-wang](https://github.com/whyen-wang) for adding this dataset.