Datasets:
wanchichen
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -37,8 +37,25 @@ The original audio sources wwere crawled from [InspirationalFilms](https://www.i
|
|
37 |
We use this corpus to train [XEUS](), a multilingual speech encoder for 4000+ languages.
|
38 |
For more details about the dataset and its usage, please refer to our [paper]().
|
39 |
|
|
|
40 |
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
Jesus Dramas is released under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 license.
|
44 |
|
|
|
37 |
We use this corpus to train [XEUS](), a multilingual speech encoder for 4000+ languages.
|
38 |
For more details about the dataset and its usage, please refer to our [paper]().
|
39 |
|
40 |
+
## Usage
|
41 |
|
42 |
+
```python
|
43 |
+
from datasets import load_dataset
|
44 |
+
dataset = load_dataset("espnet/jesus_dramas")
|
45 |
+
```
|
46 |
+
|
47 |
+
Each example in the dataset has three fields:
|
48 |
+
|
49 |
+
```
|
50 |
+
{
|
51 |
+
'id': the utterance id,
|
52 |
+
'language': the language name
|
53 |
+
'audio': the raw audio
|
54 |
+
}
|
55 |
+
```
|
56 |
+
|
57 |
+
|
58 |
+
## License and Acknowledgement
|
59 |
|
60 |
Jesus Dramas is released under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 license.
|
61 |
|