About the Project
A comprehensive overview of the research background, dataset, methodology, model architecture, and experimental results.
Why Parkinson's Voice Detection Matters
Parkinson's disease (PD) is the second most common neurodegenerative disorder worldwide, affecting over 10 million people and projected to double in prevalence by 2040. The condition is characterized by progressive loss of dopaminergic neurons in the substantia nigra, leading to tremor, rigidity, bradykinesia — and a range of non-motor symptoms.
A critical challenge is that current diagnosis relies primarily on clinical observation of motor symptoms, which typically manifest only after 60–80% of dopaminergic neurons have already been lost. Patients often go undiagnosed for years during which earlier intervention could slow progression.
Voice changes offer a unique early window into neurological health. Approximately 90% of individuals with Parkinson's develop voice or speech disorders — often preceding motor diagnosis by years. These changes include reduced vocal intensity, monopitch, vocal tremor, and increased aperiodicity — all measurable from a simple voice recording.
Non-invasive, low-cost, and scalable, voice-based screening represents a compelling direction for early biomarker research. Deep learning architectures — particularly convolutional and recurrent models — have demonstrated strong performance in audio classification, making them well-suited for detecting subtle spectrotemporal signatures of vocal pathology.
Central Research Question
“Can a hybrid CNN-LSTM deep learning model, trained on mel-spectrogram representations of sustained vowel phonation recordings, reliably distinguish between individuals with Parkinson's disease and healthy controls in a subject-independent evaluation framework?”
Dataset Description
The study uses a composite clinical voice database of sustained phonation recordings from Parkinson's patients and age-matched healthy controls, collected under controlled conditions with a calibrated headset microphone.
Data note: Dataset values are placeholders for this research demonstration. A published study would include full provenance, ethics approval, and informed-consent documentation.
Processing Pipeline
The pipeline transforms raw audio into normalized mel-spectrogram inputs suitable for deep learning. Each step maximizes signal-to-noise ratio while preserving acoustic features most relevant to vocal pathology.
Sustained Vowel Phonation
Participants sustain the vowel /a/ for approximately 5–10 seconds at a comfortable pitch and loudness. This task isolates the voice production system, minimizing articulatory confounders.
Audio Preprocessing
Raw recordings are resampled to 22,050 Hz mono. Amplitude normalization accounts for recording-level variability. Silence trimming removes leading and trailing noise.
Middle 5-Second Extraction
The central 5 seconds are extracted to exclude onset and offset transients — capturing the most stable, steady-state vocal production representative of neuromotor control.
Mel-Spectrogram Generation
Each 5-second segment is transformed via STFT with a 25ms window, 10ms hop length, and 128 mel filterbanks spanning 0–8,000 Hz.
Spectrogram Normalization
Log-amplitude compression is applied, followed by per-channel mean and standard deviation normalization using training-set statistics for zero-mean, unit-variance inputs.
Deep Learning Classification
Normalized mel-spectrograms are fed into the CNN-LSTM model. CNN learns spectro-temporal features; LSTM captures temporal dynamics. The output head gives a Parkinson's probability score.
Hybrid CNN-LSTM Architecture
The architecture combines convolutional layers for local feature extraction with recurrent layers for temporal modeling — capturing both spectral texture and temporal evolution of acoustic biomarkers.
CNN Extraction
Three Conv2D blocks with BatchNorm and MaxPooling extract hierarchical spectrotemporal features.
LSTM Temporal
Stacked LSTM layers model temporal dependencies, capturing tremor periodicity and vocal instabilities.
Hybrid Design
CNN outputs are reshaped into a sequence and passed to LSTM, combining spatial and temporal biases.
Independent Eval
Training and testing use entirely different subjects, preventing data leakage and measuring true generalization.
Experimental Results
Results on the held-out test set under subject-independent 5-fold cross-validation. All metrics are macro-averaged. Shown values are placeholders — replace with your experimental results.
Performance Metrics
Model Comparison
Accuracy on subject-independent test set (placeholder values)
Key finding: The hybrid CNN-LSTM outperforms both CNN-only and LSTM-only baselines, validating the complementary nature of spectral and temporal feature extraction for voice-based PD detection.
Limitations & Future Work
Current Limitations
- 1Dataset size is limited — larger, more diverse datasets could improve generalization across demographics and equipment.
- 2Recording conditions (microphone quality, background noise) vary and may affect real-world performance.
- 3Binary classification (PD vs. healthy) does not account for disease severity or staging.
- 4The model was evaluated on English-speaking populations; cross-linguistic validity is unknown.
- 5Vowel phonation alone may not capture the full scope of vocal biomarkers.
Future Directions
- Extend to connected speech and reading tasks for richer acoustic feature coverage.
- Incorporate longitudinal data to track disease progression over time.
- Explore multi-modal fusion with tremor data, gait analysis, and clinical scores.
- Conduct prospective clinical validation with a certified IRB-approved study.
- Develop a lightweight mobile-compatible inference pipeline for real-world screening.
Ready to See It in Action?
Try the interactive demo to upload a voice recording and walk through the processing pipeline.
Launch Interactive Demo