Commit
·
1a6113a
1
Parent(s):
024ea29
feat(script): updated script to download correct python data
Browse files
README.md
CHANGED
@@ -28,16 +28,16 @@ dataset_info:
|
|
28 |
dtype: string
|
29 |
splits:
|
30 |
- name: train
|
31 |
-
num_bytes:
|
32 |
-
num_examples:
|
33 |
- name: validation
|
34 |
-
num_bytes:
|
35 |
-
num_examples:
|
36 |
- name: test
|
37 |
-
num_bytes:
|
38 |
num_examples: 100
|
39 |
-
download_size:
|
40 |
-
dataset_size:
|
41 |
- config_name: C++
|
42 |
features:
|
43 |
- name: problem_id
|
|
|
28 |
dtype: string
|
29 |
splits:
|
30 |
- name: train
|
31 |
+
num_bytes: 16886014
|
32 |
+
num_examples: 4886
|
33 |
- name: validation
|
34 |
+
num_bytes: 3455768
|
35 |
+
num_examples: 1105
|
36 |
- name: test
|
37 |
+
num_bytes: 197086
|
38 |
num_examples: 100
|
39 |
+
download_size: 22345446
|
40 |
+
dataset_size: 20538868
|
41 |
- config_name: C++
|
42 |
features:
|
43 |
- name: problem_id
|
bugnet.py
CHANGED
@@ -34,7 +34,7 @@ def _mk_urls(language):
|
|
34 |
class Bugnet(datasets.GeneratorBasedBuilder):
|
35 |
"""TODO: Short description of my dataset."""
|
36 |
|
37 |
-
VERSION = datasets.Version("1.
|
38 |
|
39 |
BUILDER_CONFIGS = [
|
40 |
datasets.BuilderConfig(name="Python", version=VERSION, description="This part of bugnet contains Python bugs"),
|
|
|
34 |
class Bugnet(datasets.GeneratorBasedBuilder):
|
35 |
"""TODO: Short description of my dataset."""
|
36 |
|
37 |
+
VERSION = datasets.Version("1.4.0")
|
38 |
|
39 |
BUILDER_CONFIGS = [
|
40 |
datasets.BuilderConfig(name="Python", version=VERSION, description="This part of bugnet contains Python bugs"),
|