Update README.md
Browse files
README.md
CHANGED
|
@@ -1,36 +1,25 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
license: mit
|
| 4 |
tags:
|
| 5 |
-
- tabular
|
| 6 |
-
-
|
| 7 |
-
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
-
|
| 12 |
-
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
-
#
|
| 16 |
|
| 17 |
-
**
|
| 18 |
-
|
| 19 |
-
**Target column:** `label`
|
| 20 |
|
| 21 |
-
##
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
- Accuracy = 0.9905
|
| 28 |
-
- Weighted F1 = 0.9905
|
| 29 |
-
|
| 30 |
-
- **Additional check (original split):**
|
| 31 |
-
- Accuracy = 1.0000
|
| 32 |
-
- Weighted F1 = 1.0000
|
| 33 |
-
|
| 34 |
-
## Notes
|
| 35 |
-
- Trained with `presets="best_quality"`, `time_limit=300`.
|
| 36 |
-
- AutoGluon ensembles classical ML models and tunes hyperparameters automatically.
|
|
|
|
| 1 |
---
|
| 2 |
+
license: other
|
|
|
|
| 3 |
tags:
|
| 4 |
+
- tabular
|
| 5 |
+
- students
|
| 6 |
+
- sleep
|
| 7 |
+
- regression
|
| 8 |
+
pretty_name: Students Sleep (Original & Augmented)
|
| 9 |
+
task_categories:
|
| 10 |
+
- tabular-regression
|
| 11 |
+
task_ids:
|
| 12 |
+
- regression
|
| 13 |
---
|
| 14 |
|
| 15 |
+
# Students Sleep (Original & Augmented)
|
| 16 |
|
| 17 |
+
**Summary:** Tabular dataset about students with target column `sleep_hours`. Two splits are provided:
|
| 18 |
+
`original` and `augmented`. Each split shares the same schema; the target is `sleep_hours` (numeric).
|
|
|
|
| 19 |
|
| 20 |
+
## Load
|
| 21 |
+
```python
|
| 22 |
+
from datasets import load_dataset
|
| 23 |
+
ds = load_dataset("Iris314/Students_sleep_tabular")
|
| 24 |
+
original = ds["original"]
|
| 25 |
+
augmented = ds["augmented"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|