|
|
--- |
|
|
configs: |
|
|
- config_name: wine |
|
|
data_files: |
|
|
- path: wine/train.csv |
|
|
split: train |
|
|
default: true |
|
|
language: en |
|
|
license: cc |
|
|
pretty_name: Wine |
|
|
size_categories: 1M<n<10M |
|
|
tags: |
|
|
- tabular_classification |
|
|
- binary_classification |
|
|
- multiclass_classification |
|
|
task_categories: |
|
|
- tabular-classification |
|
|
--- |
|
|
# 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"] |
|
|
``` |