ulyatkch commited on
Commit
46f373f
·
verified ·
1 Parent(s): 8c860ff

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ tags:
6
+ - multilabel-classification
7
+ - student-grades
8
+ - data-centric-ai
9
+ ---
10
+
11
+ # Multilabel Datasets
12
+
13
+ This dataset contains multilabel classification data for student grades.
14
+
15
+ ## Dataset Description
16
+
17
+ The dataset includes:
18
+ - `student-grades-multilabel.csv` - Student grades with multilabel annotations
19
+ - `student-grades-multilabel-v2.csv` - Version 2 of the multilabel dataset
20
+ - `student-grades-one-hot-encoded.csv` - One-hot encoded version
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ import pandas as pd
26
+ from huggingface_hub import hf_hub_download
27
+
28
+ # Download a specific file
29
+ file_path = hf_hub_download(
30
+ repo_id="Cleanlab/multilabel-datasets",
31
+ filename="student-grades-multilabel.csv",
32
+ repo_type="dataset"
33
+ )
34
+ df = pd.read_csv(file_path)
35
+ print(df.head())
36
+ ```
37
+
38
+ ## License
39
+
40
+ MIT License