WillHeld commited on
Commit
21b4bb7
·
verified ·
1 Parent(s): 2895e53

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ 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
13
+ - swe-rebench
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
26
+ one ``(instance_id, test_id)`` trace.
27
+
28
+ ## Schema
29
+
30
+ | column | type | notes |
31
+ | --- | --- | --- |
32
+ | `instance_id` | string | SWE-rebench-V2 row id |
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
39
+ render as ``<test source>`` / ``# --- trace ---``.
40
+
41
+ Sentinel rows from instances that failed before any trace was captured are
42
+ 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).