File size: 1,755 Bytes
c018a25
 
 
 
 
 
 
 
17a3335
 
 
 
 
 
 
 
244d50a
17a3335
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
license: apache-2.0
task_categories:
- text-generation
tags:
- code
size_categories:
- n<1K
---
### Dataset Summary
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. 

### Languages

The text of the dataset is primarily English, but we make no effort to filter or otherwise clean based on language type.

### Dataset Structure

An example of a SWE-bench datum is as follows:

```
repo: (str) - The repository owner/name identifier from GitHub.
instance_id: (str) - A formatted instance identifier, usually as repo_owner__repo_name-PR-number.
html_url: (str) - The URL of the PR web page where the instances are collected. 
feature_patch: (str) - The gold patch, the patch generated by the PR (minus test-related code), that resolved the issue.
test_patch: (str) - A test-file patch that was contributed by the solution PR.
doc_changes: (list) - The documentation changes in a certain PR.
version: (str) - Installation version to use for running evaluation.
base_commit: (str) - The commit hash of the repository representing the HEAD of the repository before the solution PR is applied.
PASS2PASS: (str) - A json list of strings that represent tests that should pass before and after the PR application.
FAIL2PASS: (str) - A json list of strings that represent the set of tests resolved by the PR and tied to the issue resolution.
augmentations: (dict) - A set of names of the entity used to implement the feature.
mask_doc_diff: (list) - The documentation changes in a certain PR, which masked the PR number.
problem_statement: (str) - The main input contained `mask_doc_diff` and `augmentations`.
```