Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -8,11 +8,11 @@ tags:
|
|
8 |
pretty_name: Mushroom
|
9 |
size_categories:
|
10 |
- 1K<n<10K
|
11 |
-
task_categories:
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
- mushroom
|
15 |
-
|
16 |
---
|
17 |
# Mushroom
|
18 |
The [Mushroom dataset](https://archive.ics.uci.edu/ml/datasets/Mushroom) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
@@ -26,5 +26,5 @@ The [Mushroom dataset](https://archive.ics.uci.edu/ml/datasets/Mushroom) from th
|
|
26 |
```python
|
27 |
from datasets import load_dataset
|
28 |
|
29 |
-
dataset = load_dataset("mstz/mushroom"
|
30 |
-
```
|
|
|
8 |
pretty_name: Mushroom
|
9 |
size_categories:
|
10 |
- 1K<n<10K
|
11 |
+
task_categories:
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
- mushroom
|
15 |
+
license: cc
|
16 |
---
|
17 |
# Mushroom
|
18 |
The [Mushroom dataset](https://archive.ics.uci.edu/ml/datasets/Mushroom) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
|
|
26 |
```python
|
27 |
from datasets import load_dataset
|
28 |
|
29 |
+
dataset = load_dataset("mstz/mushroom")["train"]
|
30 |
+
```
|