{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Detecting Issues in an Image Dataset with Datalab\n", "\n", "This quickstart tutorial demonstrates how to find issues in image classification data. Here we use the Fashion-MNIST dataset (60,000 images of fashion products from 10 categories), but you can replace this with your own image classification dataset and still follow the same tutorial.\n", "\n", "**Overview of what we'll do in this tutorial:**\n", "\n", "- Build a simple [PyTorch](https://pytorch.org/) neural net.\n", "\n", "- Use cross-validation to compute out-of-sample predicted probabilities (`pred_probs`) and feature embeddings (`features`) for each image in the dataset.\n", "\n", "- Utilize these `pred_probs` and `features` to identify potential issues within the dataset using the `Datalab` class from cleanlab. The issues found by cleanlab include mislabeled examples, near duplicates, outliers, and image-specific problems such as excessively dark or low information images." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "