|
--- |
|
language: |
|
- en |
|
tags: |
|
- wine |
|
- tabular_classification |
|
- binary_classification |
|
pretty_name: Wine quality |
|
size_categories: |
|
- 1K<n<10K |
|
task_categories: |
|
- tabular-classification |
|
configs: |
|
- wine |
|
license: cc |
|
--- |
|
# Wine |
|
The [Wine dataset](https://www.kaggle.com/datasets/ghassenkhaled/wine-quality-data) from Kaggle. |
|
Classify wine as red or white. |
|
|
|
# Configurations and tasks |
|
| **Configuration** | **Task** | **Description** | |
|
|-------------------|---------------------------|-----------------------------------------------------------------| |
|
| wine | Binary classification | Is this red wine? | |
|
|
|
# Usage |
|
```python |
|
from datasets import load_dataset |
|
|
|
dataset = load_dataset("mstz/wine")["train"] |
|
``` |