jpdiazpardo
commited on
Commit
•
a84bc4a
1
Parent(s):
ea201b5
Update README.md
Browse files
README.md
CHANGED
@@ -21,6 +21,56 @@ tags:
|
|
21 |
size_categories:
|
22 |
- 1K<n<10K
|
23 |
---
|
24 |
-
# Dataset Card for "
|
|
|
25 |
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
size_categories:
|
22 |
- 1K<n<10K
|
23 |
---
|
24 |
+
# Dataset Card for "Gutural Speech Recognition"
|
25 |
+
This dataset contains annotations of 57 songs.
|
26 |
|
27 |
+
### How to use
|
28 |
+
Load the dataset from huggingface in your notebook:
|
29 |
+
```python
|
30 |
+
!pip install datasets[audio]
|
31 |
+
|
32 |
+
import datasets
|
33 |
+
|
34 |
+
dataset = datasets.load_dataset("jpdiazpardo/guturalScream_metalVocals")
|
35 |
+
```
|
36 |
+
|
37 |
+
### Data Fields
|
38 |
+
|
39 |
+
* `audio`: the trimmed audio file from the song.
|
40 |
+
* `text`: the transcribed vocals.
|
41 |
+
|
42 |
+
### Youtube playlist: [Gutural Speech Recognition](https://www.youtube.com/playlist?list=PLkCTyMdVt0AHgp-80jqskjUtfHo-Ht4xy)
|
43 |
+
|
44 |
+
### Source Data
|
45 |
+
|
46 |
+
#### Initial Data Collection and Normalization
|
47 |
+
The data was collected from the YouTube playlist above and trimmed using the timestamps provided in the dataset.
|
48 |
+
|
49 |
+
The audio files were passed through the [Spleeter](https://joss.theoj.org/papers/10.21105/joss.02154) (Hennequin et al., 2020) source separation algorithm to separate the vocals from the other components.
|
50 |
+
|
51 |
+
### Licensing Information
|
52 |
+
|
53 |
+
MIT License
|
54 |
+
|
55 |
+
Copyright (c) 2023 Juan Pablo Díaz
|
56 |
+
|
57 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
58 |
+
|
59 |
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
60 |
+
|
61 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
62 |
+
|
63 |
+
### Citation Information
|
64 |
+
|
65 |
+
```
|
66 |
+
@article{
|
67 |
+
Hennequin2020,
|
68 |
+
doi = {10.21105/joss.02154},
|
69 |
+
url = {https://doi.org/10.21105/joss.02154},
|
70 |
+
year = {2020}, publisher = {The Open Journal},
|
71 |
+
volume = {5}, number = {50}, pages = {2154},
|
72 |
+
author = {Romain Hennequin and Anis Khlif and Felix Voituret and Manuel Moussallam},
|
73 |
+
title = {Spleeter: a fast and efficient music source separation tool with pre-trained models},
|
74 |
+
journal = {Journal of Open Source Software}
|
75 |
+
}
|
76 |
+
```
|