{ "cells": [ { "cell_type": "markdown", "id": "64053c0f-3582-465b-9e4c-a83da332da88", "metadata": {}, "source": [ "# Find Label Errors in Multi-Label Classification Datasets\n", "\n", "This 5-minute quickstart tutorial demonstrates how to find potential label errors in multi-label classification datasets. In such datasets, each example is labeled as belonging to one *or more* classes (unlike in *multi-class classification* where each example can only belong to one class). For a particular example in such multi-label classification data, we say each class either applies or not. We may even have some examples where *no* classes apply. Common applications of this include image tagging (or document tagging), where multiple tags can be appropriate for a single image (or document). For example, a image tagging application could involve the following classes: [`copyrighted`, `advertisement`, `face`, `violence`, `nsfw`]" ] }, { "cell_type": "markdown", "id": "adaefc8b-b639-4bdf-af0d-337519e37ffc", "metadata": {}, "source": [ "