Update README.md
Browse files
README.md
CHANGED
|
@@ -28,4 +28,74 @@ configs:
|
|
| 28 |
path: data/train-*
|
| 29 |
- split: test
|
| 30 |
path: data/test-*
|
|
|
|
| 31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
path: data/train-*
|
| 29 |
- split: test
|
| 30 |
path: data/test-*
|
| 31 |
+
license: cc-by-nc-4.0
|
| 32 |
---
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
# π Cyprus Fish Dataset
|
| 36 |
+
|
| 37 |
+
## Dataset Summary
|
| 38 |
+
|
| 39 |
+
This dataset consists of images of various fish species that live around **Cyprus island**. Images have been sourced from Google Images to build a classification model.
|
| 40 |
+
|
| 41 |
+
Due to the limited amount of samples per class, the data has been split into training and testing sets to facilitate reproducible research.
|
| 42 |
+
|
| 43 |
+
This dataset covers 5 species:
|
| 44 |
+
<div align="center">
|
| 45 |
+
<h3>π AperΓ§u du Dataset / Dataset Preview</h3>
|
| 46 |
+
<table>
|
| 47 |
+
<tr>
|
| 48 |
+
<td align="center">
|
| 49 |
+
<img src="https://huggingface.co/datasets/JayRay5/cyprus-fish-dataset/resolve/main/preview_apognon.jpg" width="150" height="150" style="object-fit: cover;"/>
|
| 50 |
+
<br>
|
| 51 |
+
<b>Apognon</b>
|
| 52 |
+
</td>
|
| 53 |
+
<td align="center">
|
| 54 |
+
<img src="https://huggingface.co/datasets/JayRay5/cyprus-fish-dataset/resolve/main/preview_epinephelus_marginatus.jpg" width="150" height="150" style="object-fit: cover;"/>
|
| 55 |
+
<br>
|
| 56 |
+
<b>Epinephelus Marginatus</b>
|
| 57 |
+
</td>
|
| 58 |
+
<td align="center">
|
| 59 |
+
<img src="https://huggingface.co/datasets/JayRay5/cyprus-fish-dataset/resolve/main/preview_girelle_paon.jpg" width="150" height="150" style="object-fit: cover;"/>
|
| 60 |
+
<br>
|
| 61 |
+
<b>Girelle Paon</b>
|
| 62 |
+
</td>
|
| 63 |
+
<td align="center">
|
| 64 |
+
<img src="https://huggingface.co/datasets/JayRay5/cyprus-fish-dataset/resolve/main/preview_pempheris_vanicolensis.jpg" width="150" height="150" style="object-fit: cover;"/>
|
| 65 |
+
<br>
|
| 66 |
+
<b>Pempheris Vanicolensis</b>
|
| 67 |
+
</td>
|
| 68 |
+
<td align="center">
|
| 69 |
+
<img src="https://huggingface.co/datasets/JayRay5/cyprus-fish-dataset/resolve/main/preview_sparisoma_cretense.jpg" width="150" height="150" style="object-fit: cover;"/>
|
| 70 |
+
<br>
|
| 71 |
+
<b>Sparisoma Cretense</b>
|
| 72 |
+
</td>
|
| 73 |
+
</tr>
|
| 74 |
+
</table>
|
| 75 |
+
</div>
|
| 76 |
+
|
| 77 |
+
## Supported Tasks
|
| 78 |
+
- **Image Classification:** The dataset is structured in folders (ImageFolder format), making it compatible with `torchvision.datasets.ImageFolder` and Hugging Face `datasets`.
|
| 79 |
+
|
| 80 |
+
## Dataset Structure
|
| 81 |
+
|
| 82 |
+
The dataset follows the standard `ImageFolder` structure:
|
| 83 |
+
|
| 84 |
+
```bash
|
| 85 |
+
data/
|
| 86 |
+
βββ train/
|
| 87 |
+
β βββ apognon/
|
| 88 |
+
β βββ epinephelus_marginatus/
|
| 89 |
+
β βββ girelle_paon/
|
| 90 |
+
β βββ pempheris_vanicolensis/
|
| 91 |
+
β βββ sparisoma_cretense/
|
| 92 |
+
βββ test/
|
| 93 |
+
βββ apognon/
|
| 94 |
+
βββ epinephelus_marginatus/
|
| 95 |
+
βββ girelle_paon/
|
| 96 |
+
βββ pempheris_vanicolensis/
|
| 97 |
+
βββ sparisoma_cretense/
|
| 98 |
+
```
|
| 99 |
+
**Disclaimer:** The copyright of the images belongs to their respective owners. I do not own the rights to these images.
|
| 100 |
+
- If you are a copyright holder and wish for your image to be removed, please open a Discussion or PR, and I will remove it immediately.
|
| 101 |
+
- This dataset is released under the **Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)** license. Users should not use this dataset for commercial products.
|