Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# NP-TORGO: A Partitioned Dysarthric Speech Dataset
|
| 2 |
+
|
| 3 |
+
## Dataset Overview
|
| 4 |
+
NP-TORGO (No Prompt-Overlap TORGO) is a partitioned version of the TORGO dataset designed to address the issue of prompt overlap between speakers. The original TORGO dataset contains dysarthric speech samples from individuals with ALS or CP, but significant prompt overlap can lead to data leakage. NP-TORGO ensures there is no prompt overlap between training, validation, and test sets, providing a more realistic evaluation setting for speech recognition models.
|
| 5 |
+
|
| 6 |
+
## Data Structure
|
| 7 |
+
The dataset consists of audio samples and corresponding text transcriptions, with the following key columns:
|
| 8 |
+
|
| 9 |
+
- **session**: The recording session of the speaker.
|
| 10 |
+
- **stringlengths (audio/text)**: The length of the audio and text samples.
|
| 11 |
+
- **stringclasses (speaker_id)**: The unique identifier of the speaker.
|
| 12 |
+
- **test_data**: The split indicator, where:
|
| 13 |
+
- `1` denotes the test set.
|
| 14 |
+
- `0` denotes the training and validation set.
|
| 15 |
+
- **file_path**: The path to the corresponding audio file.
|
| 16 |
+
- **transcription**: The ground truth text for the audio sample.
|
| 17 |
+
|
| 18 |
+
## Data Filtering
|
| 19 |
+
NP-TORGO applies the following filtering logic to ensure a clean separation between training, validation, and test sets:
|
| 20 |
+
|
| 21 |
+
## Data Splitting Strategy
|
| 22 |
+
|
| 23 |
+
- If `test_data == 1`, the sample belongs to the **test set**.
|
| 24 |
+
- If `test_data == 0`, the sample is part of the **train** or **validation set**.
|
| 25 |
+
|
| 26 |
+
## Speaker Partitioning Strategy
|
| 27 |
+
|
| 28 |
+
To ensure a fair evaluation, NP-TORGO follows a predefined rule for speaker assignment:
|
| 29 |
+
|
| 30 |
+
This means:
|
| 31 |
+
|
| 32 |
+
- If the test speaker is **not** F03, then the validation speaker is F03.
|
| 33 |
+
- If the test speaker is **F03**, then the validation speaker is set to F04.
|
| 34 |
+
|
| 35 |
+
This approach prevents overlap and ensures a robust validation protocol.
|
| 36 |
+
|
| 37 |
+
## Citation
|
| 38 |
+
|
| 39 |
+
If you use NP-TORGO in your research, please cite our paper:
|
| 40 |
+
|
| 41 |
+
**Enhancing AAC Software for Dysarthric Speakers in e-Health Settings: An Evaluation Using TORGO**
|
| 42 |
+
*Macarious Kin Fung Hui, Jinda Zhang, Aanchan Mohan*
|
| 43 |
+
IEEE ICC '25
|