becklabash
commited on
Commit
•
98a1132
1
Parent(s):
5d9dfdd
Update README.md
Browse files
README.md
CHANGED
@@ -7,7 +7,7 @@ dataset_info:
|
|
7 |
dtype: string
|
8 |
- name: instruction
|
9 |
dtype: string
|
10 |
-
- name:
|
11 |
dtype: string
|
12 |
- name: test_script
|
13 |
dtype: string
|
@@ -36,18 +36,18 @@ configs:
|
|
36 |
|
37 |
### Dataset Summary
|
38 |
|
39 |
-
|
40 |
|
41 |
-
The dataset was released as part of [
|
42 |
|
43 |
### Dataset Structure
|
44 |
-
An example of a
|
45 |
|
46 |
```
|
47 |
id (str) - A unique identifier for the task instance.
|
48 |
repo_url (str) - The URL of the repository involved in the task.
|
49 |
instruction (str) - The repository edit instruction.
|
50 |
-
|
51 |
test_script (str) - The task's test suite as a python script to be run from the root of the repository.
|
52 |
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.
|
|
|
7 |
dtype: string
|
8 |
- name: instruction
|
9 |
dtype: string
|
10 |
+
- name: base_commit
|
11 |
dtype: string
|
12 |
- name: test_script
|
13 |
dtype: string
|
|
|
36 |
|
37 |
### Dataset Summary
|
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 Capability of Language Models in Large-Scale Software Development](https://arxiv.org/abs/[ARXIV_LINK])
|
42 |
|
43 |
### Dataset Structure
|
44 |
+
An example of a RES-Q task instance is as follows:
|
45 |
|
46 |
```
|
47 |
id (str) - A unique identifier for the task instance.
|
48 |
repo_url (str) - The URL of the repository involved in the task.
|
49 |
instruction (str) - The repository edit instruction.
|
50 |
+
base_commit (str) - The commit hash of the repository representing the HEAD of the repository immediately before the instruction was carried out.
|
51 |
test_script (str) - The task's test suite as a python script to be run from the root of the repository.
|
52 |
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.
|