datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
DiabetesResearchPaperdiabetes_eda_analysis
Diabetes Dataset — Exploratory Data Analysis (EDA)
This repository contains a diabetes-related tabular dataset and a complete Exploratory Data Analysis (EDA).The main objective of this project was to learn how to conduct a structured EDA, apply best practices, and extract meaningful insights from real-world health data.
The analysis includes correlations, distributions, group comparisons, class balance exploration, and statistical interpretations that illustrate how different… See the full description on the dataset page: https://huggingface.co/datasets/guyshilo12/diabetes_eda_analysis.diabetes-readmissionPort of the diabetes-readmission dataset from UCI (link here). See details there and use carefully.
Basic preprocessing done by the imodels team in this notebook.
The target is the binary outcome readmitted.
Sample usage
Load the data:
from datasets import load_dataset
dataset = load_dataset("imodels/diabetes-readmission")
df = pd.DataFrame(dataset['train'])
X = df.drop(columns=['readmitted'])
y = df['readmitted'].values
Fit a model:
import imodels
import numpy as np
m =… See the full description on the dataset page: https://huggingface.co/datasets/imodels/diabetes-readmission.alexteboul_diabetes-health-indicators-dataset
Diabetes Health Indicators Dataset
253,680 survey responses from cleaned BRFSS 2015 + balanced dataset
Dataset Info
Source: Kaggle
Original Size: 6.03 MB
Kaggle Downloads: 140,865
Files: 3
Files
diabetes_012_health_indicators_BRFSS2015.csv
diabetes_binary_5050split_health_indicators_BRFSS2015.csv
diabetes_binary_health_indicators_BRFSS2015.csv
Mirrored from Kaggle
uci-diabetes-130-us-hospitals
UCI Diabetes 130-US Hospitals, 1999–2008 — source mirror
Real publicly released hospital encounter data, not synthetic data. This is an
unofficial provenance-bearing mirror for statistical analysis and RareBurden
public-data node engineering. It is not a monogenic-diabetes cohort, a country
node deployment, clinical validation or evidence of hospital participation in
RareBurden. The train split is a hosting convention, not a study-design split.
Attribution and rights… See the full description on the dataset page: https://huggingface.co/datasets/edithatogo/uci-diabetes-130-us-hospitals.cdc-diabetes-health-indicatorsafrica-synth-diabetes-diabetes-dataset-all
African Diabetes Synthetic Dataset (T2DM + GDM) | Africa (Electric Sheep Africa metadata inventory)
Size category: 10K<n<100K - Formats: csv - Sector: health - Engineered by Electric Sheep Africa
TL;DR
This dataset is part of the Electric Sheep Africa catalog on Hugging Face. It is indexed for African data discovery with standardized metadata, loading guidance, provenance notes, and analyst-oriented context.
What This Dataset Covers
Health… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-synth-diabetes-diabetes-dataset-all.autotree_automl_Diabetes130US_gosdt_l512_d3
Dataset Card for "autotree_automl_Diabetes130US_gosdt_l512_d3"
More Information needed
autotree_automl_Diabetes130US_gosdt_l512_d3_sd3
Dataset Card for "autotree_automl_Diabetes130US_gosdt_l512_d3_sd3"
More Information needed
autotree_automl_Diabetes130US_gosdt_l512_d3_sd1
Dataset Card for "autotree_automl_Diabetes130US_gosdt_l512_d3_sd1"
More Information needed
pima-indians-diabetes-database
Pima Indians Diabetes Dataset Split
This directory contains split datasets of Pima Indians Diabetes Database.
For each splits, we have
Mock data: The mock data is a smaller dataset (10 rows for both train and test) that is used to test the model and data processing code.
Private data: Each private data contains 123-125 rows for training, and 32-33 rows for testing.
medical-diabetes
ACCESS REQUIREMENT - FOLLOW TO DOWNLOAD
This dataset requires following the author to access.
How to Access
Follow @shangshang on HuggingFace: https://huggingface.co/shangshang
Request access by commenting on the dataset page
Once approved, you will receive download permissions
Usage Agreement
For research and educational purposes only
Do not redistribute without permission
Cite the dataset in your work:
@misc{shangshang_dataset_2026… See the full description on the dataset page: https://huggingface.co/datasets/shangshang/medical-diabetes.asia-who-diabetes-treatment-coverage-tmentcrude
Diabetes treatment coverage, crude | Asia (WHO GHO)
🌏 4,752 observations · 48 Asia countries · 1990–2022 · Repackaged by Electric Sheep Asia
TL;DR
This dataset contains 4,752 observations of Diabetes treatment coverage, crude data across 48 Asia countries, spanning 1990–2022, covering 1 distinct indicators.
About the source
Source: WHO Global Health Observatory
Publisher: World Health Organization
License: cc-by-4.0
Topic: Diabetes treatment… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepasia/asia-who-diabetes-treatment-coverage-tmentcrude.pima-indians-diabetes-database-partitions
Pima Indians Diabetes Dataset Split
This directory contains a dataset split for Pima Indians Diabetes Database.
Mock Data
The mock data is a smaller dataset (10 rows) that is used to test the model components.
Private Data
The private data is the remaining data that is used to train the model.
diabetes-readmission
Data source:
Clore,John, Cios,Krzysztof, DeShazo,Jon, and Strack,Beata. (2014).
Diabetes 130-US hospitals for years 1999-2008. UCI Machine Learning
Repository. https://doi.org/10.24432/C5230J.
Basic data preprocessing was based on this notebook.
To load raw train and test sets
from datasets import load_dataset
train_set = load_dataset(dataset_name, data_files="train.csv")
test_set = load_dataset(dataset_name, data_files="test.csv")
To load… See the full description on the dataset page: https://huggingface.co/datasets/Bena345/diabetes-readmission.ML_CRISPR_Diabetesnhanes-diabetes-selected-attributes-386Selected 386 attributes. Diabetes type is not included.
diabetes_binary_health_indicators_BRFSS2015.csvDiabetes_UCIDiabetesDeepInsight-CSV
DiabetesDeepInsight-CSV
A comprehensive, multi-source CSV collection for Type 2 Diabetes prediction, combining clinical indicators and retinopathy features. Ideal for researchers and practitioners in medical AI and data science.
🚀 Highlights
Multi-Dataset Fusion: Integrates Pima Indians, BRFSS surveys, and Retinopathy Debrecen—over 300,000 records in total.
Clinical & Retinopathy Features: Blood tests, demographics, lifestyle factors, and retinal image–derived… See the full description on the dataset page: https://huggingface.co/datasets/gida111/DiabetesDeepInsight-CSV.nhanes-dataset-diabetes-classified-v3diabetes-readmissionPort of the diabetes-readmission dataset from UCI (link here). See details there and use carefully.
Basic preprocessing done by the imodels team in this notebook.
The target is the binary outcome readmitted.
Sample usage
Load the data:
from datasets import load_dataset
dataset = load_dataset("imodels/diabetes-readmission")
df = pd.DataFrame(dataset['train'])
X = df.drop(columns=['readmitted'])
y = df['readmitted'].values
Fit a model:
import imodels
import numpy as np
m =… See the full description on the dataset page: https://huggingface.co/datasets/aai540-group3/diabetes-readmission.synthetic-diabetes-hypertension-NCD-screening-WHO-HEARTS
Synthetic Diabetes & Hypertension NCD Screening Dataset (Adults 18-80) | Africa (Electric Sheep Africa metadata inventory)
Size category: 10K<n<100K - Formats: csv - Sector: health - Engineered by Electric Sheep Africa
TL;DR
This dataset is part of the Electric Sheep Africa catalog on Hugging Face. It is indexed for African data discovery with standardized metadata, loading guidance, provenance notes, and analyst-oriented context.
What This Dataset… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/synthetic-diabetes-hypertension-NCD-screening-WHO-HEARTS.african-diabetes-dataset
African Diabetes Synthetic Dataset
Type 2 Diabetes & Gestational Diabetes Prediction
Version: 1.0Release Date: November 2024Context: Sub-Saharan Africa (24M adults with diabetes, projected 55M by 2045)License: Research & Educational Use
Abstract
We present synthetic datasets for Type 2 Diabetes Mellitus (T2DM) and Gestational Diabetes Mellitus (GDM) modeling in Sub-Saharan Africa, addressing the rising NCD epidemic. With diabetes prevalence of 4-7% (urban:… See the full description on the dataset page: https://huggingface.co/datasets/Ssentongo/african-diabetes-dataset.diabetes_instruct_temp_v3asia-who-prevalence-of-diabetes-enceagestd
Prevalence of diabetes, age-standardized | Asia (WHO GHO)
🌏 9,504 observations · 48 Asia countries · 1990–2022 · Repackaged by Electric Sheep Asia
TL;DR
This dataset contains 9,504 observations of Prevalence of diabetes, age-standardized data across 48 Asia countries, spanning 1990–2022, covering 1 distinct indicators.
About the source
Source: WHO Global Health Observatory
Publisher: World Health Organization
License: cc-by-4.0
Topic:… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepasia/asia-who-prevalence-of-diabetes-enceagestd.Synthetic-Diabetes-Dataset
⛽ Synthetic Diabetes Data
This dataset contains various features that are helpful for predicting if a patient has diabetes. The data is compiled into a single csv file for analysis and model training.
📁 Dataset Description
Contains synthetic data on based on synthetic patient information.
Columns
The dataset includes the following columns:
abdominal_obesity (int)
alcohol_consumption_per_week (int):
The amount of alcohol consumption per week of the patient.… See the full description on the dataset page: https://huggingface.co/datasets/MaxPrestige/Synthetic-Diabetes-Dataset.diabetes-hypertension-ncd
Diabetes & Hypertension Dual Burden (NCD Screening, Treatment, Complications) | Africa (Electric Sheep Africa metadata inventory)
Size category: 10K<n<100K - Formats: csv - Sector: health - Engineered by Electric Sheep Africa
TL;DR
This dataset is part of the Electric Sheep Africa catalog on Hugging Face. It is indexed for African data discovery with standardized metadata, loading guidance, provenance notes, and analyst-oriented context.
What This… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/diabetes-hypertension-ncd.africa-synth-diabetes-ncd-diabetes-hypertension-all
Synthetic Diabetes & Hypertension NCD Screening Dataset (Adults 18-80) | Africa (Electric Sheep Africa metadata inventory)
Size category: 10K<n<100K - Formats: csv - Sector: health - Engineered by Electric Sheep Africa
TL;DR
This dataset is part of the Electric Sheep Africa catalog on Hugging Face. It is indexed for African data discovery with standardized metadata, loading guidance, provenance notes, and analyst-oriented context.
What This Dataset… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-synth-diabetes-ncd-diabetes-hypertension-all.uci-diabetes-130-us-hospitals
UCI Diabetes 130-US Hospitals, 1999–2008 — source mirror
Real publicly released hospital encounter data, not synthetic data. This is an
unofficial provenance-bearing mirror for statistical analysis and RareBurden
public-data node engineering. It is not a monogenic-diabetes cohort, a country
node deployment, clinical validation or evidence of hospital participation in
RareBurden. The train split is a hosting convention, not a study-design split.
Attribution and rights… See the full description on the dataset page: https://huggingface.co/datasets/SACHEIN19/uci-diabetes-130-us-hospitals.
