CoolFace
Datasetpublic

aai540-group3/diabetes-readmission

Port 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.

sourceHugging Faceupdated 2y agoView on Hugging Face
1likes53downloads
2 commits on main
273bb9f2y ago

init

jonathanagustin
6f3e6162y ago

initial commit

jonathanagustin