andandandand commited on
Commit
c64433f
·
verified ·
1 Parent(s): d903e58

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +194 -130
README.md CHANGED
@@ -1,162 +1,226 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: label
7
- dtype:
8
- class_label:
9
- names:
10
- - A
11
- - B
12
- - C
13
- - D
14
- - E
15
- - F
16
- - G
17
- - H
18
- - I
19
- - K
20
- - L
21
- - M
22
- - 'N'
23
- - O
24
- - P
25
- - Q
26
- - R
27
- - S
28
- - T
29
- - U
30
- - V
31
- - W
32
- - X
33
- - 'Y'
34
- splits:
35
- - name: train
36
- num_bytes: 0
37
- num_examples: 0
38
- - name: test
39
- num_bytes: 0
40
- num_examples: 0
41
- download_size: 0
42
- dataset_size: 0
43
- configs:
44
- - config_name: default
45
- data_files:
46
- - split: train
47
- path: train/*
48
- - split: test
49
- path: test/*
50
  license: mit
51
- tags:
52
- - computer-vision
53
- - image-classification
54
- - sign-language
55
- - asl
56
- - mnist
57
- - gesture-recognition
58
- task_categories:
59
- - image-classification
60
- task_ids:
61
- - multi-class-image-classification
62
- paperswithcode_id: asl-mnist
63
  size_categories:
64
  - 10K<n<100K
65
- language:
66
- - en
67
- multilinguality:
68
- - monolingual
69
- source_datasets:
70
- - original
71
- annotations_creators:
72
- - expert-generated
73
- pretty_name: american-sign-language-mnist
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  ---
75
 
76
- # ASL-MNIST Dataset Card
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
 
78
- ![](ASL.png)
 
 
79
 
80
- ## Dataset Description
 
 
81
 
82
- The American Sign Language MNIST dataset contains static hand gesture images representing letters of the ASL alphabet. This dataset provides image classification data for training models to recognize ASL hand poses.
83
 
84
  ## Dataset Details
85
 
86
- - **Total samples**: Varies by split (training and test sets available)
87
- - **Image format**: JPG
88
- - **Number of classes**: 24 (out of 26 alphabet letters)
89
- - **Image type**: Grayscale hand gesture photographs
90
- - **Split**: Training and test sets provided
 
 
 
 
 
 
 
 
 
 
91
 
92
- ## Classes
 
 
93
 
94
- The dataset includes 24 ASL letters:
95
- A, B, C, D, E, F, G, H, I, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y
96
 
97
- ### Missing Letters
98
 
99
- J (index 9) and Z (index 25) are excluded because they require hand motion in ASL. Static images cannot capture these motion-based letters.
 
 
 
 
 
 
 
 
 
 
100
 
101
  ## Dataset Structure
102
 
103
- ```
104
- asl-mnist/
105
- ├── train/
106
- │ ├── train_0.jpg
107
- │ ├── train_1.jpg
108
- │ └── ...
109
- ├── test/
110
- │ ├── test_0.jpg
111
- │ ├── test_1.jpg
112
- │ └── ...
113
- ├── train.csv
114
- └── test.csv
115
- ```
116
 
117
- ## Label Mapping
118
 
119
- The dataset uses numeric indices that map to letters:
120
 
121
- ```python
122
- asl_labels = {
123
- 0: 'A', 1: 'B', 2: 'C', 3: 'D', 4: 'E', 5: 'F', 6: 'G', 7: 'H', 8: 'I',
124
- 10: 'K', 11: 'L', 12: 'M', 13: 'N', 14: 'O', 15: 'P', 16: 'Q', 17: 'R',
125
- 18: 'S', 19: 'T', 20: 'U', 21: 'V', 22: 'W', 23: 'X', 24: 'Y'
126
- }
127
- ```
128
 
129
- ## Data Fields
130
 
131
- Each sample contains:
132
- - `image`: The hand gesture image file
133
- - `label`: Classification label (letter A-Y, excluding J and Z)
134
- - `split`: "train" or "test"
135
 
136
- ## Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
 
138
- This dataset is suitable for:
139
- - Image classification tasks
140
- - Computer vision model training
141
- - ASL recognition research
142
- - Educational projects on sign language
143
 
144
- ## Limitations
145
 
146
- - Contains only static poses (no motion-based letters)
147
- - Limited to 24 out of 26 alphabet letters
148
- - Single hand gestures only
149
- - Grayscale images may limit color-based feature learning
150
 
151
- ## Citation
152
 
153
- If you use this dataset in your research, please cite the original ASL-MNIST dataset, available through Kaggle
154
- https://www.kaggle.com/datasets/datamunge/sign-language-mnist/data
155
 
156
- ## Technical Implementation
157
 
158
- The dataset has been processed and formatted for use with FiftyOne, a computer vision dataset management tool. The implementation includes:
159
- - Automatic label mapping from numeric indices to letters
160
- - Train/test split preservation
161
- - Metadata computation for efficient querying
162
- - Support for filtering unknown labels
 
1
  ---
2
+ annotations_creators: []
3
+ language: en
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
5
  size_categories:
6
  - 10K<n<100K
7
+ task_categories:
8
+ - image-classification
9
+ task_ids: []
10
+ pretty_name: asl-mnist
11
+ tags:
12
+ - fiftyone
13
+ - image
14
+ - image-classification
15
+ repo_type: dataset
16
+ dataset_summary: '
17
+
18
+
19
+
20
+
21
+ This is a [FiftyOne](https://github.com/voxel51/fiftyone) dataset with 34627 samples.
22
+
23
+
24
+ ## Installation
25
+
26
+
27
+ If you haven''t already, install FiftyOne:
28
+
29
+
30
+ ```bash
31
+
32
+ pip install -U fiftyone
33
+
34
+ ```
35
+
36
+
37
+ ## Usage
38
+
39
+
40
+ ```python
41
+
42
+ import fiftyone as fo
43
+
44
+ from fiftyone.utils.huggingface import load_from_hub
45
+
46
+
47
+ # Load the dataset
48
+
49
+ # Note: other available arguments include ''max_samples'', etc
50
+
51
+ dataset = load_from_hub("andandandand/American-Sign-Language-MNIST")
52
+
53
+
54
+ # Launch the App
55
+
56
+ session = fo.launch_app(dataset)
57
+
58
+ ```
59
+
60
+ '
61
  ---
62
 
63
+ # Dataset Card for asl-mnist
64
+
65
+ <!-- Provide a quick summary of the dataset. -->
66
+
67
+
68
+
69
+
70
+
71
+ This is a [FiftyOne](https://github.com/voxel51/fiftyone) dataset with 34627 samples.
72
+
73
+ ## Installation
74
+
75
+ If you haven't already, install FiftyOne:
76
+
77
+ ```bash
78
+ pip install -U fiftyone
79
+ ```
80
+
81
+ ## Usage
82
+
83
+ ```python
84
+ import fiftyone as fo
85
+ from fiftyone.utils.huggingface import load_from_hub
86
 
87
+ # Load the dataset
88
+ # Note: other available arguments include 'max_samples', etc
89
+ dataset = load_from_hub("andandandand/American-Sign-Language-MNIST")
90
 
91
+ # Launch the App
92
+ session = fo.launch_app(dataset)
93
+ ```
94
 
 
95
 
96
  ## Dataset Details
97
 
98
+ ### Dataset Description
99
+
100
+ <!-- Provide a longer summary of what this dataset is. -->
101
+
102
+
103
+
104
+ - **Curated by:** [More Information Needed]
105
+ - **Funded by [optional]:** [More Information Needed]
106
+ - **Shared by [optional]:** [More Information Needed]
107
+ - **Language(s) (NLP):** en
108
+ - **License:** mit
109
+
110
+ ### Dataset Sources [optional]
111
+
112
+ <!-- Provide the basic links for the dataset. -->
113
 
114
+ - **Repository:** [More Information Needed]
115
+ - **Paper [optional]:** [More Information Needed]
116
+ - **Demo [optional]:** [More Information Needed]
117
 
118
+ ## Uses
 
119
 
120
+ <!-- Address questions around how the dataset is intended to be used. -->
121
 
122
+ ### Direct Use
123
+
124
+ <!-- This section describes suitable use cases for the dataset. -->
125
+
126
+ [More Information Needed]
127
+
128
+ ### Out-of-Scope Use
129
+
130
+ <!-- This section addresses misuse, malicious use, and uses that the dataset will not work well for. -->
131
+
132
+ [More Information Needed]
133
 
134
  ## Dataset Structure
135
 
136
+ <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
 
 
 
 
 
 
 
 
 
 
 
 
137
 
138
+ [More Information Needed]
139
 
140
+ ## Dataset Creation
141
 
142
+ ### Curation Rationale
 
 
 
 
 
 
143
 
144
+ <!-- Motivation for the creation of this dataset. -->
145
 
146
+ [More Information Needed]
 
 
 
147
 
148
+ ### Source Data
149
+
150
+ <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
151
+
152
+ #### Data Collection and Processing
153
+
154
+ <!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
155
+
156
+ [More Information Needed]
157
+
158
+ #### Who are the source data producers?
159
+
160
+ <!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
161
+
162
+ [More Information Needed]
163
+
164
+ ### Annotations [optional]
165
+
166
+ <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
167
+
168
+ #### Annotation process
169
+
170
+ <!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->
171
+
172
+ [More Information Needed]
173
+
174
+ #### Who are the annotators?
175
+
176
+ <!-- This section describes the people or systems who created the annotations. -->
177
+
178
+ [More Information Needed]
179
+
180
+ #### Personal and Sensitive Information
181
+
182
+ <!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->
183
+
184
+ [More Information Needed]
185
+
186
+ ## Bias, Risks, and Limitations
187
+
188
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
189
+
190
+ [More Information Needed]
191
+
192
+ ### Recommendations
193
+
194
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
195
+
196
+ Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
197
+
198
+ ## Citation [optional]
199
+
200
+ <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
201
+
202
+ **BibTeX:**
203
+
204
+ [More Information Needed]
205
+
206
+ **APA:**
207
+
208
+ [More Information Needed]
209
+
210
+ ## Glossary [optional]
211
+
212
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the dataset or dataset card. -->
213
 
214
+ [More Information Needed]
 
 
 
 
215
 
216
+ ## More Information [optional]
217
 
218
+ [More Information Needed]
 
 
 
219
 
220
+ ## Dataset Card Authors [optional]
221
 
222
+ [More Information Needed]
 
223
 
224
+ ## Dataset Card Contact
225
 
226
+ [More Information Needed]