CoolFace
Modelpublic

apsora/tabular_autoML_model

sourceHugging Faceotherupdated 1y agoView on Hugging Face
0likes
Model Card

Students Sleep (Original & Augmented)

Summary: Tabular dataset about students with target column sleep_hours. Two splits are provided: original and augmented. Each split shares the same schema; the target is sleep_hours (numeric).

Load

python
from datasets import load_dataset
ds = load_dataset("Iris314/Students_sleep_tabular")
original  = ds["original"]
augmented = ds["augmented"]