toolevalxm commited on
Commit
adcaa11
ยท
verified ยท
1 Parent(s): afca2a1

Initial README

Browse files
Files changed (1) hide show
  1. README.md +22 -0
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> &nbsp&nbsp | &nbsp&nbsp ๐ŸŒ <a href="https://synthcode.github.io/" target="_blank">Project Page</a> &nbsp&nbsp | &nbsp&nbsp ๐Ÿ’พ <a href="https://huggingface.co/collections/toolevalxm/synthcode" target="_blank">Released Resources</a> &nbsp&nbsp | &nbsp&nbsp ๐Ÿ“ฆ <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.