Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -29,10 +29,18 @@ license: cc
|
|
29 |
# Yeast
|
30 |
The [Yeast dataset](https://archive-beta.ics.uci.edu/dataset/110/yeast) from the [UCI repository](https://archive-beta.ics.uci.edu/).
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
# Configurations and tasks
|
33 |
| **Configuration** | **Task** | **Description** |
|
34 |
|-----------------------|---------------------------|-------------------------|
|
35 |
-
|
|
36 |
| yeast_0 | Binary classification. | Is the instance of class 0? |
|
37 |
| yeast_1 | Binary classification. | Is the instance of class 1? |
|
38 |
| yeast_2 | Binary classification. | Is the instance of class 2? |
|
|
|
29 |
# Yeast
|
30 |
The [Yeast dataset](https://archive-beta.ics.uci.edu/dataset/110/yeast) from the [UCI repository](https://archive-beta.ics.uci.edu/).
|
31 |
|
32 |
+
# Usage
|
33 |
+
```python
|
34 |
+
from datasets import load_dataset
|
35 |
+
|
36 |
+
dataset = load_dataset("mstz/yeast")["train"]
|
37 |
+
```
|
38 |
+
|
39 |
+
|
40 |
# Configurations and tasks
|
41 |
| **Configuration** | **Task** | **Description** |
|
42 |
|-----------------------|---------------------------|-------------------------|
|
43 |
+
| yeast | Multiclass classification.| |
|
44 |
| yeast_0 | Binary classification. | Is the instance of class 0? |
|
45 |
| yeast_1 | Binary classification. | Is the instance of class 1? |
|
46 |
| yeast_2 | Binary classification. | Is the instance of class 2? |
|