mstz commited on
Commit
f39faa9
·
1 Parent(s): 38deb92

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -1
README.md CHANGED
@@ -16,4 +16,13 @@ configs:
16
  The [Madelon dataset](https://archive-beta.ics.uci.edu/dataset/171/madelon) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
17
 
18
  # Configurations and tasks
19
- - `madelon` for binary classification.
 
 
 
 
 
 
 
 
 
 
16
  The [Madelon dataset](https://archive-beta.ics.uci.edu/dataset/171/madelon) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
17
 
18
  # Configurations and tasks
19
+ | **Configuration** | **Task** | **Description** |
20
+ |-------------------|---------------------------|-----------------------------------------------------------------|
21
+ | madelon | Binary classification | |
22
+
23
+ # Usage
24
+ ```python
25
+ from datasets import load_dataset
26
+
27
+ dataset = load_dataset("mstz/madelon", "madelon")["train"]
28
+ ```