alexjercan commited on
Commit
b4f77b5
1 Parent(s): 1f82590

feat: updated

Browse files
C++_test.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8e3003952922c1d21b94bf6faf625cb00e324b687a1b97db189676cd4115d529
3
- size 1778662
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:054bb70b362b573431858fd14f8e2717600ad38925f9eaeeb191e1277de6e6b0
3
+ size 33316770
C++_train.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:252476b15229c5187509f0a8c9a034a2d618cf3855d3f8224d79ae1e46fe94f0
3
- size 151964363
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29b3d1d453a835ac701c2c30fd5e530f829424fca9a2579e45a2010aead9504b
3
+ size 329351127
C++_validation.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:190dc8256db0b72ab3e9ada670b5f058625768674a8922b3cce59a5d1fca5eae
3
- size 60638240
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44f9219a83a91d6d6ec3ac37f02e060c0daed3bad2e39038f0110ffbc170acfd
3
+ size 804505
Python_test.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:51dc2e8b939c837bf17900bed17a26190d095cd1efb5f307e2bc9496117ff588
3
- size 91341
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c23aa54c1471adfd33a497c6e336d7033aecd63c2c766ee0ca449c4a84938641
3
+ size 87894
Python_train.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7bdc277842d0da3fcad382c1de753dc2626480e097d312b6597b2cc610ea4e80
3
- size 6214916
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:814369b6124bec64efe4ea8cb7990b5cde2671c495924303847591d56fe9187e
3
+ size 2726083
Python_validation.jsonl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e72dce5c3a024a438e98cfbe60517941f1b21a578db50870788c571387ed9496
3
- size 1028800
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c2206548626baa017282ec8b4b99ba705a61cc866a6730a7a8a966544a22794
3
+ size 1047738
bugnet.py CHANGED
@@ -35,7 +35,7 @@ def _mk_urls(language):
35
  class Bugnet(datasets.GeneratorBasedBuilder):
36
  """TODO: Short description of my dataset."""
37
 
38
- VERSION = datasets.Version("2.1.0")
39
 
40
  BUILDER_CONFIGS = [
41
  datasets.BuilderConfig(name="Python", version=VERSION, description="This part of bugnet contains Python bugs"),
@@ -59,6 +59,7 @@ class Bugnet(datasets.GeneratorBasedBuilder):
59
  "j2": datasets.Value("uint32"),
60
  "error": datasets.Value("string"),
61
  "stderr": datasets.Value("string"),
 
62
  "description": datasets.Value("string"),
63
  "input": datasets.Value("string"),
64
  "output": datasets.Value("string"),
@@ -140,6 +141,7 @@ class Bugnet(datasets.GeneratorBasedBuilder):
140
  "j2": data["j2"],
141
  "error": data["error"],
142
  "stderr": data["stderr"],
 
143
  "description": descriptions[data["problem_id"]],
144
  "input": inputs[data["problem_id"]],
145
  "output": outputs[data["problem_id"]],
 
35
  class Bugnet(datasets.GeneratorBasedBuilder):
36
  """TODO: Short description of my dataset."""
37
 
38
+ VERSION = datasets.Version("3.0.0")
39
 
40
  BUILDER_CONFIGS = [
41
  datasets.BuilderConfig(name="Python", version=VERSION, description="This part of bugnet contains Python bugs"),
 
59
  "j2": datasets.Value("uint32"),
60
  "error": datasets.Value("string"),
61
  "stderr": datasets.Value("string"),
62
+ "stdout": datasets.Value("string"),
63
  "description": datasets.Value("string"),
64
  "input": datasets.Value("string"),
65
  "output": datasets.Value("string"),
 
141
  "j2": data["j2"],
142
  "error": data["error"],
143
  "stderr": data["stderr"],
144
+ "stdout": data["stdout"],
145
  "description": descriptions[data["problem_id"]],
146
  "input": inputs[data["problem_id"]],
147
  "output": outputs[data["problem_id"]],