{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Datalab: A unified audit to detect all kinds of issues in data and labels" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Cleanlab offers a `Datalab` object that can identify various issues in your machine learning datasets, such as noisy labels, outliers, (near) duplicates, drift, and other types of problems common in real-world data. These data issues may negatively impact models if not addressed. `Datalab` utilizes *any* ML model you have already trained for your data to diagnose these issues, it only requires access to either: (probabilistic) predictions from your model or its learned representations of the data.\n", "\n", "\n", "**Overview of what we'll do in this tutorial:**\n", "\n", "- Compute out-of-sample predicted probabilities for a sample dataset using cross-validation.\n", "- Use `Datalab` to identify issues such as noisy labels, outliers, (near) duplicates, and other types of problems \n", "- View the issue summaries and other information about our sample dataset\n", "\n", "You can easily replace our demo dataset with your own image/text/tabular/audio/etc dataset, and then run the same code to discover what sort of issues lurk within it!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "