saridormi commited on
Commit
b64b819
β€’
1 Parent(s): a455002

Add model card

Browse files
Files changed (1) hide show
  1. README.md +57 -0
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
+ - JetBrains-Research/commit-chronicle
11
  ---
12
+
13
+ # CMG/CMC: RACE (with history)
14
+
15
+ This is the checkpoint for [RACE](https://aclanthology.org/2022.emnlp-main.372.pdf) 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.
16
+
17
+ ## Details
18
+
19
+ > πŸ” For further details, please refer to:
20
+ > * **Paper**: TODO
21
+ > * **Repository**: [https://github.com/JetBrains-Research/commit_message_generation](https://github.com/JetBrains-Research/commit_message_generation)
22
+
23
+
24
+ * This model is based on the fine-tuned CodeT5 checkpoint [`JetBrains-Research/cmg-codet5-with-history`](https://huggingface.co/JetBrains-Research/cmg-codet5-with-history) and uses RACE architecture introduced in πŸ“œ [RACE: Retrieval-Augmented Commit Message Generation](https://aclanthology.org/2022.emnlp-main.372.pdf).
25
+ * Note: Requires a custom model class. Check [our implementation](https://github.com/JetBrains-Research/commit_message_generation/blob/appendix_cmg/src/model/configurations/utils/race.py) or [the replication package](https://github.com/DeepSoftwareAnalytics/RACE) provided by RACE authors.
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)
50
+ * **RACE:** πŸ€— [`JetBrains-Research/cmg-race-with-history`](https://huggingface.co/JetBrains-Research/cmg-race-with-history) (this model)
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
+ ```