| --- |
| license: other |
| tags: |
| - tabular |
| - students |
| - sleep |
| - regression |
| pretty_name: Students Sleep (Original & Augmented) |
| task_categories: |
| - tabular-regression |
| task_ids: |
| - regression |
| --- |
| |
| # 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"] |
| |