File size: 2,911 Bytes
c9eb547
 
 
 
 
 
e681521
c9eb547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f6ea407
 
eb2873d
c9eb547
 
 
 
 
 
 
 
 
 
 
 
 
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
license: other
language: 
- code
- en
task_categories:
- text-classification
tags:
- code
- commit_message_generation
configs:
- config_name: default
  data_files:
  - split: test
    path: data.jsonl
---

# Commit Message Quality dataset

This is the dataset for commit message quality classification, used during processing of [Commit Message Generation dataset](https://huggingface.co/datasets/JetBrains-Research/lca-commit-message-generation) from
🏟️ [Long Code Arena benchmark](https://huggingface.co/spaces/JetBrains-Research/long-code-arena).

This is a cleaned and relabeled version of the [dataset](https://zenodo.org/records/7042943#.YxG_ROzMLdo) from 📜 ["Commit Message Matters: Investigating Impact and Evolution of Commit Message Quality", ICSE'23](https://ieeexplore.ieee.org/abstract/document/10172825). We drop "Neither Why nor What" examples, clean all the external references (URLs, issues/PR references) from messages and manually label each sample with the goal of training a binary commit message quality classifier for data filtering in mind.

## How-to

Load the data via [`load_dataset`](https://huggingface.co/docs/datasets/v2.14.3/en/package_reference/loading_methods#datasets.load_dataset):

    ```
    from datasets import load_dataset

    dataset = load_dataset("saridormi/commit-message-quality", split="test")
    ```

   Note that all the data we have is considered to be in the test split.


## Dataset Structure

Each example has the following fields:

| **Field**            | **Description**                                                            |
|:---------------------|:---------------------------------------------------------------------------|
| `url`                | Link to commit on GitHub.                                                  |
| `original_message`   | Commit message as it was in the original dataset.                          |
| `message`            | Commit message cleaned from external references.                           |
| `original_label`     | Commit message label as it was in the original dataset (`Why and What`/`No Why`/`No What`). |
| `is_good`            | Whether the commit message serves as a good example of a *high quality* commit message (boolean). |
| `is_bad`             | Whether the commit message serves as a good example of a *low quality* commit message (boolean). |
| `binary_label`       | Commit message label: `1` for *high quality* messages, `0` for *low quality* messages, `null` for messages not recommended to consider for classifier training. |

Data point example:

```
{"url":"https://github.com/spring-projects/spring-boot/commit/7080500db9ecf1cf78ad23503280c713bb6e8649",
 "original_message":"Upgrade to Commons Lang3 3.6 \n  \n Closes gh-9661",
 "message":"Upgrade to Commons Lang3 3.6",
 "original_label":"Why and What",
 "is_good": False,
 "is_bad": True,
 "binary_label":0.0,
}
```