Update README.md
Browse files
README.md
CHANGED
|
@@ -4,4 +4,32 @@ task_categories:
|
|
| 4 |
- text-generation
|
| 5 |
tags:
|
| 6 |
- code
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- text-generation
|
| 5 |
tags:
|
| 6 |
- code
|
| 7 |
+
size_categories:
|
| 8 |
+
- n<1K
|
| 9 |
+
---
|
| 10 |
+
### Dataset Summary
|
| 11 |
+
NoCode-bench is a dataset that tests systems’ no-code feature addition ability automatically.
|
| 12 |
+
|
| 13 |
+
### Languages
|
| 14 |
+
|
| 15 |
+
The text of the dataset is primarily English, but we make no effort to filter or otherwise clean based on language type.
|
| 16 |
+
|
| 17 |
+
### Dataset Structure
|
| 18 |
+
|
| 19 |
+
An example of a SWE-bench datum is as follows:
|
| 20 |
+
|
| 21 |
+
```
|
| 22 |
+
repo: (str) - The repository owner/name identifier from GitHub.
|
| 23 |
+
instance_id: (str) - A formatted instance identifier, usually as repo_owner__repo_name-PR-number.
|
| 24 |
+
html_url: (str) - The URL of the PR web page where the instances are collected.
|
| 25 |
+
feature_patch: (str) - The gold patch, the patch generated by the PR (minus test-related code), that resolved the issue.
|
| 26 |
+
test_patch: (str) - A test-file patch that was contributed by the solution PR.
|
| 27 |
+
doc_changes: (list) - The documentation changes in a certain PR.
|
| 28 |
+
version: (str) - Installation version to use for running evaluation.
|
| 29 |
+
base_commit: (str) - The commit hash of the repository representing the HEAD of the repository before the solution PR is applied.
|
| 30 |
+
PASS2PASS: (str) - A json list of strings that represent tests that should pass before and after the PR application.
|
| 31 |
+
FAIL2PASS: (str) - A json list of strings that represent the set of tests resolved by the PR and tied to the issue resolution.
|
| 32 |
+
augmentations: (dict) - A set of names of the entity used to implement the feature.
|
| 33 |
+
mask_doc_diff: (list) - The documentation changes in a certain PR, which masked the PR number.
|
| 34 |
+
problem_statement: (str) - The main input contained `mask_doc_diff` and `augmentations`.
|
| 35 |
+
```
|