File size: 1,820 Bytes
29cef79
 
d3cc993
 
28435db
d3cc993
 
 
 
 
 
 
 
29cef79
6e079a3
a80cfb8
34dce9c
6e079a3
18c72d9
874135f
6e079a3
 
0f1ee35
 
 
 
 
 
 
 
be59411
 
ed96182
 
 
 
 
 
18c72d9
a80cfb8
18c72d9
9e030e9
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
license: mit
task_categories:
- feature-extraction
- token-classification
language:
- en
tags:
- biology
- medical
pretty_name: Pima
size_categories:
- n<1K
---

# Dataset Card for Pima
The Pima dataset is a well-known data repository in the field of healthcare and machine learning. The dataset contains demographic, clinical and diagnostic characteristics of Pima Indian women and is primarily used to predict the onset of diabetes based on these attributes. Each data point includes information such as age, number of pregnancies, body mass index, blood pressure, and glucose concentration. Researchers and data scientists use the Pima dataset to develop and evaluate predictive models for diabetes risk assessment. The dataset plays a key role in driving the development of machine learning algorithms aimed at improving the early detection and management of diabetes. Its relevance is not limited to clinical applications, but extends to research initiatives focusing on factors that influence the prevalence of diabetes. The Pima dataset becomes a cornerstone in fostering innovation in predictive healthcare analytics, contributing to the broad field of medical informatics.

## Usage
```python
from datasets import load_dataset

ds = load_dataset(
    "Genius-Society/Pima",
    name="default",
    split="train", # train / validation / test
    cache_dir="./__pycache__",
)
for i in ds:
    print(i)
```

## Maintenance
```bash
git clone git@hf.co:datasets/Genius-Society/Pima
cd Pima
```

## Mirror
<https://www.modelscope.cn/datasets/Genius-Society/Pima>

## Thanks
 - [Pima Indians Diabetes Database](https://www.kaggle.com/datasets/uciml/pima-indians-diabetes-database)
 - [Chapter IV ‐ Medical Signal Segmentation and Classification](https://github.com/Genius-Society/medical_image_computing/tree/ad)