Datasets:
File size: 4,542 Bytes
d4ebe5f 2bd9723 76341f7 2bd9723 d4ebe5f 2bd9723 | 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 | ---
dataset_info:
features:
- name: diff
dtype: string
- name: message
dtype: string
- name: reasoning_trace
dtype: 'null'
- name: repo
dtype: string
- name: license
dtype: string
- name: language
dtype: string
splits:
- name: train
num_bytes: 57994147
num_examples: 52173
- name: validation
num_bytes: 3248866
num_examples: 2898
- name: test
num_bytes: 3352948
num_examples: 2898
download_size: 29457578
dataset_size: 64595961
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
- split: test
path: data/test-*
tags:
- code
- commit-messages
- conventional-commits
- git
- diffs
- source-code
- fine-tuning
size_categories:
- 10K<n<100K
task_categories:
- text-generation
license: other
language:
- en
- code
---
# Committed — Conventional Commits dataset
Filtered (diff -> Conventional Commits message) pairs derived from
[CommitChronicle](https://huggingface.co/datasets/JetBrains-Research/commit-chronicle),
for fine-tuning small models to write commit messages from a diff. Built by the
[Committed](https://github.com/marzoukbaig14/Committed) project.
## Schema
| Field | Type | Notes |
|---|---|---|
| `diff` | string | The code diff for a single-file change. |
| `message` | string | Normalized Conventional Commits subject line (the training target). |
| `reasoning_trace` | string \| null | Reserved for v2 (reasoning distillation); always `null` here. |
| `repo` | string | Source repository (provenance). |
| `license` | string | Source repository's license (provenance). |
| `language` | string | Programming language, identified by file extension. |
## Composition
| Split | Rows |
|---|---|
| train | 52,173 |
| validation | 2,898 |
| test | 2,898 |
**Languages** (identified by file extension):
| Language | Rows | % |
|---|---|---|
| TypeScript | 6,000 | 10.4% |
| JavaScript | 6,000 | 10.4% |
| Python | 6,000 | 10.4% |
| Go | 6,000 | 10.4% |
| Java | 6,000 | 10.4% |
| Rust | 6,000 | 10.4% |
| Shell | 4,215 | 7.3% |
| C++ | 3,753 | 6.5% |
| PHP | 2,708 | 4.7% |
| C | 2,407 | 4.2% |
| C# | 2,146 | 3.7% |
| Swift | 2,129 | 3.7% |
| Kotlin | 1,812 | 3.1% |
| Dart | 1,370 | 2.4% |
| Ruby | 750 | 1.3% |
| Elixir | 679 | 1.2% |
**Commit types:**
| Type | Rows | % |
|---|---|---|
| fix | 28,366 | 48.9% |
| feat | 7,706 | 13.3% |
| chore | 5,959 | 10.3% |
| test | 5,214 | 9.0% |
| refactor | 5,055 | 8.7% |
| docs | 2,482 | 4.3% |
| ci | 1,336 | 2.3% |
| style | 868 | 1.5% |
| build | 562 | 1.0% |
| perf | 421 | 0.7% |
## How it was built
Starting from CommitChronicle, a commit is kept only if:
- the subject line matches a relaxed Conventional Commits pattern
(`feat|fix|refactor|docs|test|chore|perf|style|build|ci`, optional scope,
optional breaking `!`), then normalized (lowercase type, `doc` -> `docs`, strip
`!`, subject line only, trim, strip one trailing period);
- the subject is 5-200 characters;
- it touches exactly one file, and that file is a recognized **code** file by
extension (the per-repo language attribute is ignored because it mislabels
polyglot repos);
- it is not a merge, revert, or bot commit (e.g. Dependabot, detected by message
pattern);
- the diff is at most 2048 tokens (Qwen3-1.7B tokenizer); over-cap diffs are
dropped, not truncated.
The pool is then balanced (each language capped to 6,000 rows, languages with
fewer than 500 rows dropped) and split 90/5/5 train/validation/test, **stratified
by commit type** so each split preserves the type distribution.
## Provenance & license
Each row keeps its source `repo` and `license`. CommitChronicle aggregates
permissively-licensed repositories (MIT, Apache-2.0, BSD-3-Clause); this
derivative is redistributed under those source terms. Please cite CommitChronicle
and its paper:
> Eliseeva et al., *From Commit Message Generation to History-Aware Commit Message Generation*, arXiv:2308.07655.
## Known limitations
- The source scan covered ~85-90% of CommitChronicle's train split, not a full
pass, so the language mix is near-complete rather than exhaustive.
- Commit types are imbalanced (`fix` is the plurality); a trivial
always-predict-`fix` baseline scores around its share, so read prefix-accuracy
against that floor.
- Description casing is not normalized (acronyms are preserved) — an accepted v1
limitation.
- No automated scrubbing of secrets/PII; the sensitive-data caveat from
CommitChronicle is carried forward.
|