Update discevalmt.py
Browse files- discevalmt.py +3 -3
discevalmt.py
CHANGED
@@ -35,14 +35,14 @@ class DiscEvalMTConfig(datasets.BuilderConfig):
|
|
35 |
'''BuilderConfig for DiscEvalMT.'''
|
36 |
|
37 |
|
38 |
-
def __init__(self, **kwargs):
|
39 |
"""BuilderConfig for DiscEvalMT.
|
40 |
|
41 |
Args:
|
42 |
**kwargs: keyword arguments forwarded to super.
|
43 |
"""
|
44 |
-
self.
|
45 |
-
super(
|
46 |
|
47 |
|
48 |
|
|
|
35 |
'''BuilderConfig for DiscEvalMT.'''
|
36 |
|
37 |
|
38 |
+
def __init__(self, evaltype: str, **kwargs):
|
39 |
"""BuilderConfig for DiscEvalMT.
|
40 |
|
41 |
Args:
|
42 |
**kwargs: keyword arguments forwarded to super.
|
43 |
"""
|
44 |
+
self.evaltype = evaltype
|
45 |
+
super().__init__(**kwargs)
|
46 |
|
47 |
|
48 |
|