ulyatkch commited on
Commit
74a31eb
·
verified ·
1 Parent(s): dc578cb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ tags:
6
+ - tabular
7
+ - classification
8
+ - student-grades
9
+ - label-errors
10
+ - noisy-labels
11
+ - data-centric-ai
12
+ ---
13
+
14
+ # Student Grades Demo Dataset
15
+
16
+ This dataset contains student grades data with both true labels and noisy (corrupted) labels.
17
+
18
+ ## Dataset Description
19
+
20
+ The dataset includes:
21
+ - Student exam scores (exam_1, exam_2, exam_3)
22
+ - Notes field
23
+ - True letter grades (`letter_grade`)
24
+ - Noisy/corrupted letter grades (`noisy_letter_grade`)
25
+
26
+ This is useful for demonstrating and validating label error detection methods.
27
+
28
+ ## Usage
29
+
30
+ ```python
31
+ import pandas as pd
32
+
33
+ # Load the dataset
34
+ df = pd.read_csv("hf://datasets/Cleanlab/student-grades-demo/student-grades-demo.csv")
35
+ print(df.head())
36
+
37
+ # Find rows where labels were corrupted
38
+ import numpy as np
39
+ true_errors = np.where(df["letter_grade"] != df["noisy_letter_grade"])[0]
40
+ print(f"Number of label errors: {len(true_errors)}")
41
+ ```
42
+
43
+ ## License
44
+
45
+ MIT License