Datasets:
Update README.md
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
```
|