Update README.md
Browse files
README.md
CHANGED
@@ -28,8 +28,7 @@ This is the benchmark for **CI Fixing** task as part of
|
|
28 |
```
|
29 |
from datasets import load_dataset
|
30 |
|
31 |
-
|
32 |
-
dataset = load_dataset("JetBrains-Research/lca-ci-fixing", configuration, split="test")
|
33 |
```
|
34 |
|
35 |
Note that all the data we have is considered to be in the test split.
|
@@ -49,8 +48,6 @@ Note that, unlike many other 🏟 Long Code Arena datasets, this dataset doesn't
|
|
49 |
|
50 |
### Datapoint Schema
|
51 |
|
52 |
-
**TODO** Add http links to failed commit
|
53 |
-
**TODO** Add file list of changed files
|
54 |
|
55 |
Each example has the following fields:
|
56 |
|
@@ -70,7 +67,9 @@ Each example has the following fields:
|
|
70 |
| `workflow` | Contents of the workflow file |
|
71 |
| `workflow_filename` | The name of the workflow file (without directories) |
|
72 |
| `workflow_name` | The name of the workflow |
|
73 |
-
| `workflow_path` | The full path to the workflow file
|
|
|
|
|
74 |
|
75 |
### Datapoint Example
|
76 |
|
|
|
28 |
```
|
29 |
from datasets import load_dataset
|
30 |
|
31 |
+
dataset = load_dataset("JetBrains-Research/lca-ci-fixing", split="test")
|
|
|
32 |
```
|
33 |
|
34 |
Note that all the data we have is considered to be in the test split.
|
|
|
48 |
|
49 |
### Datapoint Schema
|
50 |
|
|
|
|
|
51 |
|
52 |
Each example has the following fields:
|
53 |
|
|
|
67 |
| `workflow` | Contents of the workflow file |
|
68 |
| `workflow_filename` | The name of the workflow file (without directories) |
|
69 |
| `workflow_name` | The name of the workflow |
|
70 |
+
| `workflow_path` | The full path to the workflow file
|
71 |
+
| `changed_files` | List of files changed in diff
|
72 |
+
| `commit_link` | URL to commit corresponding to failed job
|
73 |
|
74 |
### Datapoint Example
|
75 |
|