Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -15,6 +15,16 @@ configs:
|
|
15 |
---
|
16 |
# Wine
|
17 |
The [Wine dataset](https://www.kaggle.com/datasets/ghassenkhaled/wine-quality-data) from Kaggle.
|
|
|
18 |
|
19 |
# Configurations and tasks
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
---
|
16 |
# Wine
|
17 |
The [Wine dataset](https://www.kaggle.com/datasets/ghassenkhaled/wine-quality-data) from Kaggle.
|
18 |
+
Classify wine as red or white.
|
19 |
|
20 |
# Configurations and tasks
|
21 |
+
| **Configuration** | **Task** | **Description** |
|
22 |
+
|-------------------|---------------------------|-----------------------------------------------------------------|
|
23 |
+
| wine | Binary classification | Is this red wine? |
|
24 |
+
|
25 |
+
# Usage
|
26 |
+
```python
|
27 |
+
from datasets import load_dataset
|
28 |
+
|
29 |
+
dataset = load_dataset("mstz/wine", "wine")["train"]
|
30 |
+
```
|