{ "cells": [ { "cell_type": "markdown", "metadata": { "id": "eVufWTY3jRPx" }, "source": [ "# Detecting Issues in an Audio Dataset with Datalab\n", "\n", "In this 5-minute quickstart tutorial, we use cleanlab to find label issues in the [Spoken Digit dataset](https://www.tensorflow.org/datasets/catalog/spoken_digit) (it's like MNIST for audio). The dataset contains 2,500 audio clips with English pronunciations of the digits 0 to 9 (these are the class labels to predict from the audio).\n", "\n", "**Overview of what we'll do in this tutorial:**\n", "\n", "- Extract features from audio clips (.wav files) using a [pre-trained Pytorch model](https://huggingface.co/speechbrain/spkrec-xvect-voxceleb) from HuggingFace that was previously fit to the [VoxCeleb](https://www.robots.ox.ac.uk/~vgg/data/voxceleb/) speech dataset.\n", "\n", "- Train a cross-validated linear model using the extracted features and generate out-of-sample predicted probabilities.\n", "\n", "- Apply cleanlab's `Datalab` audit to these predictions in order to identify which audio clips in the dataset are likely mislabeled.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "