Add dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
pretty_name: Code2LoRA-Static anchor (evolution track)
|
| 4 |
+
tags: [code, assertion-completion, repository-level]
|
| 5 |
+
configs:
|
| 6 |
+
- config_name: commits
|
| 7 |
+
data_files:
|
| 8 |
+
- {split: train, path: commits/train.parquet}
|
| 9 |
+
- {split: ir_val, path: commits/ir_val.parquet}
|
| 10 |
+
- {split: ir_test, path: commits/ir_test.parquet}
|
| 11 |
+
- {split: cr_val, path: commits/cr_val.parquet}
|
| 12 |
+
- {split: cr_test, path: commits/cr_test.parquet}
|
| 13 |
+
- config_name: qna
|
| 14 |
+
data_files:
|
| 15 |
+
- {split: train, path: qna/train.parquet}
|
| 16 |
+
- {split: cr_val, path: qna/cr_val.parquet}
|
| 17 |
+
- {split: cr_test, path: qna/cr_test.parquet}
|
| 18 |
+
- {split: ir_val, path: qna/ir_val.parquet}
|
| 19 |
+
- {split: ir_test, path: qna/ir_test.parquet}
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# Code2LoRA-Static (anchor) — evolution track
|
| 23 |
+
|
| 24 |
+
The direct-projection **Code2LoRA-Static** variant reported in the paper's
|
| 25 |
+
evolution-track / per-commit results: one anchor snapshot per repository
|
| 26 |
+
with a 2048-d `repo_state_embedding`, no GRU rollout. It shares the
|
| 27 |
+
evolution track's capped eval suites with `code2lora/code2lora-evo`.
|
| 28 |
+
|
| 29 |
+
| config | split | rows | role |
|
| 30 |
+
|---|---|---:|---|
|
| 31 |
+
| commits | train | 400 | anchor commit repo-state embeddings |
|
| 32 |
+
| commits | ir_val / ir_test | 5,710 / 6,179 | per-commit repo-state (eval) |
|
| 33 |
+
| commits | cr_val / cr_test | 8,614 / 6,618 | per-commit repo-state (eval) |
|
| 34 |
+
| qna | train | 44,149 | anchor training QnAs (`Code2LoRA-Static`) |
|
| 35 |
+
| qna | cr_val / cr_test | 58,944 / 44,732 | capped eval (`<=8`/commit) |
|
| 36 |
+
| qna | ir_val / ir_test | 38,783 / 42,061 | capped eval |
|
| 37 |
+
|
| 38 |
+
```python
|
| 39 |
+
from datasets import load_dataset
|
| 40 |
+
commits = load_dataset("code2lora/code2lora-static-anchor", "commits")
|
| 41 |
+
qna = load_dataset("code2lora/code2lora-static-anchor", "qna")
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
Companion datasets: `code2lora/code2lora-static`,
|
| 45 |
+
`code2lora/code2lora-evo`, `code2lora/repopeftbench-ood`.
|