File size: 1,305 Bytes
65eeff2 5043acf 65eeff2 f0e3144 65eeff2 04b2f2f 65eeff2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
---
language:
- pt
license: mit
datasets:
- jwlang
tags:
- automatic-speech-recognition
- speech
- dataset
viewer: true
---
# JWLang Corpus
## Dataset Summary
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.
## Dataset Structure
- Number of samples: 10,000
- Data format: Audio (WAV) and Text (SRT)
- Size: 5 GB
## Splits
| Split | Number of samples |
|------------|-------------------|
| Train | 8,000 |
| Validation | 1,000 |
| Test | 1,000 |
## Usage
To load and use the dataset:
```python
from datasets import load_dataset
dataset = load_dataset("M2LabOrg/JWLang_Corpus")
```
## Example Data
Example text snippet from the dataset:
```
{
"audio": "path/to/audio.wav",
"text": "Example subtitle text."
}
```
## License
```
CC BY-SA 4.0
```
## Citation
If you use this dataset, please cite:
```
@article{jwlang_corpus,
title={JWLang Corpus for ASR Training},
author={Michel Mesquita},
journal={Unpublished},
year={2024},
}
```
## Contact
For any questions or issues, please contact [Michel Mesquita](mailto:mmeclimate@gmail.com). |