Update README.md
Browse files
README.md
CHANGED
@@ -1,35 +1,108 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
dataset_info:
|
4 |
-
features:
|
5 |
-
- name: file_name
|
6 |
-
dtype: string
|
7 |
-
- name: text
|
8 |
-
dtype: string
|
9 |
-
- name: audio
|
10 |
-
dtype:
|
11 |
-
audio:
|
12 |
-
sampling_rate: 16000
|
13 |
-
- name: duration
|
14 |
-
dtype: float64
|
15 |
-
- name: sample_rate
|
16 |
-
dtype: int64
|
17 |
-
- name: __index_level_0__
|
18 |
-
dtype: int64
|
19 |
-
splits:
|
20 |
-
- name: train
|
21 |
-
num_bytes: 4847435436.0
|
22 |
-
num_examples: 2527
|
23 |
-
- name: test
|
24 |
-
num_bytes: 1213623320.0
|
25 |
-
num_examples: 632
|
26 |
-
download_size: 5634163911
|
27 |
-
dataset_size: 6061058756.0
|
28 |
-
configs:
|
29 |
-
- config_name: default
|
30 |
-
data_files:
|
31 |
-
- split: train
|
32 |
-
path: data/train-*
|
33 |
-
- split: test
|
34 |
-
path: data/test-*
|
35 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
dataset_info:
|
4 |
+
features:
|
5 |
+
- name: file_name
|
6 |
+
dtype: string
|
7 |
+
- name: text
|
8 |
+
dtype: string
|
9 |
+
- name: audio
|
10 |
+
dtype:
|
11 |
+
audio:
|
12 |
+
sampling_rate: 16000
|
13 |
+
- name: duration
|
14 |
+
dtype: float64
|
15 |
+
- name: sample_rate
|
16 |
+
dtype: int64
|
17 |
+
- name: __index_level_0__
|
18 |
+
dtype: int64
|
19 |
+
splits:
|
20 |
+
- name: train
|
21 |
+
num_bytes: 4847435436.0
|
22 |
+
num_examples: 2527
|
23 |
+
- name: test
|
24 |
+
num_bytes: 1213623320.0
|
25 |
+
num_examples: 632
|
26 |
+
download_size: 5634163911
|
27 |
+
dataset_size: 6061058756.0
|
28 |
+
configs:
|
29 |
+
- config_name: default
|
30 |
+
data_files:
|
31 |
+
- split: train
|
32 |
+
path: data/train-*
|
33 |
+
- split: test
|
34 |
+
path: data/test-*
|
35 |
+
---
|
36 |
+
|
37 |
+
|
38 |
+
# Omarrran/dr_andrew_Huberman_eng_tts_hf_dataset
|
39 |
+
|
40 |
+
## Dataset Description
|
41 |
+
|
42 |
+
This dataset contains English text-to-speech (TTS) data, including paired text and audio files.
|
43 |
+
|
44 |
+
## Dataset Statistics
|
45 |
+
|
46 |
+
- Total number of samples: 3159
|
47 |
+
- Number of samples in train split: 2527
|
48 |
+
- Number of samples in test split: 632
|
49 |
+
|
50 |
+
### Audio Statistics
|
51 |
+
|
52 |
+
- Total audio duration: 31563.23 seconds (8.77 hours)
|
53 |
+
- Average audio duration: 9.99 seconds
|
54 |
+
- Minimum audio duration: 1.09 seconds
|
55 |
+
- Maximum audio duration: 10.00 seconds
|
56 |
+
|
57 |
+
### Text Statistics
|
58 |
+
|
59 |
+
- Total number of words: 110645
|
60 |
+
- Average number of words per sample: 35.03
|
61 |
+
- Minimum number of words in a sample: 0
|
62 |
+
- Maximum number of words in a sample: 74
|
63 |
+
|
64 |
+
## Dataset Structure
|
65 |
+
|
66 |
+
The dataset contains the following fields:
|
67 |
+
|
68 |
+
- `file_name`: Value(dtype='string', id=None)
|
69 |
+
- `text`: Value(dtype='string', id=None)
|
70 |
+
- `audio`: Audio(sampling_rate=16000, mono=True, decode=True, id=None)
|
71 |
+
- `duration`: Value(dtype='float64', id=None)
|
72 |
+
- `sample_rate`: Value(dtype='int64', id=None)
|
73 |
+
- `__index_level_0__`: Value(dtype='int64', id=None)
|
74 |
+
|
75 |
+
## Usage Example
|
76 |
+
|
77 |
+
Here's a simple example of how to load and use this dataset:
|
78 |
+
|
79 |
+
```python
|
80 |
+
from datasets import load_dataset
|
81 |
+
|
82 |
+
dataset = load_dataset('Omarrran/dr_andrew_Huberman_eng_tts_hf_dataset')
|
83 |
+
|
84 |
+
# Access the training split
|
85 |
+
train_data = dataset['train']
|
86 |
+
|
87 |
+
# Get the first sample
|
88 |
+
first_sample = train_data[0]
|
89 |
+
print(f"Text: {first_sample['text']}")
|
90 |
+
print(f"Audio file: {first_sample['audio']}")
|
91 |
+
```
|
92 |
+
|
93 |
+
## License
|
94 |
+
|
95 |
+
Please refer to the dataset card for license information.
|
96 |
+
|
97 |
+
## Citation
|
98 |
+
|
99 |
+
If you use this dataset in your research, please cite it as follows:
|
100 |
+
|
101 |
+
```
|
102 |
+
@dataset{english_tts_hf_dataset,
|
103 |
+
author = {Haq Nawaz Malik},
|
104 |
+
title = {Omarrran/dr_andrew_Huberman_eng_tts_hf_dataset},
|
105 |
+
year = {2023},
|
106 |
+
url = {https://huggingface.co/datasets/Omarrran/dr_andrew_Huberman_eng_tts_hf_dataset}
|
107 |
+
}
|
108 |
+
```
|