ulyatkch commited on
Commit
752094e
·
verified ·
1 Parent(s): 4d5f95d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ tags:
6
+ - tabular
7
+ - student-grades
8
+ - classification
9
+ - data-centric-ai
10
+ ---
11
+
12
+ # Grades Tabular Demo Dataset
13
+
14
+ This dataset contains student grades data for tabular classification tasks.
15
+
16
+ ## Dataset Description
17
+
18
+ A tabular dataset containing student information and their grades, useful for demonstrating data quality techniques on tabular data.
19
+
20
+ ## Usage
21
+
22
+ ```python
23
+ import pandas as pd
24
+
25
+ # Load the dataset
26
+ df = pd.read_csv("hf://datasets/Cleanlab/grades-tabular-demo/grades-tabular-demo.csv")
27
+ print(df.head())
28
+ ```
29
+
30
+ ## License
31
+
32
+ MIT License