|
--- |
|
language: |
|
- en |
|
tags: |
|
- pima |
|
- tabular_classification |
|
- binary_classification |
|
- UCI |
|
pretty_name: Ozone |
|
size_categories: |
|
- 1K<n<10K |
|
task_categories: |
|
- tabular-classification |
|
configs: |
|
- pima |
|
license: cc |
|
--- |
|
# pima |
|
The [pima dataset](https://archive.ics.uci.edu/ml/datasets/Ozone) from the [UCI ML repository](https://archive.ics.uci.edu/ml/datasets). |
|
Predict diabetes of a patient. |
|
|
|
# Configurations and tasks |
|
| **Configuration** | **Task** | **Description** | |
|
|-------------------|---------------------------|-------------------------| |
|
| pima | Binary classification | Does the patient have diabetes?| |
|
|
|
|
|
# Usage |
|
```python |
|
from datasets import load_dataset |
|
|
|
dataset = load_dataset("mstz/pima")["train"] |
|
``` |