mstz commited on
Commit
e8abc45
·
1 Parent(s): 3671398

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -1
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
- - `wine` classify the color of the given wine.
 
 
 
 
 
 
 
 
 
 
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
+ ```