Upload 3 files
Browse files- test.jsonl +1 -0
- train.jsonl +1 -0
- validation.jsonl +1 -0
test.jsonl
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"id": "ex001", "source": "mbpp", "description": "Fix the off-by-one error in range", "code_buggy": "for i in range(1, len(arr)):", "code_fixed": "for i in range(len(arr)):", "bug_type": "logic", "tags": "off-by-one,adversarial", "metadata": "{\"executed\": false}"}
|
train.jsonl
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"id": "ex001", "source": "mbpp", "description": "Fix the off-by-one error in range", "code_buggy": "for i in range(1, len(arr)):", "code_fixed": "for i in range(len(arr)):", "bug_type": "logic", "tags": "off-by-one,adversarial", "metadata": "{\"executed\": false}"}
|
validation.jsonl
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"id": "ex001", "source": "mbpp", "description": "Fix the off-by-one error in range", "code_buggy": "for i in range(1, len(arr)):", "code_fixed": "for i in range(len(arr)):", "bug_type": "logic", "tags": "off-by-one,adversarial", "metadata": "{\"executed\": false}"}
|