Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
Python & Java AST (Abstract Syntax Tree) and DFG (Data Flow Graph) data used in the paper [GALLa: Graph Aligned Large Language Models for Improved Source Code Understanding](https://arxiv.org/abs/2409.04183), along with node type embeddings (`node_type_embedding.pth`) and code to generate stage 2 instruction data (`instruction-text.ipynb`). Please refer to the paper and [Github repo](https://github.com/codefuse-ai/GALLa) for further details.
|
| 6 |
+
|
| 7 |
+
If you use this dataset, please cite the following paper:
|
| 8 |
+
|
| 9 |
+
```
|
| 10 |
+
@misc{zhang2024gallagraphalignedlarge,
|
| 11 |
+
title={GALLa: Graph Aligned Large Language Models for Improved Source Code Understanding},
|
| 12 |
+
author={Ziyin Zhang and Hang Yu and Shijie Li and Peng Di and Jianguo Li and Rui Wang},
|
| 13 |
+
year={2024},
|
| 14 |
+
eprint={2409.04183},
|
| 15 |
+
archivePrefix={arXiv},
|
| 16 |
+
primaryClass={cs.CL},
|
| 17 |
+
url={https://arxiv.org/abs/2409.04183},
|
| 18 |
+
}
|
| 19 |
+
```
|