WillHeld commited on
Commit
aec7ddd
·
verified ·
1 Parent(s): ecd370f

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +44 -7
README.md CHANGED
@@ -6,7 +6,9 @@ size_categories:
6
  - n>1T
7
  task_categories:
8
  - text-generation
9
- pretty_name: SWE-rebench ConTree Traces
 
 
10
  tags:
11
  - code
12
  - execution-traces
@@ -14,12 +16,17 @@ tags:
14
  - marin
15
  ---
16
 
17
- # SWE-rebench ConTree Traces
18
 
19
- Line-by-line Python execution traces for the test suites of
20
- [`nebius/SWE-rebench-V2`](https://huggingface.co/datasets/nebius/SWE-rebench-V2),
21
- captured by running each instance's tests under a tracer inside Nebius ConTree
22
- sandboxes.
 
 
 
 
 
23
 
24
  For each instance the pipeline traces the PR-affected tests before and after
25
  the fix patch, plus the repository's full test suite (broad phase). Each row is
@@ -33,6 +40,7 @@ one ``(instance_id, test_id)`` trace.
33
  | `test_id` | string | pytest node id |
34
  | `affected` | bool | True = test touched by the PR patch; False = broad-phase test |
35
  | `text` | string | plain-text annotated source + execution trace |
 
36
 
37
  `affected=True` rows render as ``<test source>`` / ``# --- pre-patch trace ---``
38
  / ``# --- patch ---`` / ``# --- post-patch trace ---``; `affected=False` rows
@@ -43,6 +51,35 @@ excluded.
43
 
44
  ## Provenance
45
 
46
- - **Source**: [`nebius/SWE-rebench-V2`](https://huggingface.co/datasets/nebius/SWE-rebench-V2)
47
  - **Generator**: `experiments/swe_rebench_trace/contree_pipeline.py` in
48
  [marin-community/marin](https://github.com/marin-community/marin).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - n>1T
7
  task_categories:
8
  - text-generation
9
+ source_datasets:
10
+ - nebius/SWE-rebench-V2
11
+ pretty_name: SWE-rebench V2 CodeWorldModeling Traces
12
  tags:
13
  - code
14
  - execution-traces
 
16
  - marin
17
  ---
18
 
19
+ # SWE-rebench V2 — CodeWorldModeling Traces
20
 
21
+ > **This is a derived dataset.** Every record is produced from an instance of
22
+ > [`nebius/SWE-rebench-V2`](https://huggingface.co/datasets/nebius/SWE-rebench-V2).
23
+ > It is **governed by the SWE-rebench V2 license** see [License](#license)
24
+ > below — including the requirement to respect each source repository's own
25
+ > license.
26
+
27
+ Line-by-line Python execution traces for the test suites of SWE-rebench V2
28
+ instances, captured by running each instance's tests under a tracer inside
29
+ Nebius ConTree sandboxes.
30
 
31
  For each instance the pipeline traces the PR-affected tests before and after
32
  the fix patch, plus the repository's full test suite (broad phase). Each row is
 
40
  | `test_id` | string | pytest node id |
41
  | `affected` | bool | True = test touched by the PR patch; False = broad-phase test |
42
  | `text` | string | plain-text annotated source + execution trace |
43
+ | `license` | string | license of the source repository, joined from SWE-rebench V2 by `instance_id` |
44
 
45
  `affected=True` rows render as ``<test source>`` / ``# --- pre-patch trace ---``
46
  / ``# --- patch ---`` / ``# --- post-patch trace ---``; `affected=False` rows
 
51
 
52
  ## Provenance
53
 
54
+ - **Source dataset**: [`nebius/SWE-rebench-V2`](https://huggingface.co/datasets/nebius/SWE-rebench-V2)
55
  - **Generator**: `experiments/swe_rebench_trace/contree_pipeline.py` in
56
  [marin-community/marin](https://github.com/marin-community/marin).
57
+
58
+ ## License
59
+
60
+ This dataset is derived from SWE-rebench V2 and inherits its license terms:
61
+
62
+ > The dataset is licensed under the Creative Commons Attribution 4.0 license.
63
+ > However, please respect the license of each specific repository on which a
64
+ > particular instance is based. To facilitate this, the license of each
65
+ > repository at the time of the commit is provided for every instance.
66
+
67
+ The per-instance source-repository license is included here directly as the
68
+ `license` column. When using or redistributing these traces, honor the license
69
+ of the originating repository for each instance.
70
+
71
+ ## Citation
72
+
73
+ Please cite the source dataset:
74
+
75
+ ```bibtex
76
+ @misc{badertdinov2026swerebenchv2languageagnosticswe,
77
+ title={SWE-rebench V2: Language-Agnostic SWE Task Collection at Scale},
78
+ author={Ibragim Badertdinov and Maksim Nekrashevich and Anton Shevtsov and Alexander Golubev},
79
+ year={2026},
80
+ eprint={2602.23866},
81
+ archivePrefix={arXiv},
82
+ primaryClass={cs.SE},
83
+ url={https://arxiv.org/abs/2602.23866},
84
+ }
85
+ ```