Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -2,31 +2,31 @@
|
|
2 |
language:
|
3 |
- en
|
4 |
tags:
|
5 |
-
-
|
6 |
- tabular_classification
|
7 |
- binary_classification
|
8 |
pretty_name: Ozone
|
9 |
size_categories:
|
10 |
- 1K<n<10K
|
11 |
-
task_categories:
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
- 8hr
|
15 |
- 1hr
|
|
|
16 |
---
|
17 |
-
#
|
18 |
-
The [
|
19 |
|
20 |
# Configurations and tasks
|
21 |
| **Configuration** | **Task** | **Description** |
|
22 |
|-------------------|---------------------------|-------------------------|
|
23 |
-
|
|
24 |
-
| 1hr | Binary classification | Is there an ozone layer?|
|
25 |
|
26 |
|
27 |
# Usage
|
28 |
```python
|
29 |
from datasets import load_dataset
|
30 |
|
31 |
-
dataset = load_dataset("mstz/
|
32 |
-
```
|
|
|
2 |
language:
|
3 |
- en
|
4 |
tags:
|
5 |
+
- pim
|
6 |
- tabular_classification
|
7 |
- binary_classification
|
8 |
pretty_name: Ozone
|
9 |
size_categories:
|
10 |
- 1K<n<10K
|
11 |
+
task_categories:
|
12 |
- tabular-classification
|
13 |
configs:
|
14 |
- 8hr
|
15 |
- 1hr
|
16 |
+
license: cc
|
17 |
---
|
18 |
+
# pima
|
19 |
+
The [pima dataset](https://archive.ics.uci.edu/ml/datasets/Ozone) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets).
|
20 |
|
21 |
# Configurations and tasks
|
22 |
| **Configuration** | **Task** | **Description** |
|
23 |
|-------------------|---------------------------|-------------------------|
|
24 |
+
| pima | Binary classification | Is there an ozone layer?|
|
|
|
25 |
|
26 |
|
27 |
# Usage
|
28 |
```python
|
29 |
from datasets import load_dataset
|
30 |
|
31 |
+
dataset = load_dataset("mstz/pima")["train"]
|
32 |
+
```
|