S-Dreamer commited on
Commit
357447a
·
verified ·
1 Parent(s): 6e27ba3

Upload 3 files

Browse files
Files changed (3) hide show
  1. test.jsonl +1 -0
  2. train.jsonl +1 -0
  3. 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}"}