Update discevalmt.py
Browse files- discevalmt.py +2 -0
discevalmt.py
CHANGED
@@ -42,6 +42,8 @@ class DiscEvalMTConfig(datasets.BuilderConfig):
|
|
42 |
**kwargs: keyword arguments forwarded to super.
|
43 |
"""
|
44 |
self.evaltype = evaltype
|
|
|
|
|
45 |
super().__init__(**kwargs)
|
46 |
|
47 |
|
|
|
42 |
**kwargs: keyword arguments forwarded to super.
|
43 |
"""
|
44 |
self.evaltype = evaltype
|
45 |
+
if language not in ['anaphora', 'lexical_choice']():
|
46 |
+
raise ValueError("Invalid evaltype: %s. You must choose between 'anaphora' and 'lexical_choice' " % evaltype)
|
47 |
super().__init__(**kwargs)
|
48 |
|
49 |
|