Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,38 +1,33 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
task_categories:
|
4 |
-
-
|
5 |
tags:
|
6 |
- biology
|
7 |
- marine-life
|
8 |
-
|
|
|
9 |
size_categories:
|
10 |
- 1K<n<10K
|
11 |
---
|
12 |
|
|
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
The "De_vuelta_a_casa" dataset contains images of sea shells classified by species from two geographic regions: Caribbean and Pacific. The dataset is organized into two main categories of mollusks:
|
17 |
|
18 |
-
Bivalves
|
19 |
-
Gastropoda
|
20 |
|
21 |
-
|
22 |
-
|
|
|
|
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
Pacific
|
27 |
-
Gastropoda
|
28 |
-
Caribbean
|
29 |
-
Pacific
|
30 |
-
|
31 |
-
The images were sourced from publicly available internet data, and species are classified according to their region.
|
32 |
-
π@ Dataset Structure
|
33 |
-
The dataset is organized into the following folder structure:
|
34 |
|
35 |
-
```
|
36 |
De_vuelta_a_casa/
|
37 |
βββ Dataset/
|
38 |
βββ Bivalves/
|
@@ -54,6 +49,7 @@ De_vuelta_a_casa/
|
|
54 |
βββ species_2.jpg
|
55 |
βββ ...
|
56 |
```
|
|
|
57 |
Each folder contains images organized by region and species.
|
58 |
|
59 |
π·οΈ# Dataset Details
|
@@ -63,32 +59,18 @@ Image sources: Images collected from various public online sources.
|
|
63 |
Average resolution: [Add the average image resolution here, if relevant].
|
64 |
Labels: Each image is labeled with the species name it belongs to.
|
65 |
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
Classification of mollusk images.
|
70 |
-
Marine biodiversity studies.
|
71 |
-
Analysis of patterns and features among species from different regions.
|
72 |
-
Training deep learning models for automatic species identification.
|
73 |
-
π# How to Use the Dataset
|
74 |
-
You can load the dataset directly from Hugging Face using the datasets library in Python:
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
from datasets import load_dataset
|
79 |
```python
|
|
|
80 |
dataset = load_dataset("De_vuelta_a_casa", split="train")
|
81 |
-
```
|
82 |
|
83 |
-
|
|
|
84 |
|
85 |
-
|
86 |
-
|
87 |
-
dataset["Dataset/Bivalves/Caribbean/"]
|
88 |
-
```
|
89 |
-
Gastropoda from the Pacific:
|
90 |
-
```python
|
91 |
-
dataset["Dataset/Gastropoda/Pacific/"]
|
92 |
```
|
93 |
|
94 |
β οΈ# Considerations and License
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
task_categories:
|
4 |
+
- image-classification
|
5 |
tags:
|
6 |
- biology
|
7 |
- marine-life
|
8 |
+
- biodiversity
|
9 |
+
pretty_name: 'Sea Shell Classification Dataset'
|
10 |
size_categories:
|
11 |
- 1K<n<10K
|
12 |
---
|
13 |
|
14 |
+
# π De_vuelta_a_casa: Sea Shell Image Dataset
|
15 |
|
16 |
+
## π Dataset Description
|
17 |
+
The **De_vuelta_a_casa** dataset contains images of sea shells classified by species and divided into two geographic regions: **Caribbean** and **Pacific**. The dataset is organized into two main categories of mollusks:
|
|
|
18 |
|
19 |
+
- **Bivalves**: Mollusks with two shells (e.g., clams, oysters).
|
20 |
+
- **Gastropoda**: Mollusks with a single shell (e.g., snails).
|
21 |
|
22 |
+
Images were sourced from publicly available online resources and meticulously categorized by species within each geographic region. This dataset is ideal for:
|
23 |
+
- Image classification projects.
|
24 |
+
- Marine biodiversity research.
|
25 |
+
- Studies in marine biology.
|
26 |
|
27 |
+
## π Dataset Structure
|
28 |
+
The dataset follows the folder structure below:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
+
```plaintext
|
31 |
De_vuelta_a_casa/
|
32 |
βββ Dataset/
|
33 |
βββ Bivalves/
|
|
|
49 |
βββ species_2.jpg
|
50 |
βββ ...
|
51 |
```
|
52 |
+
|
53 |
Each folder contains images organized by region and species.
|
54 |
|
55 |
π·οΈ# Dataset Details
|
|
|
59 |
Average resolution: [Add the average image resolution here, if relevant].
|
60 |
Labels: Each image is labeled with the species name it belongs to.
|
61 |
|
62 |
+
π How to Use the Dataset
|
63 |
+
You can load the dataset directly from Hugging Face with the following code:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
from datasets import load_dataset
|
65 |
```python
|
66 |
+
# Load the dataset
|
67 |
dataset = load_dataset("De_vuelta_a_casa", split="train")
|
|
|
68 |
|
69 |
+
# Example: Access Bivalves from the Caribbean
|
70 |
+
caribbean_bivalves = dataset["Dataset/Bivalves/Caribbean/"]
|
71 |
|
72 |
+
# Example: Access Gastropoda from the Pacific
|
73 |
+
pacific_gastropoda = dataset["Dataset/Gastropoda/Pacific/"]
|
|
|
|
|
|
|
|
|
|
|
74 |
```
|
75 |
|
76 |
β οΈ# Considerations and License
|