Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -17,7 +17,16 @@ configs:
|
|
17 |
The [Breast cancer dataset](https://archive.ics.uci.edu/ml/datasets/Breast+Cancer+Wisconsin+%28Original%29) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
18 |
|
19 |
# Configurations and tasks
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
# Features
|
23 |
| **Name** |**Type**|**Description** |
|
|
|
17 |
The [Breast cancer dataset](https://archive.ics.uci.edu/ml/datasets/Breast+Cancer+Wisconsin+%28Original%29) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
18 |
|
19 |
# Configurations and tasks
|
20 |
+
| **Configuration** | **Task** | Description |
|
21 |
+
|-------------------|---------------------------|---------------------------------------------------------------|
|
22 |
+
| cancer | Binary classification | Is the cell clump cancerous? |
|
23 |
+
|
24 |
+
# Usage
|
25 |
+
```python
|
26 |
+
from datasets import load_dataset
|
27 |
+
|
28 |
+
dataset = load_dataset("mstz/breast", "cancer")["train"]
|
29 |
+
```
|
30 |
|
31 |
# Features
|
32 |
| **Name** |**Type**|**Description** |
|