Datasets:
File size: 822 Bytes
c5979f4 3671398 c5979f4 e5a62b4 c5979f4 e5a62b4 c5979f4 3671398 e8abc45 3671398 e8abc45 e5a62b4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
---
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"]
``` |