Initial README
Browse files
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SynthCode: Java Code Analysis Framework
|
| 2 |
+
|
| 3 |
+
<p align="left">
|
| 4 |
+
๐ <a href="https://huggingface.co/papers/yyyy.yyyyy" target="_blank">Paper</a>    |    ๐ <a href="https://synthcode.github.io/" target="_blank">Project Page</a>    |    ๐พ <a href="https://huggingface.co/collections/toolevalxm/synthcode" target="_blank">Released Resources</a>    |    ๐ฆ <a href="https://github.com/xmhtoolathlon/SynthCode-DataHub" target="_blank">Repo</a>
|
| 5 |
+
|
| 6 |
+
We release the raw Java code data for our SynthCode project, derived from the original CodeSearchNet dataset maintained by the GitHub research team.
|
| 7 |
+
|
| 8 |
+
The data format for each entry:
|
| 9 |
+
```
|
| 10 |
+
{
|
| 11 |
+
"code": <the Java source code>,
|
| 12 |
+
"docstring": <documentation string>,
|
| 13 |
+
"func_name": <function name>,
|
| 14 |
+
"repo": <source repository>,
|
| 15 |
+
"path": <file path>,
|
| 16 |
+
"language": "java"
|
| 17 |
+
}
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
This dataset contains high-quality Java methods extracted from open-source repositories on GitHub.
|
| 21 |
+
|
| 22 |
+
*Note: Some entries may have missing docstrings due to filtering criteria applied during data collection.
|