Update discevalmt.py
Browse files- discevalmt.py +2 -2
discevalmt.py
CHANGED
|
@@ -42,9 +42,9 @@ class DiscEvalMTConfig(datasets.BuilderConfig):
|
|
| 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 |
|
| 50 |
|
|
|
|
| 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(DiscEvalMTConfig, self).__init__(**kwargs)
|
| 48 |
|
| 49 |
|
| 50 |
|