litble commited on
Commit
65b8010
·
verified ·
1 Parent(s): 9d8ecda

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -40
README.md CHANGED
@@ -1,40 +1,70 @@
1
- ---
2
- license: apache-2.0
3
- dataset_info:
4
- features:
5
- - name: repo
6
- dtype: string
7
- - name: pull_number
8
- dtype: int64
9
- - name: instance_id
10
- dtype: string
11
- - name: issue_numbers
12
- sequence: string
13
- - name: base_commit
14
- dtype: string
15
- - name: patch
16
- dtype: string
17
- - name: test_patch
18
- dtype: string
19
- - name: problem_statement
20
- dtype: string
21
- - name: hints_text
22
- dtype: string
23
- - name: created_at
24
- dtype: timestamp[s]
25
- - name: language
26
- dtype: string
27
- - name: label
28
- dtype: string
29
- splits:
30
- - name: test
31
- num_bytes: 81623836
32
- num_examples: 334
33
- download_size: 24032638
34
- dataset_size: 81623836
35
- configs:
36
- - config_name: default
37
- data_files:
38
- - split: test
39
- path: data/test-*
40
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ dataset_info:
4
+ features:
5
+ - name: repo
6
+ dtype: string
7
+ - name: pull_number
8
+ dtype: int64
9
+ - name: instance_id
10
+ dtype: string
11
+ - name: issue_numbers
12
+ sequence: string
13
+ - name: base_commit
14
+ dtype: string
15
+ - name: patch
16
+ dtype: string
17
+ - name: test_patch
18
+ dtype: string
19
+ - name: problem_statement
20
+ dtype: string
21
+ - name: hints_text
22
+ dtype: string
23
+ - name: created_at
24
+ dtype: timestamp[s]
25
+ - name: language
26
+ dtype: string
27
+ - name: label
28
+ dtype: string
29
+ splits:
30
+ - name: test
31
+ num_bytes: 81623836
32
+ num_examples: 334
33
+ download_size: 24032638
34
+ dataset_size: 81623836
35
+ configs:
36
+ - config_name: default
37
+ data_files:
38
+ - split: test
39
+ path: data/test-*
40
+ ---
41
+
42
+ # Dataset Summary
43
+
44
+ Multi-Docker-Eval is a multi-language, multi-dimensional benchmark designed to rigorously evaluate the capability of Large Language Model (LLM)-based agents in automating a critical yet underexplored task: constructing executable Docker environments for real-world software repositories.
45
+
46
+ # How to Use
47
+
48
+ ```python
49
+ from datasets import load_dataset
50
+ ds = load_dataset('litble/Multi-Docker-Eval')
51
+ ```
52
+
53
+ # Dataset Structure
54
+
55
+ The data format of Multi-Docker-Eval is directly compatible with the [swe-factory](https://github.com/DeepSoftwareAnalytics/swe-factory) and [RepoLaunch](https://github.com/microsoft/SWE-bench-Live) frameworks.
56
+
57
+ | **Field name** | **Type** | **Description** |
58
+ | --- | --- | --- |
59
+ | `instance_id` | str | A formatted instance identifier, usually as `repo_owner__repo_name-PR-number`. |
60
+ | `repo` | str | The repository owner/name identifier from GitHub. |
61
+ | `pull_number` | int64 | The GitHub pull request number that contains the solution (patch and test_patch). |
62
+ | `issue_numbers` | list(str) | A list of the GitHub issue numbers that are addressed and resolved by this pull request. |
63
+ | `base_commit` | str | The commit hash of the repository representing the HEAD of the repository before the solution PR is applied. |
64
+ | `patch` | str | The gold patch, the patch generated by the PR (minus test-related code), that resolved the issue. |
65
+ | `test_patch` | str | A test-file patch that was contributed by the solution PR. |
66
+ | `problem_statement` | str | The issue title and body. |
67
+ | `hints_text` | str | Comments made on the issue prior to the creation of the solution PR’s first commit creation date. |
68
+ | `created_at` | timestamp[s] | The creation date of the pull request. |
69
+ | `language` | str | The programming language of the repository. |
70
+ | `label` | str | Classification of environmental configuration difficulty (Easy/Hard). |