|
--- |
|
language: |
|
- en |
|
tags: |
|
- mushroom |
|
- tabular_classification |
|
- binary_classification |
|
pretty_name: Mushroom |
|
size_categories: |
|
- 1K<n<10K |
|
task_categories: |
|
- tabular-classification |
|
configs: |
|
- mushroom |
|
license: cc |
|
--- |
|
# Mushroom |
|
The [Mushroom dataset](https://archive.ics.uci.edu/ml/datasets/Mushroom) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets). |
|
|
|
# Configurations and tasks |
|
| **Configuration** | **Task** | **Description** | |
|
|-------------------|---------------------------|---------------------------| |
|
| mushroom | Binary classification | Is the mushroom poisonous?| |
|
|
|
# Usage |
|
```python |
|
from datasets import load_dataset |
|
|
|
dataset = load_dataset("mstz/mushroom")["train"] |
|
``` |