Dataset Viewer

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