Datasets:
| dataset_info: | |
| features: | |
| - name: repo | |
| dtype: string | |
| - name: pr_number | |
| dtype: int32 | |
| - name: task_type | |
| dtype: string | |
| - name: issue_text | |
| dtype: string | |
| - name: pr_title | |
| dtype: string | |
| - name: pr_body | |
| dtype: string | |
| - name: base_sha | |
| dtype: string | |
| - name: head_sha | |
| dtype: string | |
| - name: gold_diff | |
| dtype: string | |
| - name: changed_files | |
| list: string | |
| - name: review_threads | |
| list: | |
| - name: comment | |
| dtype: string | |
| - name: path | |
| dtype: string | |
| - name: hunk | |
| dtype: string | |
| - name: resolving_sha | |
| dtype: string | |
| - name: resolving_diff | |
| dtype: string | |
| - name: test_patch | |
| dtype: string | |
| - name: merged | |
| dtype: bool | |
| splits: | |
| - name: train | |
| num_bytes: 5073942960 | |
| num_examples: 87912 | |
| download_size: 1412740926 | |
| dataset_size: 5073942960 | |
| configs: | |
| - config_name: default | |
| data_files: | |
| - split: train | |
| path: data/train-* | |
| tags: | |
| - code | |
| - github | |
| - pull-requests | |
| - swe | |
| - code-editing | |
| - agents | |
| license: other | |
| language: | |
| - code | |
| - en | |
| size_categories: | |
| - 10K<n<100K | |
| task_categories: | |
| - text-generation | |
| pretty_name: GitHub PR Resolution (issue/review -> patch) | |
| ## Description | |
| Issue/PR-review -> resolving patch pairs from merged public GitHub PRs. Includes `issue_text`, `pr_title`/`pr_body`, `gold_diff`, `changed_files`, threaded `review_threads`, and base/head SHAs. | |
| > Derived dataset. Source material retains its original per-item licence (see `source`/`repo` columns); treat as **other / mixed**. Provided as-is. | |
| ## Usage | |
| ```python | |
| from datasets import load_dataset | |
| ds = load_dataset("PotatoHD/github-pr-resolve") | |
| ``` | |