File size: 824 Bytes
46f373f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
license: mit
task_categories:
- text-classification
tags:
- multilabel-classification
- student-grades
- data-centric-ai
---

# Multilabel Datasets

This dataset contains multilabel classification data for student grades.

## Dataset Description

The dataset includes:
- `student-grades-multilabel.csv` - Student grades with multilabel annotations
- `student-grades-multilabel-v2.csv` - Version 2 of the multilabel dataset
- `student-grades-one-hot-encoded.csv` - One-hot encoded version

## Usage

```python
import pandas as pd
from huggingface_hub import hf_hub_download

# Download a specific file
file_path = hf_hub_download(
    repo_id="Cleanlab/multilabel-datasets",
    filename="student-grades-multilabel.csv",
    repo_type="dataset"
)
df = pd.read_csv(file_path)
print(df.head())
```

## License

MIT License