FudanSELab/CodeGen4Libs_RetrievalCodeLib
Dataset Card for FudanSELab CodeGen4Libs Code Retrieval Library Dataset Summary This dataset is the code retrieval library used in the ASE2023 paper titled "CodeGen4Libs: A Two-stage Approach for Library-oriented Code Generation". Additional Information Citation Information @inproceedings{ase2023codegen4libs, author = {Mingwei Liu and Tianyong Yang and Yiling Lou and Xueying Du and Ying Wang and and Xin Peng}, title =… See the full description on the dataset page: https://huggingface.co/datasets/FudanSELab/CodeGen4Libs_RetrievalCodeLib.
1214
1---2license: mit3configs:4- config_name: default5 data_files:6 - split: train7 path: data/train-*8dataset_info:9 features:10 - name: method11 dtype: string12 - name: clean_method13 dtype: string14 - name: doc15 dtype: string16 - name: comment17 dtype: string18 - name: method_name19 dtype: string20 - name: extra21 struct:22 - name: repo_name23 dtype: string24 - name: path25 dtype: string26 - name: license27 dtype: string28 - name: size29 dtype: int6430 - name: imports31 sequence: string32 - name: imports_info33 dtype: string34 - name: cluster_imports_info35 dtype: string36 - name: libraries37 sequence: string38 - name: libraries_info39 dtype: string40 - name: id41 dtype: int6442 splits:43 - name: train44 num_bytes: 537303426945 num_examples: 291658246 download_size: 249296268247 dataset_size: 537303426948tags:49- code-generation50pretty_name: 'CodeGen4Libs '51size_categories:52- 1M<n<10M53---54 55# Dataset Card for FudanSELab CodeGen4Libs Code Retrieval Library56 57## Dataset Description58 59- **Repository:** [GitHub Repository](https://github.com/FudanSELab/codegen4libs)60- **Paper:** [CodeGen4Libs: A Two-stage Approach for Library-oriented Code Generation](https://mingwei-liu.github.io/publication/2023-08-18-ase-CodeGen4Libs)61 62### Dataset Summary63 64This dataset is the code retrieval library used in the ASE2023 paper titled ["CodeGen4Libs: A Two-stage Approach for Library-oriented Code Generation"](https://mingwei-liu.github.io/publication/2023-08-18-ase-CodeGen4Libs).65 66## Additional Information67### Citation Information68```69@inproceedings{ase2023codegen4libs,70 author = {Mingwei Liu and Tianyong Yang and Yiling Lou and Xueying Du and Ying Wang and and Xin Peng},71 title = {{CodeGen4Libs}: A Two-stage Approach for Library-oriented Code Generation},72 booktitle = {38th {IEEE/ACM} International Conference on Automated Software Engineering,73 {ASE} 2023, Kirchberg, Luxembourg, September 11-15, 2023},74 pages = {0--0},75 publisher = {{IEEE}},76 year = {2023},77}78```