chriamue commited on
Commit
95ca7b9
1 Parent(s): a6bf8a8

adds dataset infos

Browse files
Files changed (2) hide show
  1. README.md +11 -1
  2. dataset_infos.json +66 -0
README.md CHANGED
@@ -8,4 +8,14 @@ tags:
8
  - biology
9
  size_categories:
10
  - 1K<n<10K
11
- ---
 
 
 
 
 
 
 
 
 
 
 
8
  - biology
9
  size_categories:
10
  - 1K<n<10K
11
+ dataset_info:
12
+ dataset_size: 2378872
13
+ ---
14
+
15
+ # Dataset Card for "Bird Species"
16
+
17
+ ## Dataset Summary
18
+
19
+ The dataset encompasses 525 bird species with a total of 84,635 training images, 2,625 test images, and 2,625 validation images, all formatted as 224x224x3 color images in jpg.
20
+ The dataset is sourced from Kaggle and can be found [here](https://www.kaggle.com/datasets/gpiosenka/100-bird-species).
21
+
dataset_infos.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bird-species-dataset": {
3
+ "description": "A dataset of bird species downloaded from kaggle.",
4
+ "citation": "",
5
+ "homepage": "https://www.kaggle.com/datasets/gpiosenka/100-bird-species",
6
+ "license": "",
7
+ "features": {
8
+ "image": {
9
+ "id": null,
10
+ "_type": "Image"
11
+ },
12
+ "label": {
13
+ "num_classes": 525,
14
+ "names": [],
15
+ "names_file": "birds_labels.txt",
16
+ "id": null,
17
+ "_type": "ClassLabel"
18
+ }
19
+ },
20
+ "post_processed": null,
21
+ "supervised_keys": {
22
+ "input": "image",
23
+ "output": "label"
24
+ },
25
+ "task_templates": [
26
+ {
27
+ "task": "image-classification",
28
+ "image_column": "image",
29
+ "label_column": "label",
30
+ "num_classes": 525
31
+ }
32
+ ],
33
+ "builder_name": "bird-species-dataset",
34
+ "config_name": "bird-species-dataset",
35
+ "version": {
36
+ "version_str": "0.1.0",
37
+ "description": null,
38
+ "major": 0,
39
+ "minor": 1,
40
+ "patch": 0
41
+ },
42
+ "splits": {
43
+ "train": {
44
+ "name": "train",
45
+ "num_bytes": 2033244,
46
+ "num_examples": 84635,
47
+ "dataset_name": "bird-species-dataset"
48
+ },
49
+ "test": {
50
+ "name": "test",
51
+ "num_bytes": 64708,
52
+ "num_examples": 2625,
53
+ "dataset_name": "bird-species-dataset"
54
+ },
55
+ "validation": {
56
+ "name": "validation",
57
+ "num_bytes": 64324,
58
+ "num_examples": 2625,
59
+ "dataset_name": "bird-species-dataset"
60
+ }
61
+ },
62
+ "post_processing_size": null,
63
+ "dataset_size": 2378872,
64
+ "size_in_bytes": 2378872
65
+ }
66
+ }