mstz commited on
Commit
da7df0c
·
1 Parent(s): 01590f9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -5
README.md CHANGED
@@ -19,11 +19,19 @@ configs:
19
  # Student performance
20
  The [Student performance dataset](https://www.kaggle.com/datasets/ulrikthygepedersen/student_performances) is cool.
21
 
22
- # Configurations and tasks
23
- - `encoding`, encoding dictionaries mapping binary and ordinal features to their value;
24
- - `math` binary classification: has the student passed the math exam?
25
- - `writing` binary classification: has the student passed the writing exam?
26
- - `reading` binary classification: has the student passed the reading exam?
 
 
 
 
 
 
 
 
27
 
28
  # Features
29
  |**Feature** |**Type** |
 
19
  # Student performance
20
  The [Student performance dataset](https://www.kaggle.com/datasets/ulrikthygepedersen/student_performances) is cool.
21
 
22
+ | **Configuration** | **Task** | **Description** |
23
+ |-------------------|---------------------------|-----------------------------------------------------------------|
24
+ | encoding | | Encoding dictionary showing original values of encoded features.|
25
+ | math | Binary classification | Has the student passed the math exam? |
26
+ | writing | Binary classification | Has the student passed the writing exam? |
27
+ | reading | Binary classification | Has the student passed the reading exam? |
28
+
29
+ # Usage
30
+ ```python
31
+ from datasets import load_dataset
32
+
33
+ dataset = load_dataset("mstz/student_performance", "math")["train"]
34
+ ```
35
 
36
  # Features
37
  |**Feature** |**Type** |