Papers › EpiCoder: Encompassing Diversity and Complexity in Code Generation

EpiCoder: Encompassing Diversity and Complexity in Code Generation

8 Jan 2025arXiv:2501.04694archive 2025-07-28

Yaoxiang Wang, Haoling Li, Xin Zhang, Jie Wu, Xiao Liu, Wenxiang Hu, Zhongxin Guo, Yangyu Huang, Ying Xin, Yujiu Yang, Jinsong Su, Qi Chen, Scarlett Li

Effective instruction tuning is indispensable for optimizing code LLMs, aligning model behavior with user expectations and enhancing model performance in real-world applications. However, most existing methods focus on code snippets, which are limited to specific functionalities and rigid structures, restricting the complexity and diversity of the synthesized data. To address these limitations, we introduce a novel feature tree-based synthesis framework inspired by Abstract Syntax Trees (AST). Unlike AST, which captures syntactic structure of code, our framework models semantic relationships between code elements, enabling the generation of more nuanced and diverse data. The feature tree is constructed from raw data and refined iteratively to increase the quantity and diversity of the extracted features. This process enables the identification of more complex patterns and relationships within the code. By sampling subtrees with controlled depth and breadth, our framework allows precise adjustments to the complexity of the generated code, supporting a wide range of tasks from simple function-level operations to intricate multi-file scenarios. We fine-tuned widely-used base models to create the EpiCoder series, achieving state-of-the-art performance at both the function and file levels across multiple benchmarks. Notably, empirical evidence indicates that our approach shows significant potential in synthesizing highly complex repository-level code data. Further analysis elucidates the merits of this approach by rigorously assessing data complexity and diversity through software engineering principles and LLM-as-a-judge method.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2501.04694")

Code

Syntology Ran 0 of 15 code samples harvested from 2 repositories linked to this paper; 15 have no recorded run.

By repository: found in paper text by Syntology: 15 samples from 2 repositories, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

microsoft/EpiCoder found in paper text by SyntologyMIT report
DeepLearnXMU/EpiCoder found in paper text by SyntologyMIT report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

15 samples harvested; 0 ran; 0 honoured the contract we drafted; 15 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

15unverified

Licence: 14 of the 15 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

custom_compare DeepLearnXMU/EpiCoder/extract/extract_frequency_count.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · 874482fd57d4cebe · report
extract_content DeepLearnXMU/EpiCoder/debug/run_test_iter0.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · e3c9ed0f508ba2ea · report
extract_content microsoft/EpiCoder/gen/gen_code.py found in paper text by Syntology unverified MIT (permissive) · d0f9fa36c5d6a449 · report
extract_fields_from_formatted_text DeepLearnXMU/EpiCoder/gen/gen_question.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · fd8dc3b17db50e82 · report
form_feature_explanation DeepLearnXMU/EpiCoder/evol/feature_evol.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · 7237fedbb391f513 · report
get_data_from_file DeepLearnXMU/EpiCoder/extract/extract_features.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · 3d9347bfa4f46252 · report
get_features DeepLearnXMU/EpiCoder/extract/construct_tree.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · e6d8c07fb59f049e · report
get_full_content DeepLearnXMU/EpiCoder/extract/extract_features.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · f46485f691c95440 · report
get_large_files DeepLearnXMU/EpiCoder/utils/clear_code_debug_files.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · 6150c6d6a7ed7b25 · report
get_question DeepLearnXMU/EpiCoder/gen/gen_code.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · 91751933774cda1d · report
get_text DeepLearnXMU/EpiCoder/evol/feature_evol.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · 6e1c2fcd1329e0bc · report
prune_to_top_n DeepLearnXMU/EpiCoder/extract/extract_frequency_count.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · 48e55621bbfcb75f · report
remove_keys DeepLearnXMU/EpiCoder/evol/feature_evol.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · c1811a3b989ac815 · report
shorten_repeated_substrings DeepLearnXMU/EpiCoder/call_api_local/call_api.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · 42f192ac4d7c7b09 · report
sort_feature_frequency DeepLearnXMU/EpiCoder/extract/extract_frequency_count.py found in paper text by Syntology unverified MIT recorded; this copy not marked cleared · pointer only · 993fdd25aaa46031 · report

Tasks

Code GenerationDiversity

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

BASEFocus

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections