Datasets:
ahnafsamin
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -78,7 +78,7 @@ tags:
|
|
78 |
|
79 |
- **Developed By** Dept. of CSE, SUST, Bangladesh
|
80 |
- **Paper:** [Bangladeshi Bangla speech corpus for automatic speech recognition research](https://www.sciencedirect.com/science/article/abs/pii/S0167639321001370)
|
81 |
-
- **Point of Contact:** [Prof. Dr. M. Shahidur Rahman](mailto:[email protected])
|
82 |
|
83 |
### Dataset Summary
|
84 |
|
@@ -87,8 +87,8 @@ This corpus contains 241 hours of high-quality speech data, including 229 hours
|
|
87 |
The read speech segment is recorded in a noise-proof studio environment from 33 male and 28 female native Bangladeshi Bangla speakers
|
88 |
representing 8 divisions/34 districts of Bangladesh. Furthermore, the read speech segment comprises a total of 1 hour and 30 minutes
|
89 |
of recorded speech provided by two second language (L2) speakers. The broadcast speech segment is collected from YouTube. SUBAK.KO has
|
90 |
-
been manually annotated under human supervision. The [corresponding paper](https://www.sciencedirect.com/science/article/abs/pii/S0167639321001370) reports detailed information about
|
91 |
-
the development and baseline performance of SUBAK.KO.
|
92 |
|
93 |
SUBAK.KO is developed by the researchers from the **Department of Computer Science and Engineering (CSE)** at **Shahjalal University of Science and Technology (SUST),
|
94 |
Bangladesh** with financial support from the Higher Education Quality Enhancement Project (AIF Window 4, CP 3888) for “The Development of
|
@@ -96,7 +96,7 @@ Multi-Platform Speech and Language Processing Software for Bangla” of the Univ
|
|
96 |
|
97 |
|
98 |
### Example Usage
|
99 |
-
To
|
100 |
|
101 |
```python
|
102 |
from datasets import load_dataset
|
@@ -104,6 +104,15 @@ from datasets import load_dataset
|
|
104 |
dataset = load_dataset("ahnafsamin/SUBAK.KO")
|
105 |
```
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
Alternatively, you can manually download the zipped SUBAK.KO folder from [this HuggingFace directory.](https://huggingface.co/datasets/ahnafsamin/SUBAK.KO/tree/main/Data)
|
108 |
The csv files corresponding to the train, validation and test splits can be found in the same directory.
|
109 |
|
|
|
78 |
|
79 |
- **Developed By** Dept. of CSE, SUST, Bangladesh
|
80 |
- **Paper:** [Bangladeshi Bangla speech corpus for automatic speech recognition research](https://www.sciencedirect.com/science/article/abs/pii/S0167639321001370)
|
81 |
+
- **Point of Contact:** [Prof. Dr. M. Shahidur Rahman, Dept. of CSE, SUST](mailto:[email protected])
|
82 |
|
83 |
### Dataset Summary
|
84 |
|
|
|
87 |
The read speech segment is recorded in a noise-proof studio environment from 33 male and 28 female native Bangladeshi Bangla speakers
|
88 |
representing 8 divisions/34 districts of Bangladesh. Furthermore, the read speech segment comprises a total of 1 hour and 30 minutes
|
89 |
of recorded speech provided by two second language (L2) speakers. The broadcast speech segment is collected from YouTube. SUBAK.KO has
|
90 |
+
been manually annotated under human supervision to ensure gold-standard labels. The [corresponding paper](https://www.sciencedirect.com/science/article/abs/pii/S0167639321001370) reports detailed information about
|
91 |
+
the development and baseline performance of SUBAK.KO and cross-dataset evaluation in comparison to [LB-ASRTD](https://openslr.org/53/) corpus.
|
92 |
|
93 |
SUBAK.KO is developed by the researchers from the **Department of Computer Science and Engineering (CSE)** at **Shahjalal University of Science and Technology (SUST),
|
94 |
Bangladesh** with financial support from the Higher Education Quality Enhancement Project (AIF Window 4, CP 3888) for “The Development of
|
|
|
96 |
|
97 |
|
98 |
### Example Usage
|
99 |
+
To load the full SUBAK.KO corpus, use the following code:
|
100 |
|
101 |
```python
|
102 |
from datasets import load_dataset
|
|
|
104 |
dataset = load_dataset("ahnafsamin/SUBAK.KO")
|
105 |
```
|
106 |
|
107 |
+
To load a specific split of the SUBAK.KO, define the split and set the streaming mode as True in the following way:
|
108 |
+
|
109 |
+
```python
|
110 |
+
from datasets import load_dataset
|
111 |
+
|
112 |
+
dataset = load_dataset("ahnafsamin/SUBAK.KO", split="test", streaming=True)
|
113 |
+
```
|
114 |
+
More documentation on streaming can be found [from this link.](https://huggingface.co/docs/datasets/stream#split-dataset)
|
115 |
+
|
116 |
Alternatively, you can manually download the zipped SUBAK.KO folder from [this HuggingFace directory.](https://huggingface.co/datasets/ahnafsamin/SUBAK.KO/tree/main/Data)
|
117 |
The csv files corresponding to the train, validation and test splits can be found in the same directory.
|
118 |
|