Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,37 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
tags:
|
8 |
+
- git-commit
|
9 |
+
- multi-label
|
10 |
+
- text
|
11 |
+
- classification
|
12 |
+
size_categories:
|
13 |
+
- n<1K
|
14 |
+
---
|
15 |
+
|
16 |
+
# Commit Classification Dataset
|
17 |
+
|
18 |
+
This dataset is designed for multi-label classification of Git commit messages into predefined categories.
|
19 |
+
|
20 |
+
## Dataset Summary
|
21 |
+
|
22 |
+
This dataset contains:
|
23 |
+
- **Training data**: Commit messages and their corresponding labels for training the model.
|
24 |
+
- **Validation data**: A separate set of messages for tuning and evaluation.
|
25 |
+
- **Testing data**: Unlabeled commit messages for testing the model’s performance.
|
26 |
+
|
27 |
+
The goal of the dataset is to classify each commit message into one or more categories (multi-label classification).
|
28 |
+
|
29 |
+
## Dataset Structure
|
30 |
+
|
31 |
+
### Data Files
|
32 |
+
The dataset consists of the following CSV files:
|
33 |
+
- `training_data.csv`: Contains commit messages for training.
|
34 |
+
- `training_label.csv`: Contains multi-label annotations for the training set.
|
35 |
+
- `validation_data.csv`: Contains commit messages for validation.
|
36 |
+
- `validation_label.csv`: Contains multi-label annotations for the validation set.
|
37 |
+
- `testing_data.csv`: Contains commit messages for testing (without labels).
|