holylovenia
commited on
Commit
•
a93c35b
1
Parent(s):
d96a3ec
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
|
2 |
---
|
3 |
language:
|
4 |
-
-
|
5 |
- min
|
6 |
- ace
|
7 |
- ind
|
8 |
-
- ban
|
9 |
- sun
|
10 |
- jav
|
|
|
11 |
pretty_name: Librivox Indonesia
|
12 |
task_categories:
|
13 |
- speech-recognition
|
@@ -28,30 +28,30 @@ We will add more languages or audio files as we collect them.
|
|
28 |
|
29 |
## Languages
|
30 |
|
31 |
-
|
32 |
|
33 |
## Supported Tasks
|
34 |
|
35 |
Speech Recognition
|
36 |
-
|
37 |
## Dataset Usage
|
38 |
### Using `datasets` library
|
39 |
```
|
40 |
-
|
41 |
-
|
42 |
```
|
43 |
### Using `seacrowd` library
|
44 |
```import seacrowd as sc
|
45 |
# Load the dataset using the default config
|
46 |
-
|
47 |
# Check all available subsets (config names) of the dataset
|
48 |
-
|
49 |
# Load the dataset using a specific config
|
50 |
-
|
51 |
```
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
|
56 |
## Dataset Homepage
|
57 |
|
|
|
1 |
|
2 |
---
|
3 |
language:
|
4 |
+
- ban
|
5 |
- min
|
6 |
- ace
|
7 |
- ind
|
|
|
8 |
- sun
|
9 |
- jav
|
10 |
+
- bug
|
11 |
pretty_name: Librivox Indonesia
|
12 |
task_categories:
|
13 |
- speech-recognition
|
|
|
28 |
|
29 |
## Languages
|
30 |
|
31 |
+
ban, min, ace, ind, sun, jav, bug
|
32 |
|
33 |
## Supported Tasks
|
34 |
|
35 |
Speech Recognition
|
36 |
+
|
37 |
## Dataset Usage
|
38 |
### Using `datasets` library
|
39 |
```
|
40 |
+
from datasets import load_dataset
|
41 |
+
dset = datasets.load_dataset("SEACrowd/librivox_indonesia", trust_remote_code=True)
|
42 |
```
|
43 |
### Using `seacrowd` library
|
44 |
```import seacrowd as sc
|
45 |
# Load the dataset using the default config
|
46 |
+
dset = sc.load_dataset("librivox_indonesia", schema="seacrowd")
|
47 |
# Check all available subsets (config names) of the dataset
|
48 |
+
print(sc.available_config_names("librivox_indonesia"))
|
49 |
# Load the dataset using a specific config
|
50 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
51 |
```
|
52 |
+
|
53 |
+
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).
|
54 |
+
|
55 |
|
56 |
## Dataset Homepage
|
57 |
|