File size: 7,972 Bytes
aff5df5 3f132f9 aff5df5 8885705 27f0648 aff5df5 3f132f9 9948596 aff5df5 3f132f9 aff5df5 3f132f9 9948596 27f0648 aff5df5 8885705 9660c7f aff5df5 a02d202 8885705 40b9782 3f132f9 40b9782 9f59020 58dcef8 40b9782 3f132f9 40b9782 3f132f9 40b9782 3f132f9 19c2217 8885705 3f132f9 40b9782 3f132f9 40b9782 3f132f9 8885705 3f132f9 40b9782 3f132f9 40b9782 3f132f9 40b9782 8885705 40b9782 8885705 40b9782 8885705 40b9782 3f132f9 40b9782 58dcef8 40b9782 58dcef8 40b9782 3f132f9 40b9782 3f132f9 40b9782 8885705 a02d202 40b9782 a02d202 8885705 40b9782 3f132f9 40b9782 3f132f9 |
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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
---
dataset_info:
- config_name: default
features:
- name: hash
dtype: string
- name: repo
dtype: string
- name: date
dtype: string
- name: license
dtype: string
- name: message
dtype: string
- name: mods
list:
- name: change_type
dtype: string
- name: old_path
dtype: string
- name: new_path
dtype: string
- name: diff
dtype: string
splits:
- name: test
num_examples: 163
- config_name: labels
features:
- name: hash
dtype: string
- name: repo
dtype: string
- name: date
dtype: string
- name: license
dtype: string
- name: message
dtype: string
- name: label
dtype: int8
- name: comment
dtype: string
splits:
- name: test
num_bytes: 272359
num_examples: 858
configs:
- config_name: default
data_files:
- split: test
path: commitchronicle-py-long/test-*
- config_name: labels
data_files:
- split: test
path: commitchronicle-py-long-labels/test-*
license: apache-2.0
---
# ๐๏ธ Long Code Arena (Commit message generation)
This is the benchmark for the Commit message generation task as part of the
๐๏ธ [Long Code Arena benchmark](https://huggingface.co/spaces/JetBrains-Research/long-code-arena).
The dataset is a manually curated subset of the Python test set from the ๐ค [CommitChronicle dataset](https://huggingface.co/datasets/JetBrains-Research/commit-chronicle), tailored for larger commits.
All the repositories are published under permissive licenses (MIT, Apache-2.0, and BSD-3-Clause). The datapoints can be removed upon request.
## How-to
```py
from datasets import load_dataset
dataset = load_dataset("JetBrains-Research/lca-cmg", split="test")
```
Note that all the data we have is considered to be in the test split.
**Note.** Working with git repositories
under [`repos`](https://huggingface.co/datasets/JetBrains-Research/lca-cmg/tree/main/repos) directory is not supported
via ๐ค Datasets. See [Git Repositories](#git-repositories) section for more details.
## About
### Overview
In total, there are 163 commits from 34 repositories. For length statistics, refer to the [notebook](https://github.com/JetBrains-Research/lca-baselines/blob/main/commit_message_generation/notebooks/cmg_data_stats.ipynb) in our repository.
### Dataset Structure
The dataset contains two kinds of data: data about each commit (under [`commitchronicle-py-long`](https://huggingface.co/datasets/JetBrains-Research/lca-commit-message-generation/tree/main/commitchronicle-py-long) folder) and compressed git repositories (under [`repos`](https://huggingface.co/datasets/JetBrains-Research/lca-commit-message-generation/tree/main/repos) folder).
#### Commits
Each example has the following fields:
| **Field** | **Description** |
|:---------:|:-----------------------------------------:|
| `repo` | Commit repository. |
| `hash` | Commit hash. |
| `date` | Commit date. |
| `license` | Commit repository's license. |
| `message` | Commit message. |
| `mods` | List of file modifications from a commit. |
Each file modification has the following fields:
| **Field** | **Description** |
|:-------------:|:-------------------------------------------------------------------------------------------------:|
| `change_type` | Type of change to current file. One of: `ADD`, `COPY`, `RENAME`, `DELETE`, `MODIFY` or `UNKNOWN`. |
| `old_path` | Path to file before change (might be empty). |
| `new_path` | Path to file after change (might be empty). |
| `diff` | `git diff` for current file. |
Data point example:
```json
{'hash': 'b76ed0db81b3123ede5dc5e5f1bddf36336f3722',
'repo': 'apache/libcloud',
'date': '05.03.2022 17:52:34',
'license': 'Apache License 2.0',
'message': 'Add tests which verify that all OpenStack driver can be instantiated\nwith all the supported auth versions.\nNOTE: Those tests will fail right now due to the regressions being\nintroduced recently which breaks auth for some versions.',
'mods': [{'change_type': 'MODIFY',
'new_path': 'libcloud/test/compute/test_openstack.py',
'old_path': 'libcloud/test/compute/test_openstack.py',
'diff': '@@ -39,6 +39,7 @@ from libcloud.utils.py3 import u\n<...>'}],
}
```
#### Git Repositories
The compressed Git repositories for all the commits in this benchmark are stored under [`repos`](https://huggingface.co/datasets/JetBrains-Research/lca-cmg/tree/main/repos) directory.
Working with git repositories under [`repos`](https://huggingface.co/datasets/JetBrains-Research/lca-cmg/tree/main/repos) directory is not supported directly via ๐ค Datasets.
You can use [`huggingface_hub`](https://huggingface.co/docs/huggingface_hub/index) package to download the repositories. The sample code is provided below:
```py
import tarfile
from huggingface_hub import list_repo_tree, hf_hub_download
data_dir = "..." # replace with a path to where you want to store repositories locally
for repo_file in list_repo_tree("JetBrains-Research/lca-commit-message-generation", "repos", repo_type="dataset"):
file_path = hf_hub_download(
repo_id="JetBrains-Research/lca-commit-message-generation",
filename=repo_file.path,
repo_type="dataset",
local_dir=data_dir,
)
with tarfile.open(file_path, "r:gz") as tar:
tar.extractall(path=os.path.join(data_dir, "extracted_repos"))
```
For convenience, we also provide a full list of files in [`paths.json`](https://huggingface.co/datasets/JetBrains-Research/lca-cmg/blob/main/paths.json).
After you download and extract the repositories, you can work with each repository either via Git or via Python libraries like [GitPython](https://github.com/gitpython-developers/GitPython) or [PyDriller](https://github.com/ishepard/pydriller).
# ๐ท๏ธ Extra: commit labels
To facilitate further research, we additionally provide the manual labels for all the 858 commits that made it through initial filtering. The final version of the dataset described above consists of commits labeled either 4 or 5.
## How-to
```py
from datasets import load_dataset
dataset = load_dataset("JetBrains-Research/lca-cmg", "labels", split="test")
```
Note that all the data we have is considered to be in the test split.
## About
### Dataset Structure
Each example has the following fields:
| **Field** | **Description** |
|:---------:|:------------------------------------------------------------------:|
| `repo` | Commit repository. |
| `hash` | Commit hash. |
| `date` | Commit date. |
| `license` | Commit repository's license. |
| `message` | Commit message. |
| `label` | Label of the current commit as a target for CMG task. |
| `comment` | Comment for a label for the current commit (optional, might be empty). |
Labels are in 1โ5 scale, where:
* 1 โ strong no
* 2 โ weak no
* 3 โ unsure
* 4 โ weak yes
* 5 โ strong yes
Data point example:
```json
{'hash': '1559a4c686ddc2947fc3606e1c4279062cc9480f',
'repo': 'appscale/gts',
'date': '15.07.2018 21:00:39',
'license': 'Apache License 2.0',
'message': 'Add auto_id_policy and logs_path flags\n\nThese changes were introduced in the 1.7.5 SDK.',
'label': 1,
'comment': 'no way to know the version'}
``` |