Datasets:
Tasks:
Image Classification
Modalities:
Image
Formats:
imagefolder
Languages:
English
Size:
< 1K
DOI:
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,48 +1,55 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc0-1.0
|
| 3 |
-
task_categories:
|
| 4 |
-
- image-classification
|
| 5 |
-
language:
|
| 6 |
-
- en
|
| 7 |
-
tags:
|
| 8 |
-
- flags
|
| 9 |
-
- countries
|
| 10 |
-
- geography
|
| 11 |
-
- image
|
| 12 |
-
pretty_name: World Nation Flags
|
| 13 |
-
size_categories:
|
| 14 |
-
- n<1K
|
| 15 |
-
---
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
# World Nation Flags Dataset
|
| 19 |
-
|
| 20 |
-
## Dataset Description
|
| 21 |
-
This dataset contains images of flags for every sovereign nation in the world. It is designed for tasks such as image classification, flag recognition, and geographic education.
|
| 22 |
-
It also include some less recognized Sovereign state, such as: Abkhazia, Cook_islands, Niue, Northern_Cyprus, Sahrawi_Arab_Democratic_Republic, Somaliland, Taiwan, Transnistria.
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
## Dataset Structure
|
| 26 |
-
|
| 27 |
-
The dataset is organized as follows:
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
├──
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
`
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc0-1.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-classification
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- flags
|
| 9 |
+
- countries
|
| 10 |
+
- geography
|
| 11 |
+
- image
|
| 12 |
+
pretty_name: World Nation Flags
|
| 13 |
+
size_categories:
|
| 14 |
+
- n<1K
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
# World Nation Flags Dataset
|
| 19 |
+
|
| 20 |
+
## Dataset Description
|
| 21 |
+
This dataset contains images of flags (Feb 2025) for every sovereign nation in the world. It is designed for tasks such as image classification, flag recognition, and geographic education.
|
| 22 |
+
It also include some less recognized Sovereign state, such as: Abkhazia, Cook_islands, Niue, Northern_Cyprus, Sahrawi_Arab_Democratic_Republic, Somaliland, Taiwan, Transnistria.
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
## Dataset Structure
|
| 26 |
+
|
| 27 |
+
The dataset is organized as follows:
|
| 28 |
+
`
|
| 29 |
+
dataset/
|
| 30 |
+
|
| 31 |
+
├── country/
|
| 32 |
+
|
| 33 |
+
│ ├── france.png
|
| 34 |
+
|
| 35 |
+
│ ├── germany.png
|
| 36 |
+
|
| 37 |
+
├── metadata.json
|
| 38 |
+
|
| 39 |
+
├── README.md
|
| 40 |
+
`
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
### **Example `metadata.json`**
|
| 44 |
+
|
| 45 |
+
Here’s an example of what the `metadata.json` file structure looks like for the dataset:
|
| 46 |
+
`
|
| 47 |
+
{
|
| 48 |
+
"name": "Denmark",
|
| 49 |
+
"flag_image": "country/denmark.png"
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"name": "Djibouti",
|
| 53 |
+
"flag_image": "country/djibouti.png"
|
| 54 |
+
},
|
| 55 |
`
|