Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
# JWLang Corpus
|
3 |
+
|
4 |
+
## Dataset Summary
|
5 |
+
The JWLang Corpus is a collection of audio and corresponding text data from JW Broadcasting videos available on the jw.org website. It is intended for training and fine-tuning automatic speech recognition (ASR) models, specifically OpenAI Whisper.
|
6 |
+
|
7 |
+
## Dataset Structure
|
8 |
+
- Number of samples: 10,000
|
9 |
+
- Data format: Audio (WAV) and Text (SRT)
|
10 |
+
- Size: 5 GB
|
11 |
+
|
12 |
+
## Splits
|
13 |
+
| Split | Number of samples |
|
14 |
+
|------------|-------------------|
|
15 |
+
| Train | 8,000 |
|
16 |
+
| Validation | 1,000 |
|
17 |
+
| Test | 1,000 |
|
18 |
+
|
19 |
+
## Usage
|
20 |
+
To load and use the dataset:
|
21 |
+
|
22 |
+
```python
|
23 |
+
from datasets import load_dataset
|
24 |
+
|
25 |
+
dataset = load_dataset("M2LabOrg/JWLang_Corpus")
|
26 |
+
```
|
27 |
+
|
28 |
+
## Example Data
|
29 |
+
Example text snippet from the dataset:
|
30 |
+
```
|
31 |
+
{
|
32 |
+
"audio": "path/to/audio.wav",
|
33 |
+
"text": "Example subtitle text."
|
34 |
+
}
|
35 |
+
```
|
36 |
+
|
37 |
+
## License
|
38 |
+
```
|
39 |
+
CC BY-SA 4.0
|
40 |
+
```
|
41 |
+
|
42 |
+
## Citation
|
43 |
+
If you use this dataset, please cite:
|
44 |
+
|
45 |
+
```
|
46 |
+
@article{jwlang_corpus,
|
47 |
+
title={JWLang Corpus for ASR Training},
|
48 |
+
author={Michel Mesquita},
|
49 |
+
journal={Unpublished},
|
50 |
+
year={2024},
|
51 |
+
}
|
52 |
+
```
|
53 |
+
|
54 |
+
## Contact
|
55 |
+
For any questions or issues, please contact [Michel Mesquita](mailto:[email protected]).
|