Liana commited on
Commit
96306f8
·
verified ·
1 Parent(s): 1ab1427

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md CHANGED
@@ -33,3 +33,42 @@ configs:
33
  - split: train
34
  path: data/train-*
35
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  - split: train
34
  path: data/train-*
35
  ---
36
+
37
+ # Orcasound Humpback Whale Dataset
38
+ ## Overview
39
+ This dataset is built on top of the **Orcasound project** (https://www.orcasound.net/) and specifically utilizes the "Haro Humpback" catalog curated by Emily Vierling and Scott Veirs. The catalog contains audio recordings of humpback whale vocalizations, along with associated annotations. These recordings were collected as part of Orcasound's efforts to monitor and protect marine life through acoustic observation.
40
+
41
+ The dataset available here has been preprocessed and uploaded to HuggingFace by Liana Napalkova, based on the original catalog from Orcasound.
42
+
43
+ ## Dataset Contents
44
+ - Audio Files: This dataset includes recordings of humpback whale vocalizations in WAV format. Each recording has a fixed duration of 5 seconds.
45
+ - Annotations: The dataset also includes annotations that provide detailed information about the recorded whale sounds.
46
+
47
+ ## Data Source
48
+ The original data was retrieved from the public sources provided by Orcasound. The data retrieval process involved using the quilt3 library to download the necessary files from the "acoustic-sandbox" Amazon S3 bucket.
49
+
50
+ ## Code to Retrieve Original Data
51
+ If you wish to retrieve the original data directly from Orcasound, you can use the following Python code:
52
+
53
+ ```
54
+ import quilt3
55
+
56
+ # Create a connection to the S3 bucket
57
+ b = quilt3.Bucket("s3://acoustic-sandbox")
58
+
59
+ # Download the annotation files
60
+ b.fetch("humpbacks/Emily-Vierling-Orcasound-data/Em_HW_data/Annotations/", f"./raw/annotations/")
61
+
62
+ # Download the audio data
63
+ b.fetch("humpbacks/Emily-Vierling-Orcasound-data/Em_HW_data/flac_files/", f"./raw/audio/")
64
+ ```
65
+
66
+ ## Acknowledgments
67
+ Special thanks to Emily Vierling and Scott Veirs for curating the "Haro Humpback" catalog and to Orcasound for making this data publicly available.
68
+
69
+ ## Usage
70
+ This dataset can be used for research purposes, particularly in the fields of marine biology, bioacoustics, and machine learning.
71
+ Please cite the original sources and the creators if you use this dataset in your research or projects.
72
+
73
+ ## License
74
+ Please refer to the Orcasound project and the HuggingFace dataset page for licensing information related to the use of this dataset.