Datasets:
Languages:
Javanese
Tags:
speech-recognition
Upload README.md
Browse files
README.md
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
language:
|
4 |
+
- jav
|
5 |
+
pretty_name: Jv Id Asr
|
6 |
+
task_categories:
|
7 |
+
- speech-recognition
|
8 |
+
tags:
|
9 |
+
- speech-recognition
|
10 |
+
---
|
11 |
+
This data set contains transcribed audio data for Javanese. The data set consists of wave files, and a TSV file.
|
12 |
+
The file utt_spk_text.tsv contains a FileID, UserID and the transcription of audio in the file.
|
13 |
+
The data set has been manually quality checked, but there might still be errors.
|
14 |
+
This dataset was collected by Google in collaboration with Reykjavik University and Universitas Gadjah Mada in Indonesia.
|
15 |
+
|
16 |
+
|
17 |
+
## Languages
|
18 |
+
|
19 |
+
jav
|
20 |
+
|
21 |
+
## Supported Tasks
|
22 |
+
|
23 |
+
Speech Recognition
|
24 |
+
|
25 |
+
## Dataset Usage
|
26 |
+
### Using `datasets` library
|
27 |
+
```
|
28 |
+
from datasets import load_dataset
|
29 |
+
dset = datasets.load_dataset("Winoto/jv_id_asr", trust_remote_code=True)
|
30 |
+
```
|
31 |
+
### Using `seacrowd` library
|
32 |
+
```import seacrowd as sc
|
33 |
+
# Load the dataset using the default config
|
34 |
+
dset = sc.load_dataset("jv_id_asr", schema="Winoto")
|
35 |
+
# Check all available subsets (config names) of the dataset
|
36 |
+
print(sc.available_config_names("jv_id_asr"))
|
37 |
+
# Load the dataset using a specific config
|
38 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
39 |
+
```
|
40 |
+
|
41 |
+
More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
|
42 |
+
|
43 |
+
|
44 |
+
## Dataset Homepage
|
45 |
+
|
46 |
+
[http://openslr.org/35/](http://openslr.org/35/)
|
47 |
+
|
48 |
+
## Dataset Version
|
49 |
+
|
50 |
+
Source: 1.0.0. SEACrowd: 2024.06.20.
|