Update README.md
Browse files
README.md
CHANGED
@@ -57,3 +57,34 @@ configs:
|
|
57 |
- split: test
|
58 |
path: data/test-*
|
59 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
- split: test
|
58 |
path: data/test-*
|
59 |
---
|
60 |
+
```
|
61 |
+
|
62 |
+
"instance_id": Instance ID in REPOCOD
|
63 |
+
"version": Version of REPOCOD
|
64 |
+
"gold_patches": {
|
65 |
+
"code": Patch file to restore the target code,
|
66 |
+
"test": Patch file to restore the relevant tests for the target code
|
67 |
+
}
|
68 |
+
"test_patch": None,
|
69 |
+
"pre_patches": {
|
70 |
+
"code": Patch file to remove the target code,
|
71 |
+
"test": Patch file to remove the relevant tests for the target code
|
72 |
+
}
|
73 |
+
"pre_scripts": None,
|
74 |
+
"repo": {GitHub User Name}/{Project Name}
|
75 |
+
"base_commit": base commit
|
76 |
+
"base_commit_timestamp": time of the base commit
|
77 |
+
"hints_text": None,
|
78 |
+
"created_at": None,
|
79 |
+
"problem_statement": {
|
80 |
+
"code": Problem statement for code generation.
|
81 |
+
"test": Problem statement for test generation.
|
82 |
+
}
|
83 |
+
# "problem_statement_source": "repocod",
|
84 |
+
"environment_setup_commit": base commit
|
85 |
+
"evaluation": {
|
86 |
+
"FAIL_TO_PASS": list of relevant test cases
|
87 |
+
"PASS_TO_PASS": None, (all remaining tests that passes, we choose not to run the PASS_TO_PASS tests to avoid the computational cost)
|
88 |
+
}
|
89 |
+
|
90 |
+
```
|