Mars-Bench
Collection
32 items
•
Updated
Error code: RowsPostProcessingError
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
A segmentation dataset for planetary science applications.
This dataset contains the following classes:
The dataset follows this structure:
dataset/
├── train/
│ ├── images/ # Image files
│ └── masks/ # Segmentation masks
├── val/
│ ├── images/ # Image files
│ └── masks/ # Segmentation masks
├── test/
│ ├── images/ # Image files
│ └── masks/ # Segmentation masks
from datasets import load_dataset
dataset = load_dataset("Mirali33/mb-mmls")
Each example in the dataset has the following format:
{
'image': Image(...), # PIL image
'mask': Image(...), # PIL image of the segmentation mask
'width': int, # Width of the image
'height': int, # Height of the image
'class_labels': [str,...] # List of class names present in the mask
}