{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Datalab: Advanced workflows to audit your data" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Cleanlab offers a `Datalab` object to identify various issues in your machine learning datasets that may negatively impact models if not addressed. By default, `Datalab` can help you identify noisy labels, outliers, (near) duplicates, and other types of problems that commonly occur in real-world data.\n", "\n", "`Datalab` performs these checks by utilizing the (probabilistic) predictions from *any* ML model that has already been trained or its learned representations of the data. Underneath the hood, this class calls all the appropriate cleanlab methods for your dataset and provided model outputs, in order to best audit the data and alert you of important issues. This makes it easy to apply many functionalities of this library all within a single line of code. \n", "\n", "**This tutorial will demonstrate some advanced functionalities of Datalab including:**\n", "\n", "- Incremental issue search\n", "- Specifying nondefault arguments to issue checks\n", "- Save and load Datalab objects\n", "- Adding a custom IssueManager\n", "\n", "If you are new to `Datalab`, check out this [quickstart tutorial](datalab_quickstart.html) for a 5-min introduction!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "