apsora commited on
Commit
5b5c05b
·
verified ·
1 Parent(s): 644bdd5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -30
README.md CHANGED
@@ -1,36 +1,25 @@
1
  ---
2
- library_name: autogluon
3
- license: mit
4
  tags:
5
- - tabular-classification
6
- - automl
7
- - autogluon
8
- datasets:
9
- - Iris314/Youtube_music_comments
10
- metrics:
11
- - accuracy
12
- - f1
 
13
  ---
14
 
15
- # Tabular AutoML (AutoGluon)
16
 
17
- **Task:** Classification
18
- **Dataset:** `Iris314/Youtube_music_comments` (classmate HW1 dataset)
19
- **Target column:** `label`
20
 
21
- ## Best Model
22
- - **Name:** `WeightedEnsemble_L2`
23
- - **Hyperparameters:** See below (AutoGluon model_hyperparams for best model)
24
-
25
- ## Results
26
- - **Hold-out (same distribution as training):**
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"]