ulyatkch commited on
Commit
90a7b76
·
verified ·
1 Parent(s): e9dfb4c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-regression
5
+ tags:
6
+ - regression
7
+ - tabular
8
+ - student-grades
9
+ - education
10
+ - data-centric-ai
11
+ ---
12
+
13
+ # Student Grades Regression Dataset
14
+
15
+ This dataset contains student grades data for regression tasks. It is designed for demonstrating regression techniques and data quality methods.
16
+
17
+ ## Dataset Description
18
+
19
+ The dataset includes:
20
+ - `train.csv` - Training data with student features and grade labels
21
+ - `test.csv` - Test data for evaluation
22
+
23
+ This is a regression version of the student grades dataset, where the target variable is continuous.
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ import pandas as pd
29
+
30
+ # Load the dataset
31
+ train_data = pd.read_csv("hf://datasets/Cleanlab/student-grades-regression/train.csv")
32
+ test_data = pd.read_csv("hf://datasets/Cleanlab/student-grades-regression/test.csv")
33
+
34
+ print(train_data.head())
35
+ ```
36
+
37
+ ## License
38
+
39
+ MIT License