Datasets:
frgfm
commited on
Commit
•
9cffdef
1
Parent(s):
322d880
docs: Updated README and dataset infos
Browse files- README.md +157 -1
- dataset_infos.json +191 -0
README.md
CHANGED
@@ -1,3 +1,159 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
annotations_creators:
|
3 |
+
- crowdsourced
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
language_creators:
|
7 |
+
- crowdsourced
|
8 |
+
license:
|
9 |
+
- apache-2.0
|
10 |
+
multilinguality: []
|
11 |
+
pretty_name: Imagewoof
|
12 |
+
size_categories:
|
13 |
+
- 1K<n<10K
|
14 |
+
source_datasets:
|
15 |
+
- extended
|
16 |
+
task_categories:
|
17 |
+
- image-classification
|
18 |
+
task_ids:
|
19 |
+
- image-classification
|
20 |
+
paperswithcode_id: imagewoof
|
21 |
---
|
22 |
+
|
23 |
+
# Dataset Card for OpenFire
|
24 |
+
|
25 |
+
## Table of Contents
|
26 |
+
- [Table of Contents](#table-of-contents)
|
27 |
+
- [Dataset Description](#dataset-description)
|
28 |
+
- [Dataset Summary](#dataset-summary)
|
29 |
+
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
|
30 |
+
- [Languages](#languages)
|
31 |
+
- [Dataset Structure](#dataset-structure)
|
32 |
+
- [Data Instances](#data-instances)
|
33 |
+
- [Data Fields](#data-fields)
|
34 |
+
- [Data Splits](#data-splits)
|
35 |
+
- [Dataset Creation](#dataset-creation)
|
36 |
+
- [Curation Rationale](#curation-rationale)
|
37 |
+
- [Source Data](#source-data)
|
38 |
+
- [Annotations](#annotations)
|
39 |
+
- [Personal and Sensitive Information](#personal-and-sensitive-information)
|
40 |
+
- [Considerations for Using the Data](#considerations-for-using-the-data)
|
41 |
+
- [Social Impact of Dataset](#social-impact-of-dataset)
|
42 |
+
- [Discussion of Biases](#discussion-of-biases)
|
43 |
+
- [Other Known Limitations](#other-known-limitations)
|
44 |
+
- [Additional Information](#additional-information)
|
45 |
+
- [Dataset Curators](#dataset-curators)
|
46 |
+
- [Licensing Information](#licensing-information)
|
47 |
+
- [Citation Information](#citation-information)
|
48 |
+
- [Contributions](#contributions)
|
49 |
+
|
50 |
+
## Dataset Description
|
51 |
+
|
52 |
+
- **Homepage:** https://github.com/fastai/imagenette#imagewoof
|
53 |
+
- **Repository:** https://github.com/fastai/imagenette
|
54 |
+
- **Leaderboard:** https://paperswithcode.com/sota/image-classification-on-imagewoof
|
55 |
+
|
56 |
+
### Dataset Summary
|
57 |
+
|
58 |
+
A smaller subset of 10 classes from [Imagenet](https://huggingface.co/datasets/imagenet-1k#dataset-summary) that aren't so easy to classify, since they're all dog breeds.
|
59 |
+
|
60 |
+
### Supported Tasks and Leaderboards
|
61 |
+
|
62 |
+
- `image-classification`: The dataset can be used to train a model for Image Classification.
|
63 |
+
|
64 |
+
### Languages
|
65 |
+
|
66 |
+
The class labels in the dataset are in English.
|
67 |
+
|
68 |
+
## Dataset Structure
|
69 |
+
|
70 |
+
### Data Instances
|
71 |
+
|
72 |
+
A data point comprises an image URL and its classification label.
|
73 |
+
|
74 |
+
```
|
75 |
+
{
|
76 |
+
'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=320x320 at 0x19FA12186D8>,
|
77 |
+
'label': 'Beagle',
|
78 |
+
}
|
79 |
+
```
|
80 |
+
|
81 |
+
### Data Fields
|
82 |
+
|
83 |
+
- `image`: A `PIL.Image.Image` object containing the image.
|
84 |
+
- `label`: the expected class label of the image.
|
85 |
+
|
86 |
+
### Data Splits
|
87 |
+
|
88 |
+
| |train|validation|
|
89 |
+
|---------|----:|---------:|
|
90 |
+
|imagewoof| 9025| 3929|
|
91 |
+
|
92 |
+
|
93 |
+
## Dataset Creation
|
94 |
+
|
95 |
+
### Curation Rationale
|
96 |
+
|
97 |
+
cf. https://huggingface.co/datasets/imagenet-1k#curation-rationale
|
98 |
+
|
99 |
+
### Source Data
|
100 |
+
|
101 |
+
#### Initial Data Collection and Normalization
|
102 |
+
|
103 |
+
Imagewoof is a subset of [ImageNet](https://huggingface.co/datasets/imagenet-1k). Information about data collection of the source data can be found [here](https://huggingface.co/datasets/imagenet-1k#initial-data-collection-and-normalization).
|
104 |
+
|
105 |
+
### Annotations
|
106 |
+
|
107 |
+
#### Annotation process
|
108 |
+
|
109 |
+
cf. https://huggingface.co/datasets/imagenet-1k#annotation-process
|
110 |
+
|
111 |
+
#### Who are the annotators?
|
112 |
+
|
113 |
+
cf. https://huggingface.co/datasets/imagenet-1k#who-are-the-annotators
|
114 |
+
|
115 |
+
### Personal and Sensitive Information
|
116 |
+
|
117 |
+
cf. https://huggingface.co/datasets/imagenet-1k#personal-and-sensitive-information
|
118 |
+
|
119 |
+
## Considerations for Using the Data
|
120 |
+
|
121 |
+
### Social Impact of Dataset
|
122 |
+
|
123 |
+
cf. https://huggingface.co/datasets/imagenet-1k#social-impact-of-dataset
|
124 |
+
|
125 |
+
### Discussion of Biases
|
126 |
+
|
127 |
+
cf. https://huggingface.co/datasets/imagenet-1k#discussion-of-biases
|
128 |
+
|
129 |
+
### Other Known Limitations
|
130 |
+
|
131 |
+
cf. https://huggingface.co/datasets/imagenet-1k#other-known-limitations
|
132 |
+
|
133 |
+
## Additional Information
|
134 |
+
|
135 |
+
### Dataset Curators
|
136 |
+
|
137 |
+
cf. https://huggingface.co/datasets/imagenet-1k#dataset-curators
|
138 |
+
and Jeremy Howard
|
139 |
+
|
140 |
+
### Licensing Information
|
141 |
+
|
142 |
+
[Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|
143 |
+
|
144 |
+
### Citation Information
|
145 |
+
|
146 |
+
```
|
147 |
+
@software{Howard_Imagewoof_2019,
|
148 |
+
title={Imagewoof: a subset of 10 classes from Imagenet that aren't so easy to classify},
|
149 |
+
author={Jeremy Howard},
|
150 |
+
year={2019},
|
151 |
+
month={March},
|
152 |
+
publisher = {GitHub},
|
153 |
+
url = {https://github.com/fastai/imagenette#imagewoof}
|
154 |
+
}
|
155 |
+
```
|
156 |
+
|
157 |
+
### Contributions
|
158 |
+
|
159 |
+
This dataset was added to HuggingFace Datasets by [@frgfm](https://huggingface.co/frgfm).
|
dataset_infos.json
ADDED
@@ -0,0 +1,191 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"full_size": {
|
3 |
+
"description": "Imagewoof is a subset of 10 classes from Imagenet that aren't so \neasy to classify, since they're all dog breeds. The breeds are: \nAustralian terrier, Border terrier, Samoyed, Beagle, Shih-Tzu, \nEnglish foxhound, Rhodesian ridgeback, Dingo, Golden retriever, \nOld English sheepdog.",
|
4 |
+
"citation": "@software{Howard_Imagewoof_2019,\ntitle={Imagewoof: a subset of 10 classes from Imagenet that aren't so easy to classify},\nauthor={Jeremy Howard},\nyear={2019},\nmonth={March},\npublisher = {GitHub},\nurl = {https://github.com/fastai/imagenette#imagewoof}\n}\n",
|
5 |
+
"homepage": "https://github.com/fastai/imagenette#imagewoof",
|
6 |
+
"license": "Apache License 2.0",
|
7 |
+
"features": {
|
8 |
+
"image": {
|
9 |
+
"decode": true,
|
10 |
+
"id": null,
|
11 |
+
"_type": "Image"
|
12 |
+
},
|
13 |
+
"label": {
|
14 |
+
"num_classes": 10,
|
15 |
+
"names": ["Australian terrier", "Border terrier", "Samoyed", "Beagle", "Shih-Tzu", "English foxhound", "Rhodesian ridgeback", "Dingo", "Golden retriever", "Old English sheepdog"],
|
16 |
+
"id": null,
|
17 |
+
"_type": "ClassLabel"
|
18 |
+
}
|
19 |
+
},
|
20 |
+
"post_processed": null,
|
21 |
+
"supervised_keys": null,
|
22 |
+
"task_templates": null,
|
23 |
+
"builder_name": "imagewoof",
|
24 |
+
"config_name": "full_size",
|
25 |
+
"version": {
|
26 |
+
"version_str": "1.0.0",
|
27 |
+
"description": null,
|
28 |
+
"major": 1,
|
29 |
+
"minor": 0,
|
30 |
+
"patch": 0
|
31 |
+
},
|
32 |
+
"splits": {
|
33 |
+
"train": {
|
34 |
+
"name": "train",
|
35 |
+
"num_bytes": 946495775,
|
36 |
+
"num_examples": 9025,
|
37 |
+
"dataset_name": "imagewoof"
|
38 |
+
},
|
39 |
+
"validation": {
|
40 |
+
"name": "validation",
|
41 |
+
"num_bytes": 404651794,
|
42 |
+
"num_examples": 3929,
|
43 |
+
"dataset_name": "imagewoof"
|
44 |
+
}
|
45 |
+
},
|
46 |
+
"download_checksums": {
|
47 |
+
"https://s3.amazonaws.com/fast-ai-imageclas/imagewoof2.tgz": {
|
48 |
+
"num_bytes": 1343715595,
|
49 |
+
"checksum": "de3f58c4ea3e042cf3f8365fbc699288cfe1d8c151059040d181c221bd5a55b8"
|
50 |
+
},
|
51 |
+
"https://huggingface.co/datasets/frgfm/imagewoof/resolve/main/metadata/imagewoof2/train.txt": {
|
52 |
+
"num_bytes": 428249,
|
53 |
+
"checksum": "1489044a137fbdf6b3bf6476902fc8a95940dd3ac143abb849b8abd5727b7952"
|
54 |
+
},
|
55 |
+
"https://huggingface.co/datasets/frgfm/imagewoof/resolve/main/metadata/imagewoof2/val.txt": {
|
56 |
+
"num_bytes": 178758,
|
57 |
+
"checksum": "38b3f58ced48759facffc7c86078c35d6d69eafb7c72e051947358e7fc689ae5"
|
58 |
+
}
|
59 |
+
},
|
60 |
+
"download_size": 1344322602,
|
61 |
+
"post_processing_size": null,
|
62 |
+
"dataset_size": 1352337764,
|
63 |
+
"size_in_bytes": 1352337764
|
64 |
+
},
|
65 |
+
"320px": {
|
66 |
+
"description": "Imagewoof is a subset of 10 classes from Imagenet that aren't so \neasy to classify, since they're all dog breeds. The breeds are: \nAustralian terrier, Border terrier, Samoyed, Beagle, Shih-Tzu, \nEnglish foxhound, Rhodesian ridgeback, Dingo, Golden retriever, \nOld English sheepdog.",
|
67 |
+
"citation": "@software{Howard_Imagewoof_2019,\ntitle={Imagewoof: a subset of 10 classes from Imagenet that aren't so easy to classify},\nauthor={Jeremy Howard},\nyear={2019},\nmonth={March},\npublisher = {GitHub},\nurl = {https://github.com/fastai/imagenette#imagewoof}\n}\n",
|
68 |
+
"homepage": "https://github.com/fastai/imagenette#imagewoof",
|
69 |
+
"license": "Apache License 2.0",
|
70 |
+
"features": {
|
71 |
+
"image": {
|
72 |
+
"decode": true,
|
73 |
+
"id": null,
|
74 |
+
"_type": "Image"
|
75 |
+
},
|
76 |
+
"label": {
|
77 |
+
"num_classes": 10,
|
78 |
+
"names": ["Australian terrier", "Border terrier", "Samoyed", "Beagle", "Shih-Tzu", "English foxhound", "Rhodesian ridgeback", "Dingo", "Golden retriever", "Old English sheepdog"],
|
79 |
+
"id": null,
|
80 |
+
"_type": "ClassLabel"
|
81 |
+
}
|
82 |
+
},
|
83 |
+
"post_processed": null,
|
84 |
+
"supervised_keys": null,
|
85 |
+
"task_templates": null,
|
86 |
+
"builder_name": "imagewoof",
|
87 |
+
"config_name": "320px",
|
88 |
+
"version": {
|
89 |
+
"version_str": "1.0.0",
|
90 |
+
"description": null,
|
91 |
+
"major": 1,
|
92 |
+
"minor": 0,
|
93 |
+
"patch": 0
|
94 |
+
},
|
95 |
+
"splits": {
|
96 |
+
"train": {
|
97 |
+
"name": "train",
|
98 |
+
"num_bytes": 232930320,
|
99 |
+
"num_examples": 9025,
|
100 |
+
"dataset_name": "imagewoof"
|
101 |
+
},
|
102 |
+
"validation": {
|
103 |
+
"name": "validation",
|
104 |
+
"num_bytes": 101604948,
|
105 |
+
"num_examples": 3929,
|
106 |
+
"dataset_name": "imagewoof"
|
107 |
+
}
|
108 |
+
},
|
109 |
+
"download_checksums": {
|
110 |
+
"https://s3.amazonaws.com/fast-ai-imageclas/imagewoof2-320.tgz": {
|
111 |
+
"num_bytes": 328387740,
|
112 |
+
"checksum": "7db6120fdb9ae079e26346f89e7b00d7f184f8137791609b97fd0405d3f92305"
|
113 |
+
},
|
114 |
+
"https://huggingface.co/datasets/frgfm/imagewoof/resolve/main/metadata/imagewoof2-320/train.txt": {
|
115 |
+
"num_bytes": 464349,
|
116 |
+
"checksum": "316c1cf6e47c625144e5b8daa022e958cb25d499c941c258fae83fb86fd62137"
|
117 |
+
},
|
118 |
+
"https://huggingface.co/datasets/frgfm/imagewoof/resolve/main/metadata/imagewoof2-320/val.txt": {
|
119 |
+
"num_bytes": 194474,
|
120 |
+
"checksum": "d8c03e25ddac2ba229e8cc0a433de4849daf2979cd753357368fb392d1be6034"
|
121 |
+
}
|
122 |
+
},
|
123 |
+
"download_size": 329046563,
|
124 |
+
"post_processing_size": null,
|
125 |
+
"dataset_size": 335725463,
|
126 |
+
"size_in_bytes": 335725463
|
127 |
+
},
|
128 |
+
"160px": {
|
129 |
+
"description": "Imagewoof is a subset of 10 classes from Imagenet that aren't so \neasy to classify, since they're all dog breeds. The breeds are: \nAustralian terrier, Border terrier, Samoyed, Beagle, Shih-Tzu, \nEnglish foxhound, Rhodesian ridgeback, Dingo, Golden retriever, \nOld English sheepdog.",
|
130 |
+
"citation": "@software{Howard_Imagewoof_2019,\ntitle={Imagewoof: a subset of 10 classes from Imagenet that aren't so easy to classify},\nauthor={Jeremy Howard},\nyear={2019},\nmonth={March},\npublisher = {GitHub},\nurl = {https://github.com/fastai/imagenette#imagewoof}\n}\n",
|
131 |
+
"homepage": "https://github.com/fastai/imagenette#imagewoof",
|
132 |
+
"license": "Apache License 2.0",
|
133 |
+
"features": {
|
134 |
+
"image": {
|
135 |
+
"decode": true,
|
136 |
+
"id": null,
|
137 |
+
"_type": "Image"
|
138 |
+
},
|
139 |
+
"label": {
|
140 |
+
"num_classes": 10,
|
141 |
+
"names": ["Australian terrier", "Border terrier", "Samoyed", "Beagle", "Shih-Tzu", "English foxhound", "Rhodesian ridgeback", "Dingo", "Golden retriever", "Old English sheepdog"],
|
142 |
+
"id": null,
|
143 |
+
"_type": "ClassLabel"
|
144 |
+
}
|
145 |
+
},
|
146 |
+
"post_processed": null,
|
147 |
+
"supervised_keys": null,
|
148 |
+
"task_templates": null,
|
149 |
+
"builder_name": "imagewoof",
|
150 |
+
"config_name": "160px",
|
151 |
+
"version": {
|
152 |
+
"version_str": "1.0.0",
|
153 |
+
"description": null,
|
154 |
+
"major": 1,
|
155 |
+
"minor": 0,
|
156 |
+
"patch": 0
|
157 |
+
},
|
158 |
+
"splits": {
|
159 |
+
"train": {
|
160 |
+
"name": "train",
|
161 |
+
"num_bytes": 69910461,
|
162 |
+
"num_examples": 9025,
|
163 |
+
"dataset_name": "imagewoof"
|
164 |
+
},
|
165 |
+
"validation": {
|
166 |
+
"name": "validation",
|
167 |
+
"num_bytes": 30397020,
|
168 |
+
"num_examples": 3929,
|
169 |
+
"dataset_name": "imagewoof"
|
170 |
+
}
|
171 |
+
},
|
172 |
+
"download_checksums": {
|
173 |
+
"https://s3.amazonaws.com/fast-ai-imageclas/imagewoof2-160.tgz": {
|
174 |
+
"num_bytes": 92612825,
|
175 |
+
"checksum": "b5ffa16037e07f60882434f55b7814a3d44483f2a484129f251604bc0d0f8172"
|
176 |
+
},
|
177 |
+
"https://huggingface.co/datasets/frgfm/imagewoof/resolve/main/metadata/imagewoof2-160/train.txt": {
|
178 |
+
"num_bytes": 464349,
|
179 |
+
"checksum": "a9a1aabefeef279410ee19c169c2e5acb10a72e747d68812fce907dd5096729b"
|
180 |
+
},
|
181 |
+
"https://huggingface.co/datasets/frgfm/imagewoof/resolve/main/metadata/imagewoof2-160/val.txt": {
|
182 |
+
"num_bytes": 194474,
|
183 |
+
"checksum": "f97370d03e7338c22f994342e814424704d49340efb0801c9d5d5ccb37084f50"
|
184 |
+
}
|
185 |
+
},
|
186 |
+
"download_size": 93271648,
|
187 |
+
"post_processing_size": null,
|
188 |
+
"dataset_size": 101497676,
|
189 |
+
"size_in_bytes": 101497676
|
190 |
+
}
|
191 |
+
}
|