Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,37 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
datasets:
|
4 |
+
- internlm/SWE-Fixer-Eval
|
5 |
+
- internlm/SWE-Fixer-Train-110K
|
6 |
+
base_model:
|
7 |
+
- Qwen/Qwen2.5-72B
|
8 |
+
pipeline_tag: text-generation
|
9 |
+
tags:
|
10 |
+
- code
|
11 |
+
---
|
12 |
+
|
13 |
+
# SWE-Fixer: Training Open-Source LLMs for Effective and Efficient GitHub Issue Resolution
|
14 |
+
|
15 |
+
<p align="left">
|
16 |
+
<a href="https://arxiv.org/abs/2501.05040">📃 Paper </a>
|
17 |
+
</p>
|
18 |
+
|
19 |
+
<p align="left">
|
20 |
+
<a href="https://github.com/InternLM/SWE-Fixer" > 🚀 GitHub</a>
|
21 |
+
</p>
|
22 |
+
|
23 |
+
SWE-Fixer is a simple yet effective solution for addressing real-world GitHub issues by training open-source LLMs. It features a streamlined retrieve-then-edit pipeline with two core components: a code file retriever and a code editor.
|
24 |
+
|
25 |
+
This repo holds the **SWE-Fixer-Editor-72B** model, which is finetuned on the Qwen2.5-7B.
|
26 |
+
|
27 |
+
For more information, please visit our [project page](https://github.com/InternLM/SWE-Fixer).
|
28 |
+
|
29 |
+
## 📚 Citation
|
30 |
+
```
|
31 |
+
@article{xie2025swefixer,
|
32 |
+
title={SWE-Fixer: Training Open-Source LLMs for Effective and Efficient GitHub Issue Resolution},
|
33 |
+
author={Xie, Chengxing and Li, Bowen and Gao, Chang and Du, He and Lam, Wai and Zou, Difan and Chen, Kai},
|
34 |
+
journal={arXiv preprint arXiv:2501.05040},
|
35 |
+
year={2025}
|
36 |
+
}
|
37 |
+
```
|