mts666 commited on
Commit
17a3335
·
verified ·
1 Parent(s): 354ce8e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -1
README.md CHANGED
@@ -6,4 +6,31 @@ tags:
6
  - code
7
  size_categories:
8
  - n<1K
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - code
7
  size_categories:
8
  - n<1K
9
+ ---
10
+ ### Dataset Summary
11
+ NoCode-bench *Verified* is _subset_ of [NoCode-bench](https://huggingface.co/datasets/NoCode-bench/NoCode-bench_Full), 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
+ ### Data Instances
20
+ An example of a SWE-bench datum is as follows:
21
+
22
+ ```
23
+ repo: (str) - The repository owner/name identifier from GitHub.
24
+ instance_id: (str) - A formatted instance identifier, usually as repo_owner__repo_name-PR-number.
25
+ html_url: (str) - The URL of the PR web page where the instances are collected.
26
+ feature_patch: (str) - The gold patch, the patch generated by the PR (minus test-related code), that resolved the issue.
27
+ test_patch: (str) - A test-file patch that was contributed by the solution PR.
28
+ doc_changes: (list) - The documentation changes in a certain PR.
29
+ version: (str) - Installation version to use for running evaluation.
30
+ base_commit: (str) - The commit hash of the repository representing the HEAD of the repository before the solution PR is applied.
31
+ PASS2PASS: (str) - A json list of strings that represent tests that should pass before and after the PR application.
32
+ FAIL2PASS: (str) - A json list of strings that represent the set of tests resolved by the PR and tied to the issue resolution.
33
+ augmentations: (dict) - A set of names of the entity used to implement the feature.
34
+ mask_doc_diff: (list) - The documentation changes in a certain PR, which masked the PR number.
35
+ problem_statement: (str) - The main input contained `mask_doc_diff` and `augmentations`.
36
+ ```