Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- speech recognition
|
4 |
+
- audio
|
5 |
+
- mp3
|
6 |
+
license: cc-by-4.0
|
7 |
+
language: en
|
8 |
+
size: 2GB
|
9 |
+
---
|
10 |
+
|
11 |
+
# MP3 Speech Recognition Dataset
|
12 |
+
|
13 |
+
This dataset contains MP3 files of spoken English phrases, along with their corresponding text transcriptions. It is designed for training and evaluating speech recognition models.
|
14 |
+
|
15 |
+
## Dataset Summary
|
16 |
+
|
17 |
+
This dataset includes:
|
18 |
+
- 5,000 MP3 audio files of English speech.
|
19 |
+
- Each file contains a 3-5 second spoken phrase recorded by various speakers.
|
20 |
+
- The audio files are accompanied by text transcriptions.
|
21 |
+
- The dataset is divided into training, validation, and test sets.
|
22 |
+
|
23 |
+
## License
|
24 |
+
|
25 |
+
The dataset is available under the [CC BY 4.0 License](LICENSE). Please attribute the dataset when using it in your research or applications.
|
26 |
+
|
27 |
+
## How to Use
|
28 |
+
|
29 |
+
To use this dataset, you can load it from Hugging Face's `datasets` library:
|
30 |
+
|
31 |
+
```python
|
32 |
+
from datasets import load_dataset
|
33 |
+
|
34 |
+
dataset = load_dataset("your_username/mp3_speech_recognition")
|