DADS (Detection and Analysis of Dysfluencies in Speech) is an AI-powered application designed to detect stuttering in speech recordings.
This app allows users to record or upload audio, analyze it, and visualize stuttering patterns efficiently.
📂 Project Structure
DADS/
│-- Scripts/ # Data Generation,Preprocessing,Utilities
│-- Model/ # Model training & Evaluation
|-- dataset/ # Extract the dataset here
│-- App/ # Application Code (UI,API,Deployment)
- Run the following command in your terminal (replace < repo-link > with your actual repository link):
git clone <repo-link>- On macOS / Linux:
python3 -m venv .venv- On Windows:
python -m venv .venvActivate the environment:
- macOS / Linux:
source .venv/bin/activate- Windows:
.venv\Scripts\activateInstall the required packages:
pip install -r requirements.txtStart the application by running:
- macOS / Linux
python3 App/run_app.py- Windows
python App/run_app.pyFollow this convention:
[TYPE] Commit message
Common types:
- [FIX] – Bug fixes
- [ADD] – New features
- [DOCS] – Documentation changes
- [MNT] – Code refactoring & Maintenance
- [TEST] – Tests additions or fixes