Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -8,13 +8,15 @@ tags:
|
|
8 |
pretty_name: Spambase
|
9 |
size_categories:
|
10 |
- 1K<n<10K
|
11 |
-
task_categories:
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
- spambase
|
|
|
15 |
---
|
16 |
# Spambase
|
17 |
The [Spambase dataset](https://archive.ics.uci.edu/ml/datasets/Spambase) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
|
|
18 |
|
19 |
# Configurations and tasks
|
20 |
| **Configuration** | **Task** | **Description** |
|
@@ -26,5 +28,5 @@ The [Spambase dataset](https://archive.ics.uci.edu/ml/datasets/Spambase) from th
|
|
26 |
```python
|
27 |
from datasets import load_dataset
|
28 |
|
29 |
-
dataset = load_dataset("mstz/spambase"
|
30 |
-
```
|
|
|
8 |
pretty_name: Spambase
|
9 |
size_categories:
|
10 |
- 1K<n<10K
|
11 |
+
task_categories:
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
- spambase
|
15 |
+
license: cc
|
16 |
---
|
17 |
# Spambase
|
18 |
The [Spambase dataset](https://archive.ics.uci.edu/ml/datasets/Spambase) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
19 |
+
Is the given mail spam?
|
20 |
|
21 |
# Configurations and tasks
|
22 |
| **Configuration** | **Task** | **Description** |
|
|
|
28 |
```python
|
29 |
from datasets import load_dataset
|
30 |
|
31 |
+
dataset = load_dataset("mstz/spambase")["train"]
|
32 |
+
```
|