Datasets:
added extra info
Browse files- bn_emotion_speech_corpus.py +23 -4
bn_emotion_speech_corpus.py
CHANGED
@@ -1,19 +1,38 @@
|
|
1 |
import datasets
|
2 |
|
3 |
_CITATION = """\
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
"""
|
6 |
|
7 |
_DESCRIPTION = """\
|
|
|
|
|
8 |
|
9 |
"""
|
10 |
-
_HOMEPAGE = ""
|
11 |
|
12 |
_LICENSE = ""
|
13 |
|
14 |
-
#_REPO = "https://huggingface.co/datasets/sustcsenlp/SUBESCO/resolve/main/corpus/speech/subesco.tar.gz"
|
15 |
|
16 |
-
class
|
17 |
""""""
|
18 |
|
19 |
def _info(self):
|
|
|
1 |
import datasets
|
2 |
|
3 |
_CITATION = """\
|
4 |
+
@dataset{sadia_sultana_2021_4526477,
|
5 |
+
author = {Sadia Sultana},
|
6 |
+
title = {SUST Bangla Emotional Speech Corpus (SUBESCO)},
|
7 |
+
month = feb,
|
8 |
+
year = 2021,
|
9 |
+
note = {{This database was created as a part of PhD thesis
|
10 |
+
project of the author Sadia Sultana. It was
|
11 |
+
designed and developed by the author in the
|
12 |
+
Department of Computer Science and Engineering of
|
13 |
+
Shahjalal University of Science and Technology.
|
14 |
+
Financial grant was supported by the university.
|
15 |
+
If you use the dataset please cite SUBESCO and the
|
16 |
+
corresponding academic journal publication in Plos
|
17 |
+
One.}},
|
18 |
+
publisher = {Zenodo},
|
19 |
+
version = {version - 1.1},
|
20 |
+
doi = {10.5281/zenodo.4526477},
|
21 |
+
url = {https://doi.org/10.5281/zenodo.4526477}
|
22 |
+
}
|
23 |
"""
|
24 |
|
25 |
_DESCRIPTION = """\
|
26 |
+
SUST Bangla Emotional Speech Coropus Dataset
|
27 |
+
"""
|
28 |
|
29 |
"""
|
30 |
+
_HOMEPAGE = "https://huggingface.co/datasets/sustcsenlp/bn_emotion_speech_corpus"
|
31 |
|
32 |
_LICENSE = ""
|
33 |
|
|
|
34 |
|
35 |
+
class AudioSet(datasets.GeneratorBasedBuilder):
|
36 |
""""""
|
37 |
|
38 |
def _info(self):
|