Upload folder using huggingface_hub
Browse files- codemmlu.py +4 -2
codemmlu.py
CHANGED
@@ -76,8 +76,10 @@ class CodeMMLU(datasets.GeneratorBasedBuilder):
|
|
76 |
"""CodeMMLU: A Multi-Task Benchmark for Assessing Code Understanding Capabilities"""
|
77 |
BUILDER_CONFIG_CLASS = CodeMMLUConfig
|
78 |
BUILDER_CONFIGS = CONFIGS
|
79 |
-
|
80 |
-
|
|
|
|
|
81 |
|
82 |
def _info(self):
|
83 |
features = datasets.Features(
|
|
|
76 |
"""CodeMMLU: A Multi-Task Benchmark for Assessing Code Understanding Capabilities"""
|
77 |
BUILDER_CONFIG_CLASS = CodeMMLUConfig
|
78 |
BUILDER_CONFIGS = CONFIGS
|
79 |
+
|
80 |
+
def __init__(self, **config_kwargs):
|
81 |
+
super().__init__(**config_kwargs)
|
82 |
+
print(self.BUILDER_CONFIGS)
|
83 |
|
84 |
def _info(self):
|
85 |
features = datasets.Features(
|