alexjercan
commited on
Commit
•
b4f77b5
1
Parent(s):
1f82590
feat: updated
Browse files- C++_test.jsonl +2 -2
- C++_train.jsonl +2 -2
- C++_validation.jsonl +2 -2
- Python_test.jsonl +2 -2
- Python_train.jsonl +2 -2
- Python_validation.jsonl +2 -2
- bugnet.py +3 -1
C++_test.jsonl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
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:
|
3 |
-
size
|
|
|
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:
|
3 |
-
size
|
|
|
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:
|
3 |
-
size
|
|
|
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:
|
3 |
-
size
|
|
|
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:
|
3 |
-
size
|
|
|
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("
|
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"]],
|