resproj007 commited on
Commit
768db7a
·
verified ·
1 Parent(s): 8b5df8f

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-control
10
+ - torgo
11
+ ---
12
+
13
+ # Torgo Healthy Male Dataset
14
+
15
+ ## Overview
16
+
17
+ This dataset contains healthy control speech samples from a male speaker (MC01) in the TORGO corpus, prepared for pathological speech synthesis research.
18
+
19
+ **Speaker Information:**
20
+ - **Speaker ID:** MC01
21
+ - **Corpus:** TORGO
22
+ - **Gender:** Male
23
+ - **Speech Status:** Healthy Control
24
+ - **Disorder Type:** None
25
+ - **Severity:** None
26
+
27
+ ## Dataset Statistics
28
+
29
+ - **Total Samples:** 800
30
+ - **Total Duration:** 0.66 hours
31
+ - **Sampling Rate:** 24,000 Hz
32
+ - **Format:** Audio arrays with transcriptions
33
+
34
+ ### Training Split
35
+ - **Samples:** 700
36
+ - **Duration:** 0.57 hours
37
+ - **Avg Duration:** 2.9s
38
+ - **Duration Range:** 0.9s - 8.6s
39
+ - **Avg Text Length:** 11 characters
40
+
41
+ ### Test Split
42
+ - **Samples:** 100
43
+ - **Duration:** 0.09 hours
44
+ - **Avg Duration:** 3.1s
45
+ - **Duration Range:** 1.2s - 7.7s
46
+ - **Avg Text Length:** 12 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/torgo_healthy_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/torgo_healthy_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{torgo_healthy_male_2025,
110
+ title={Torgo Healthy 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/torgo_healthy_male}
115
+ }
116
+ ```
117
+
118
+ ## Original Corpus Citation
119
+
120
+ **TORGO 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": "torgo_healthy_male",
3
+ "speaker_info": {
4
+ "speaker_id": "MC01",
5
+ "corpus": "TORGO",
6
+ "gender": "Male",
7
+ "speech_status": "Healthy Control",
8
+ "disorder_type": "None",
9
+ "severity": "None"
10
+ },
11
+ "train_stats": {
12
+ "samples": 700,
13
+ "total_duration_hours": 0.57,
14
+ "avg_duration_seconds": 2.94,
15
+ "min_duration_seconds": 0.92,
16
+ "max_duration_seconds": 8.55,
17
+ "avg_text_length": 11.3,
18
+ "sampling_rate": 24000
19
+ },
20
+ "test_stats": {
21
+ "samples": 100,
22
+ "total_duration_hours": 0.09,
23
+ "avg_duration_seconds": 3.08,
24
+ "min_duration_seconds": 1.2,
25
+ "max_duration_seconds": 7.65,
26
+ "avg_text_length": 12.4,
27
+ "sampling_rate": 24000
28
+ },
29
+ "total_samples": 800,
30
+ "total_duration_hours": 0.6599999999999999,
31
+ "sampling_rate": 24000,
32
+ "format": "parquet",
33
+ "columns": [
34
+ "audio",
35
+ "text"
36
+ ],
37
+ "creation_date": "2025-09-10T23:19:44.111519",
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:342b3d913b021da4a0e58ae97f8306b916310f830d0b8fb5b70c515d525d3254
3
+ size 14761988
train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1f120ee773113e5c82489a3122a2dfcdc5a0a2eceaba3ce6792c9fceb9c0dd2
3
+ size 98475867