Datasets:
Tasks:
Image Classification
Languages:
English
Dataset Viewer
Full Screen Viewer
Full Screen
The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
BreastMNIST Dataset
This dataset contains medical imaging data for breast cancer classification. It is split into training, validation, and test sets.
Dataset Structure
The dataset includes:
train_images
: Images for trainingtrain_labels
: Labels for trainingval_images
: Images for validationval_labels
: Labels for validationtest_images
: Images for testingtest_labels
: Labels for testing
Configurations
datasets: - name: breastmnist configs: - name: default description: "Default configuration with all available data." - name: balanced description: "Configuration with a balanced dataset between classes."
Usage
You can load the dataset using the following commands:
from datasets import load_dataset
# Load the default configuration
dataset = load_dataset("sanaa13/breastmnist1", "default")
# Load the balanced configuration
balanced_dataset = load_dataset("sanaa13/breastmnist1", "balanced")
- Downloads last month
- 37