adrmrt commited on
Commit
4ef1dd1
·
1 Parent(s): 77390e8

docs: added README documentation

Browse files
Files changed (1) hide show
  1. README.md +87 -1
README.md CHANGED
@@ -34,4 +34,90 @@ dataset_info:
34
  - pterois_volitans
35
  - arothron_meleagris
36
  - carcharhinus_melanopterus
37
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  - pterois_volitans
35
  - arothron_meleagris
36
  - carcharhinus_melanopterus
37
+ ---
38
+
39
+ # Tropical Reef Fish Dataset
40
+
41
+ A dataset of tropical reef fish images for species-level image classification, collected from iNaturalist.
42
+
43
+ ## Dataset Description
44
+
45
+ Images were scraped from iNaturalist using research-grade observations with CC0 or CC-BY licenses. The dataset covers 12 species across 9 families, targeting fish commonly encountered by snorkelers at depths of 0-10 meters in tropical reef environments.
46
+
47
+ This dataset was created as part of a bachelor thesis at ZHAW School of Engineering (Institute of Embedded Systems, InES) with the goal of training a lightweight image classifier for fully offline deployment on mobile devices.
48
+
49
+ ## Species
50
+
51
+ | Scientific Name | Common Name | Family | Images |
52
+ | --------------------------- | ---------------------- | -------------- | ------ |
53
+ | _Acanthurus coeruleus_ | Atlantic Blue Tang | Acanthuridae | 500 |
54
+ | _Naso unicornis_ | Bluespine Unicornfish | Acanthuridae | 500 |
55
+ | _Scarus ghobban_ | Blue-barred Parrotfish | Labridae | 500 |
56
+ | _Thalassoma lunare_ | Moon Wrasse | Labridae | 500 |
57
+ | _Amphiprion ocellaris_ | Ocellaris Anemonefish | Pomacentridae | 356 |
58
+ | _Chromis viridis_ | Blue-green Chromis | Pomacentridae | 413 |
59
+ | _Chaetodon lunula_ | Raccoon Butterflyfish | Chaetodontidae | 500 |
60
+ | _Pomacanthus imperator_ | Emperor Angelfish | Pomacanthidae | 291 |
61
+ | _Rhinecanthus aculeatus_ | Lagoon Triggerfish | Balistidae | 500 |
62
+ | _Pterois volitans_ | Red Lionfish | Scorpaenidae | 500 |
63
+ | _Arothron meleagris_ | Guineafowl Puffer | Tetraodontidae | 499 |
64
+ | _Carcharhinus melanopterus_ | Blacktip Reef Shark | Carcharhinidae | 468 |
65
+
66
+ **Total: 5,527 images across 12 species**
67
+
68
+ ## Data Collection
69
+
70
+ - **Source**: [iNaturalist](https://www.inaturalist.org) API (research-grade observations only)
71
+ - **Licenses**: CC0 and CC-BY only, validated at the individual photo level
72
+ - **Image resolution**: Original resolution as provided by iNaturalist
73
+ - **Target depth range**: 0–10m (snorkeling depth)
74
+ - **Contributors**: Leisure snorkelers and underwater photographers worldwide
75
+
76
+ ## Structure
77
+
78
+ ```
79
+ data/
80
+ <family_scientific_name>/
81
+ <species_scientific_name>/
82
+ <species_scientific_name>_0000.jpg
83
+ ...
84
+ dataset.json
85
+ ```
86
+
87
+ ## Metadata
88
+
89
+ Each image entry in the `data` array of `dataset.json` contains:
90
+
91
+ - `species_taxon_id` — iNaturalist taxon ID for the species (links to `labels` array)
92
+ - `file` — relative path to the image file
93
+ - `observation_id` / `observation_uri` — link back to the original iNaturalist observation
94
+ - `photo_id` / `photo_url_original` — original photo reference on iNaturalist
95
+ - `photo_license` — per-photo license (`cc0` or `cc-by`)
96
+ - `photo_attribution` — attribution string as required by the license
97
+
98
+ Species and family metadata is stored separately in the `labels` array, accessed via `species_taxon_id` keys:
99
+
100
+ - `species_taxon_id` / `family_taxon_id` — iNaturalist taxon IDs
101
+ - `family_common_name` / `family_scientific_name` — family-level classification
102
+ - `species_common_name` / `species_scientific_name` — species-level classification
103
+ - `image_count` — number of images for this species in the dataset
104
+
105
+ ## Intended Use
106
+
107
+ This dataset is intended for training lightweight convolutional neural networks for species-level fish classification on mobile devices. It is not exhaustive of all tropical reef fish species and is not intended for scientific surveys or biodiversity assessments.
108
+
109
+ ## Limitations
110
+
111
+ - Moderate class imbalance (291–500 images per species)
112
+ - No bounding box annotations — classification labels only
113
+ - Image quality varies (motion blur, partial occlusion, waterproof housing distortion)
114
+
115
+ ## Attribution
116
+
117
+ This dataset contains images contributed by iNaturalist observers under CC0 and CC-BY licenses. Full per-image attribution is available in `dataset.json` under the `photo_attribution` field. Please credit original observers when redistributing or publishing work derived from this dataset.
118
+
119
+ ## License
120
+
121
+ Dataset metadata and structure: [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/)
122
+
123
+ Individual images: see `photo_license` field in `dataset.json` (CC0 or CC-BY)