4 Matching Annotations
- Last 7 days
-
www.semanticscholar.org www.semanticscholar.org
-
To this end, we develop a novel ASE method namedRepoUnderstander by guiding agents to comprehensively under-stand the whole repositories. Specifically, we first condense thecritical information of the whole repository into the repositoryknowledge graph in a top-to-down mode to decrease the complex-ity of repository. Subsequently, we empower the agents the abilityof understanding whole repository by proposing a Monte Carlotree search based repository exploration strategy. In addition, tobetter utilize the repository-level knowledge, we guide the agents tosummarize, analyze, and plan. Then, they can manipulate the toolsto dynamically acquire information and generate the patches tosolve the real-world GitHub issues.
论文提出了一种名为RepoUnderstander的新颖方法,该方法指导代理通过以下几个步骤来全面理解整个代码仓库:
- 构建代码仓库知识图谱:通过自上而下的方式将整个仓库的关键信息压缩成知识图谱,以降低仓库的复杂性。
- 基于蒙特卡洛树搜索的仓库探索策略:赋予代理理解整个仓库的能力,通过模拟多种路径并评估它们的奖励分数,逐步缩小搜索空间,引导代理关注最相关的区域。
- 信息利用与补丁生成:指导代理总结、分析和规划,然后操作工具动态获取信息并生成解决现实世界GitHub问题的补丁。
-
- Oct 2024
-
www.semanticscholar.org www.semanticscholar.org
-
To identify the essential code elements needed to com-plete the given infilling method m in a repository, a naivesolution might scan the entire codebase for all accessibleelements, which would introduce excessive noise. Anotherapproach could focus on methods with similar signatures orcontexts; however, these often provide irrelevant elementsthat do not serve m’s functional purpose, leading to redun-dancy and missing critical elements.
problematic methods
-
-
www.semanticscholar.org www.semanticscholar.org
-
pruning the specific implementations of func-tions in all dependent files does not signifi-cantly reduce the accuracy of completions
这不是很显然的吗?
-
-
www.semanticscholar.org www.semanticscholar.org
-
Greedy Selection. Retrieval is performed if<cc> is the most likely token following <eof>.• Threshold Selection. If the probability of <cc>
greedy: 只要<cc>的概率最大即可,不管这个概率是多少。
threshold: <cc> 的概率要达到一定的门槛
-