resproj007 commited on
Commit
3fe8727
·
verified ·
1 Parent(s): e668714

Upload 4 files

Browse files
README.md ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language: en
4
+ tags:
5
+ - pathological-speech
6
+ - speech-synthesis
7
+ - tts
8
+ - voice-conversion
9
+ - healthy
10
+ - librispeech
11
+ ---
12
+
13
+ # Librispeech Male Dataset
14
+
15
+ ## Overview
16
+
17
+ This dataset contains healthy speech samples from a male speaker (4014) in the LibriSpeech corpus, prepared for pathological speech synthesis research.
18
+
19
+ **Speaker Information:**
20
+ - **Speaker ID:** 4014
21
+ - **Corpus:** LibriSpeech
22
+ - **Gender:** Male
23
+ - **Speech Status:** Healthy
24
+ - **Disorder Type:** None
25
+ - **Severity:** None
26
+
27
+ ## Dataset Statistics
28
+
29
+ - **Total Samples:** 160
30
+ - **Total Duration:** 0.41 hours
31
+ - **Sampling Rate:** 24,000 Hz
32
+ - **Format:** Audio arrays with transcriptions
33
+
34
+ ### Training Split
35
+ - **Samples:** 130
36
+ - **Duration:** 0.33 hours
37
+ - **Avg Duration:** 9.1s
38
+ - **Duration Range:** 2.1s - 16.7s
39
+ - **Avg Text Length:** 158 characters
40
+
41
+ ### Test Split
42
+ - **Samples:** 30
43
+ - **Duration:** 0.08 hours
44
+ - **Avg Duration:** 9.8s
45
+ - **Duration Range:** 2.3s - 17.0s
46
+ - **Avg Text Length:** 169 characters
47
+
48
+ ## Usage
49
+
50
+ This dataset is optimized for:
51
+ - **Text-to-Speech (TTS) Fine-tuning** with models like Orpheus-TTS
52
+ - **Voice Conversion (VC)** experiments with kNN-VC and similar methods
53
+ - **Hybrid TTS+VC** pipeline development
54
+ - **ASR Evaluation** on pathological speech
55
+ - **Speech Synthesis Research** for accessibility applications
56
+
57
+ ### Loading the Dataset
58
+
59
+ ```python
60
+ from datasets import load_dataset
61
+
62
+ # Load the dataset
63
+ dataset = load_dataset("your-username/librispeech_male")
64
+
65
+ # Access train and test splits
66
+ train_data = dataset['train']
67
+ test_data = dataset['test']
68
+
69
+ # Each sample contains:
70
+ # - 'audio': {'array': numpy_array, 'sampling_rate': 24000}
71
+ # - 'text': str (normalized transcription)
72
+
73
+ # Example usage
74
+ sample = train_data[0]
75
+ audio_array = sample['audio']['array']
76
+ transcription = sample['text']
77
+ sampling_rate = sample['audio']['sampling_rate']
78
+ ```
79
+
80
+ ### Direct Training with Transformers
81
+
82
+ ```python
83
+ from transformers import Trainer
84
+ from datasets import load_dataset
85
+
86
+ # Load and use directly with Trainer (no preprocessing needed)
87
+ dataset = load_dataset("your-username/librispeech_male")
88
+ trainer = Trainer(
89
+ train_dataset=dataset['train'],
90
+ eval_dataset=dataset['test'],
91
+ # ... other trainer arguments
92
+ )
93
+ ```
94
+
95
+ ## Research Applications
96
+
97
+ This dataset is part of a larger study on pathological speech synthesis and ASR degradation, investigating:
98
+
99
+ 1. **TTS Fine-tuning**: Speaker-specific fine-tuning of large TTS models
100
+ 2. **Voice Conversion**: Zero-shot conversion from healthy to pathological speech
101
+ 3. **Hybrid Approaches**: Combining TTS content generation with VC-based acoustic styling
102
+ 4. **ASR Robustness**: Evaluating ASR performance on synthetic pathological speech
103
+
104
+ ## Citation
105
+
106
+ If you use this dataset in your research, please cite:
107
+
108
+ ```bibtex
109
+ @dataset{librispeech_male_2025,
110
+ title={Librispeech Male Dataset for Pathological Speech Synthesis},
111
+ author={Your Name},
112
+ year={2025},
113
+ publisher={Hugging Face},
114
+ url={https://huggingface.co/datasets/your-username/librispeech_male}
115
+ }
116
+ ```
117
+
118
+ ## Original Corpus Citation
119
+
120
+ **LibriSpeech Corpus:**
121
+ - TORGO: Please cite the original TORGO database papers
122
+ - UA-Speech: Please cite the original UA-Speech corpus papers
123
+ - LibriSpeech: Please cite the original LibriSpeech papers
124
+
125
+ ## License
126
+
127
+ MIT License - See LICENSE file for details.
128
+
129
+ ## Ethical Considerations
130
+
131
+ This dataset contains speech from individuals with speech disorders and should be used responsibly:
132
+ - Respect speaker privacy and dignity
133
+ - Use for legitimate research purposes
134
+ - Consider potential biases in synthetic speech generation
135
+ - Ensure accessibility improvements benefit the target communities
136
+
137
+ ## Contact
138
+
139
+ For questions about this dataset or the associated research, please contact [your-email].
dataset_info.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "librispeech_male",
3
+ "speaker_info": {
4
+ "speaker_id": "4014",
5
+ "corpus": "LibriSpeech",
6
+ "gender": "Male",
7
+ "speech_status": "Healthy",
8
+ "disorder_type": "None",
9
+ "severity": "None"
10
+ },
11
+ "train_stats": {
12
+ "samples": 130,
13
+ "total_duration_hours": 0.33,
14
+ "avg_duration_seconds": 9.13,
15
+ "min_duration_seconds": 2.15,
16
+ "max_duration_seconds": 16.66,
17
+ "avg_text_length": 158.0,
18
+ "sampling_rate": 24000
19
+ },
20
+ "test_stats": {
21
+ "samples": 30,
22
+ "total_duration_hours": 0.08,
23
+ "avg_duration_seconds": 9.76,
24
+ "min_duration_seconds": 2.29,
25
+ "max_duration_seconds": 17.0,
26
+ "avg_text_length": 169.2,
27
+ "sampling_rate": 24000
28
+ },
29
+ "total_samples": 160,
30
+ "total_duration_hours": 0.41000000000000003,
31
+ "sampling_rate": 24000,
32
+ "format": "parquet",
33
+ "columns": [
34
+ "audio",
35
+ "text"
36
+ ],
37
+ "creation_date": "2025-09-10T23:19:41.829905",
38
+ "compatible_with": [
39
+ "huggingface",
40
+ "transformers",
41
+ "unsloth",
42
+ "orpheus-tts",
43
+ "knn-vc"
44
+ ]
45
+ }
test-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81213c936e157af41fc5fb32b1b18a810fc29de44b7df41c564999c57015ab4a
3
+ size 13868701
train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baf3ae9645394b35fd9035deff7482edbcf1850cd666bae2124f6bac1be84701
3
+ size 55948048