Datasets:

Modalities:
Text
Formats:
json
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
becklabash commited on
Commit
e92fe48
·
verified ·
1 Parent(s): 4917230

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -3
README.md CHANGED
@@ -20,7 +20,11 @@ dataset_info:
20
  - name: solution_patch
21
  dtype: string
22
  - name: modified_files
23
- dtype: string
 
 
 
 
24
  - name: language
25
  dtype: string
26
  splits:
@@ -38,7 +42,7 @@ configs:
38
 
39
  RES-Q is a codebase editing benchmark based on compact, natural language instructions. The task is to, given an edit instruction and a codebase, produce a patch file that makes the correct edit to the codebase.
40
 
41
- The dataset was released as part of [RES-Q: Evaluating the Code-Editing Capability of Large Language Models at the Repository Scale](https://arxiv.org/abs/[ARXIV_LINK])
42
 
43
  ### Dataset Structure
44
  An example of a RES-Q task instance is as follows:
@@ -53,6 +57,6 @@ testbed_environment (str) - The python version used to run the test suite.
53
  requirements_txt (str) - The pip package dependencies required to run the test suite.
54
  solution_commit (str) - The commit hash of the repository representing the HEAD of the repository immediately after the instruction was carried out.
55
  solution_patch (str) - The patch in the unified diff format representing the difference between the base and solution commit.
56
- modified_files (str) - A dictionary of files and their content that were modified by the solution commit.
57
  language (str) - The primary programming language of the repository.
58
  ```
 
20
  - name: solution_patch
21
  dtype: string
22
  - name: modified_files
23
+ sequence:
24
+ - name: path
25
+ dtype: string
26
+ - name: content
27
+ dtype: string
28
  - name: language
29
  dtype: string
30
  splits:
 
42
 
43
  RES-Q is a codebase editing benchmark based on compact, natural language instructions. The task is to, given an edit instruction and a codebase, produce a patch file that makes the correct edit to the codebase.
44
 
45
+ The dataset was released as part of [RES-Q: Evaluating the Capability of Language Models in Large-Scale Software Development](https://arxiv.org/abs/[ARXIV_LINK])
46
 
47
  ### Dataset Structure
48
  An example of a RES-Q task instance is as follows:
 
57
  requirements_txt (str) - The pip package dependencies required to run the test suite.
58
  solution_commit (str) - The commit hash of the repository representing the HEAD of the repository immediately after the instruction was carried out.
59
  solution_patch (str) - The patch in the unified diff format representing the difference between the base and solution commit.
60
+ modified_files (list): A list of dictionaries containing the relative paths and content of files modified by the solution commit.
61
  language (str) - The primary programming language of the repository.
62
  ```