CoolFace
Datasetpublic

Genius-Society/Pima

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… See the full description on the dataset page: https://huggingface.co/datasets/Genius-Society/Pima.

sourceHugging Facemitupdated 7mo agoView on Hugging Face
30likes55downloads
Dataset Card

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