├── .gitignore ├── README.md ├── demo.py ├── models.py ├── raw_data └── swb_swapped_speak.txt └── swb_preprocessing ├── align_files.py ├── prep_audio.py ├── prep_labels.py └── run_data_prep.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amritkromana/disfluency_detection_from_audio/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amritkromana/disfluency_detection_from_audio/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amritkromana/disfluency_detection_from_audio/HEAD/demo.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amritkromana/disfluency_detection_from_audio/HEAD/models.py -------------------------------------------------------------------------------- /raw_data/swb_swapped_speak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amritkromana/disfluency_detection_from_audio/HEAD/raw_data/swb_swapped_speak.txt -------------------------------------------------------------------------------- /swb_preprocessing/align_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amritkromana/disfluency_detection_from_audio/HEAD/swb_preprocessing/align_files.py -------------------------------------------------------------------------------- /swb_preprocessing/prep_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amritkromana/disfluency_detection_from_audio/HEAD/swb_preprocessing/prep_audio.py -------------------------------------------------------------------------------- /swb_preprocessing/prep_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amritkromana/disfluency_detection_from_audio/HEAD/swb_preprocessing/prep_labels.py -------------------------------------------------------------------------------- /swb_preprocessing/run_data_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amritkromana/disfluency_detection_from_audio/HEAD/swb_preprocessing/run_data_prep.py --------------------------------------------------------------------------------