File size: 2,606 Bytes
65b8010
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
license: apache-2.0
dataset_info:
  features:
  - name: repo
    dtype: string
  - name: pull_number
    dtype: int64
  - name: instance_id
    dtype: string
  - name: issue_numbers
    sequence: string
  - name: base_commit
    dtype: string
  - name: patch
    dtype: string
  - name: test_patch
    dtype: string
  - name: problem_statement
    dtype: string
  - name: hints_text
    dtype: string
  - name: created_at
    dtype: timestamp[s]
  - name: language
    dtype: string
  - name: label
    dtype: string
  splits:
  - name: test
    num_bytes: 81623836
    num_examples: 334
  download_size: 24032638
  dataset_size: 81623836
configs:
- config_name: default
  data_files:
  - split: test
    path: data/test-*
---

# Dataset Summary

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.

# How to Use

```python
from datasets import load_dataset
ds = load_dataset('litble/Multi-Docker-Eval')
```

# Dataset Structure

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.

| **Field name** | **Type** | **Description** |
| --- | --- | --- |
| `instance_id` | str | A formatted instance identifier, usually as `repo_owner__repo_name-PR-number`. |
| `repo` | str | The repository owner/name identifier from GitHub. |
| `pull_number` | int64 | The GitHub pull request number that contains the solution (patch and test_patch). |
| `issue_numbers` | list(str) | A list of the GitHub issue numbers that are addressed and resolved by this pull request. |
| `base_commit` | str | The commit hash of the repository representing the HEAD of the repository before the solution PR is applied. |
| `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. |
| `problem_statement` | str | The issue title and body. |
| `hints_text` | str | Comments made on the issue prior to the creation of the solution PR’s first commit creation date. |
| `created_at` | timestamp[s] | The creation date of the pull request. |
| `language` | str | The programming language of the repository. |
| `label` | str | Classification of environmental configuration difficulty (Easy/Hard). |