poolrf2001 commited on
Commit
f6e2f76
·
1 Parent(s): ae1aaa5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +194 -4
README.md CHANGED
@@ -1,10 +1,200 @@
1
  ---
2
- license: mit
3
- task_categories:
4
- - image-classification
 
5
  language:
6
  - en
 
 
 
 
7
  pretty_name: FaceMask
8
  size_categories:
9
  - 1K<n<10K
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - expert-generated
6
  language:
7
  - en
8
+ license:
9
+ - mit
10
+ multilinguality:
11
+ - monolingual
12
  pretty_name: FaceMask
13
  size_categories:
14
  - 1K<n<10K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - image-classification
19
+ task_ids:
20
+ - multi-class-image-classification
21
+ dataset_info:
22
+ features:
23
+
24
+ - name: image
25
+ dtype: image
26
+ - name: labels
27
+ dtype:
28
+ class_label:
29
+ names:
30
+ 0: mask_weared_incorrect
31
+ 1: with_mask
32
+ 2: without_mask
33
+ splits:
34
+ - name: train
35
+ num_bytes: 382110
36
+ num_examples: 1500
37
+ - name: validation
38
+ num_bytes: 49711
39
+ num_examples: 180
40
+ - name: test
41
+ num_bytes: 46584
42
+ num_examples: 180
43
+ download_size: 180024906
44
+ dataset_size: 478405
45
+ ---
46
+
47
+ # Dataset Card for Beans
48
+
49
+ ## Table of Contents
50
+ - [Table of Contents](#table-of-contents)
51
+ - [Dataset Description](#dataset-description)
52
+ - [Dataset Summary](#dataset-summary)
53
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
54
+ - [Languages](#languages)
55
+ - [Dataset Structure](#dataset-structure)
56
+ - [Data Instances](#data-instances)
57
+ - [Data Fields](#data-fields)
58
+ - [Data Splits](#data-splits)
59
+ - [Dataset Creation](#dataset-creation)
60
+ - [Curation Rationale](#curation-rationale)
61
+ - [Source Data](#source-data)
62
+ - [Annotations](#annotations)
63
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
64
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
65
+ - [Social Impact of Dataset](#social-impact-of-dataset)
66
+ - [Discussion of Biases](#discussion-of-biases)
67
+ - [Other Known Limitations](#other-known-limitations)
68
+ - [Additional Information](#additional-information)
69
+ - [Dataset Curators](#dataset-curators)
70
+ - [Licensing Information](#licensing-information)
71
+ - [Citation Information](#citation-information)
72
+ - [Contributions](#contributions)
73
+
74
+ ## Dataset Description
75
+
76
+ - **Homepage:** [Beans Homepage](https://github.com/AI-Lab-Makerere/ibean/)
77
+ - **Repository:** [AI-Lab-Makerere/ibean](https://github.com/AI-Lab-Makerere/ibean/)
78
+ - **Paper:** N/A
79
+ - **Leaderboard:** N/A
80
+ - **Point of Contact:** N/A
81
+
82
+ ### Dataset Summary
83
+
84
+ Beans leaf dataset with images of diseased and health leaves.
85
+
86
+ ### Supported Tasks and Leaderboards
87
+
88
+ - `image-classification`: Based on a leaf image, the goal of this task is to predict the disease type (Angular Leaf Spot and Bean Rust), if any.
89
+
90
+ ### Languages
91
+
92
+ English
93
+
94
+ ## Dataset Structure
95
+
96
+ ### Data Instances
97
+
98
+ A sample from the training set is provided below:
99
+
100
+ ```
101
+ {
102
+ 'image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=128x128 at 0x16BAA72A4A8>,
103
+ 'labels': 1
104
+ }
105
+ ```
106
+
107
+ ### Data Fields
108
+
109
+ The data instances have the following fields:
110
+
111
+ - `image_file_path`: a `string` filepath to an image.
112
+ - `image`: A `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`.
113
+ - `labels`: an `int` classification label.
114
+
115
+ Class Label Mappings:
116
+
117
+ ```json
118
+ {
119
+ "mask_weared_incorrect": 0,
120
+ "with_mask": 1,
121
+ "without_mask": 2,
122
+ }
123
+ ```
124
+
125
+ ### Data Splits
126
+
127
+
128
+ | |train|validation|test|
129
+ |-------------|----:|---------:|---:|
130
+ |# of examples|1500 |180 |180 |
131
+
132
+ ## Dataset Creation
133
+
134
+ ### Curation Rationale
135
+
136
+ [More Information Needed]
137
+
138
+ ### Source Data
139
+
140
+ #### Initial Data Collection and Normalization
141
+
142
+ [More Information Needed]
143
+
144
+ #### Who are the source language producers?
145
+
146
+ [More Information Needed]
147
+
148
+ ### Annotations
149
+
150
+ #### Annotation process
151
+
152
+ [More Information Needed]
153
+
154
+ #### Who are the annotators?
155
+
156
+ [More Information Needed]
157
+
158
+ ### Personal and Sensitive Information
159
+
160
+ [More Information Needed]
161
+
162
+ ## Considerations for Using the Data
163
+
164
+ ### Social Impact of Dataset
165
+
166
+ [More Information Needed]
167
+
168
+ ### Discussion of Biases
169
+
170
+ [More Information Needed]
171
+
172
+ ### Other Known Limitations
173
+
174
+ [More Information Needed]
175
+
176
+ ## Additional Information
177
+
178
+ ### Dataset Curators
179
+
180
+ [More Information Needed]
181
+
182
+ ### Licensing Information
183
+
184
+ [More Information Needed]
185
+
186
+ ### Citation Information
187
+
188
+ ```
189
+ @ONLINE {beansdata,
190
+ author="Pool",
191
+ title="FaceMask dataset",
192
+ month="January",
193
+ year="2023",
194
+ url="https://github.com/poolrf2001/maskFace"
195
+ }
196
+ ```
197
+
198
+ ### Contributions
199
+
200
+ Thanks to [@nateraw](https://github.com/nateraw) for adding this dataset.