Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,22 +1,34 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
task_categories:
|
4 |
-
- text-classification
|
5 |
tags:
|
6 |
-
- biology
|
7 |
-
|
|
|
8 |
size_categories:
|
9 |
-
- 1K<n<10K
|
10 |
---
|
11 |
|
|
|
12 |
🐚# De_vuelta_a_casa: Dataset of Sea Shell Images
|
13 |
🌊## Dataset Description
|
14 |
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:
|
15 |
|
16 |
Bivalves: Mollusks with two shells (e.g., clams, oysters).
|
17 |
Gastropoda: Mollusks with a single shell (e.g., snails).
|
18 |
-
The images were collected from various online sources and carefully classified by species within each geographic region. This dataset is designed for use in image classification projects, marine biodiversity studies, and marine biology research.
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
📂@ Dataset Structure
|
21 |
The dataset is organized into the following folder structure:
|
22 |
|
@@ -64,18 +76,20 @@ You can load the dataset directly from Hugging Face using the datasets library i
|
|
64 |
|
65 |
|
66 |
from datasets import load_dataset
|
67 |
-
|
68 |
dataset = load_dataset("De_vuelta_a_casa", split="train")
|
|
|
|
|
69 |
To access specific images:
|
70 |
|
71 |
Bivalves from the Caribbean:
|
72 |
-
|
73 |
-
|
74 |
dataset["Dataset/Bivalves/Caribbean/"]
|
|
|
75 |
Gastropoda from the Pacific:
|
76 |
-
|
77 |
-
|
78 |
dataset["Dataset/Gastropoda/Pacific/"]
|
|
|
79 |
|
80 |
⚠️# Considerations and License
|
81 |
This dataset contains images collected from the internet and is intended for educational and research purposes only.
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
task_categories:
|
4 |
+
- text-classification
|
5 |
tags:
|
6 |
+
- biology
|
7 |
+
- marine-life
|
8 |
+
pretty_name: 'Clasificación de conchas de mar'
|
9 |
size_categories:
|
10 |
+
- 1K<n<10K
|
11 |
---
|
12 |
|
13 |
+
|
14 |
🐚# De_vuelta_a_casa: Dataset of Sea Shell Images
|
15 |
🌊## Dataset Description
|
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: Mollusks with two shells (e.g., clams, oysters).
|
19 |
Gastropoda: Mollusks with a single shell (e.g., snails).
|
|
|
20 |
|
21 |
+
The images were collected from various online sources and carefully classified by species within each geographic region. This dataset is designed for use in image classification projects, marine biodiversity studies, and marine biology research.
|
22 |
+
This dataset contains images of sea shells, divided into two main categories:
|
23 |
+
|
24 |
+
Bivalves
|
25 |
+
Caribbean
|
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 |
|
|
|
76 |
|
77 |
|
78 |
from datasets import load_dataset
|
79 |
+
```python
|
80 |
dataset = load_dataset("De_vuelta_a_casa", split="train")
|
81 |
+
```
|
82 |
+
|
83 |
To access specific images:
|
84 |
|
85 |
Bivalves from the Caribbean:
|
86 |
+
```python
|
|
|
87 |
dataset["Dataset/Bivalves/Caribbean/"]
|
88 |
+
```
|
89 |
Gastropoda from the Pacific:
|
90 |
+
```python
|
|
|
91 |
dataset["Dataset/Gastropoda/Pacific/"]
|
92 |
+
```
|
93 |
|
94 |
⚠️# Considerations and License
|
95 |
This dataset contains images collected from the internet and is intended for educational and research purposes only.
|