Datasets:
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
COVID-19 Cough Audio Dataset (Processed, Kaldi-style)
This repository contains a fully processed, Kaldi-style version of the COVID-19 cough audio dataset used in my COVID-19 detection project.
It includes standardized audio files (16 kHz), a precomputed DTW distance lookup table, and several precomputed feature representations (MFCC, MFSC, Mel spectrograms) to support fast experimentation.
This dataset is intended for researchers and practitioners working on audio classification, medical audio analysis, or benchmarking feature extraction pipelines.
The dataset follows a Kaldi-style directory layout, where all metadata and feature descriptors are stored in text-based index files:
data/
β
βββ wavs16k/ # All audio files resampled to 16 kHz
β
βββ train/ # Training split metadata
β βββ wav.scp # mapping: sample_id -> path_to_wav
β βββ text # mapping: sample_id -> label (0/1)
β
βββ test/ # Test split metadata
β βββ wav.scp
β βββ text
β
βββ features/
β
βββ lookups/ # Lookup tables for similarity-based methods
β βββ dtw_lookup.npy
β
βββ train/ # Precomputed features for training samples
β βββ mfcc/
β βββ mfsc/
β βββ mel_spectrogram/
β
βββ test/ # Precomputed features for test samples
βββ mfcc/
βββ mfsc/
βββ mel_spectrogram/
This dataset is built from this Kaggle competition used in one of my university courses, which is a balanced selection of recordings from 3 different databases: Coswara, Cambridge, and Coughvid. Please ensure compliance with the original Kaggle competitionβs terms of use when working with this dataset.
- Downloads last month
- 12