Nancyrr25 commited on
Commit
ef5126d
Β·
verified Β·
1 Parent(s): 3a9c65e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -41
README.md CHANGED
@@ -1,38 +1,33 @@
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
 
35
- ```python
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
- πŸ”# Potential Applications
67
- This dataset can be useful for:
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
- 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
 
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