Add model card
Browse files
README.md
CHANGED
@@ -1,3 +1,60 @@
|
|
1 |
---
|
|
|
|
|
|
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- code
|
4 |
+
- en
|
5 |
license: apache-2.0
|
6 |
+
tags:
|
7 |
+
- commit_message_generation
|
8 |
+
- code
|
9 |
+
datasets:
|
10 |
+
- saridormi/commit-chronicle
|
11 |
+
pipeline_tag: text2text-generation
|
12 |
---
|
13 |
+
|
14 |
+
# CMG/CMC: CodeReviewer (with history)
|
15 |
+
|
16 |
+
This is the checkpoint for [CodeReviewer](https://huggingface.co/microsoft/codereviewer) model, fine-tuned for the commit message generation (and/or completion) task as part of the paper "From Commit Message Generation to History-Aware Commit Message Completion", ASE 2023.
|
17 |
+
|
18 |
+
## Details
|
19 |
+
|
20 |
+
> π For further details, please refer to:
|
21 |
+
> * **Paper**: TODO
|
22 |
+
> * **Repository**: [https://github.com/JetBrains-Research/commit_message_generation](https://github.com/JetBrains-Research/commit_message_generation)
|
23 |
+
|
24 |
+
|
25 |
+
* This model is based on [`microsoft/codereviewer`](https://huggingface.co/microsoft/codereviewer) checkpoint from π [Automating Code Review Activities by Large-Scale Pre-training](https://arxiv.org/abs/2203.09095).
|
26 |
+
* This model was trained with commit diffs as well as WITH commit message history.
|
27 |
+
* This model was trained on the CommitChronicle dataset introduced in our study.
|
28 |
+
* Our hyperparameter setting is mostly based on π [RACE: Retrieval-augmented Commit Message Generation](https://aclanthology.org/2022.emnlp-main.372/).
|
29 |
+
The exact values are provided below:
|
30 |
+
|
31 |
+
| Hyperparameter | Value |
|
32 |
+
|:--------------------------:|:-------------------------------------------------------------------------------------------------------------------------------------------:|
|
33 |
+
| Encoder context max length | 512 |
|
34 |
+
| Decoder context max length | 512 |
|
35 |
+
| Number of training epochs | 1 |
|
36 |
+
| Batch size | 32 |
|
37 |
+
| Optimizer | [AdamW](https://pytorch.org/docs/1.12/generated/torch.optim.AdamW.html?highlight=adamw#torch.optim.AdamW) |
|
38 |
+
| Warmup | [Linear](https://huggingface.co/docs/transformers/v4.21.3/en/main_classes/optimizer_schedules#transformers.get_linear_schedule_with_warmup) |
|
39 |
+
| Number of warmup steps | 100 |
|
40 |
+
| Peak learning rate | 0.00002 |
|
41 |
+
|
42 |
+
|
43 |
+
## Available checkpoints
|
44 |
+
|
45 |
+
We also released checkpoints for other models fine-tuned as part of our study.
|
46 |
+
|
47 |
+
* Models trained *with commit message history*:
|
48 |
+
* **CodeT5:** π€ [`JetBrains-Research/cmg-codet5-with-history`](https://huggingface.co/JetBrains-Research/cmg-codet5-with-history)
|
49 |
+
* **CodeReviewer:** π€ [`JetBrains-Research/cmg-codereviewer-with-history`](https://huggingface.co/JetBrains-Research/cmg-codereviewer-with-history) (this model)
|
50 |
+
* **RACE:** π€ [`JetBrains-Research/cmg-race-with-history`](https://huggingface.co/JetBrains-Research/cmg-race-with-history)
|
51 |
+
* Models trained *without commit message history*:
|
52 |
+
* **CodeT5:** π€ [`JetBrains-Research/cmg-codet5-without-history`](https://huggingface.co/JetBrains-Research/cmg-codet5-without-history)
|
53 |
+
* **CodeReviewer:** π€ [`JetBrains-Research/cmg-codereviewer-without-history`](https://huggingface.co/JetBrains-Research/cmg-codereviewer-without-history)
|
54 |
+
* **RACE:** π€ [`JetBrains-Research/cmg-race-without-history`](https://huggingface.co/JetBrains-Research/cmg-race-without-history)
|
55 |
+
|
56 |
+
## Citation
|
57 |
+
|
58 |
+
```
|
59 |
+
TODO
|
60 |
+
```
|